Commit 2c975229 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

tab completion fixes, removed wefresh() from blank_edit

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@284 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent b5b89aeb
Showing with 303 additions and 308 deletions
+303 -308
...@@ -71,6 +71,9 @@ CVS Code - ...@@ -71,6 +71,9 @@ CVS Code -
nanogetstr(). nanogetstr().
- Black magic code to make $ appear in prompt if we're past - Black magic code to make $ appear in prompt if we're past
COLS. COLS.
blank_edit()
- Removed wrefresh() call, much less choppy now. If there's a need
for a wrefresh after a specific call, let me know.
- es.po: - es.po:
- Updated translation to 0.9.19-CVS (Jordi). - Updated translation to 0.9.19-CVS (Jordi).
......
...@@ -537,7 +537,7 @@ char **cwd_tab_completion(char *buf, int *num_matches) ...@@ -537,7 +537,7 @@ char **cwd_tab_completion(char *buf, int *num_matches)
DIR *dir; DIR *dir;
struct dirent *next; struct dirent *next;
matches = nmalloc(1024); matches = nmalloc(BUFSIZ);
/* Stick a wildcard onto the buf, for later use */ /* Stick a wildcard onto the buf, for later use */
strcat(buf, "*"); strcat(buf, "*");
...@@ -546,6 +546,7 @@ char **cwd_tab_completion(char *buf, int *num_matches) ...@@ -546,6 +546,7 @@ char **cwd_tab_completion(char *buf, int *num_matches)
/* if (!strcmp(filename, "")) /* if (!strcmp(filename, ""))
dirName = get_current_dir_name(); */ dirName = get_current_dir_name(); */
/* Okie, if there's a / in the buffer, strip out the directory part */
if (strcmp(buf, "") && strstr(buf, "/")) { if (strcmp(buf, "") && strstr(buf, "/")) {
dirName = malloc(strlen(buf) + 1); dirName = malloc(strlen(buf) + 1);
tmp = buf + strlen(buf); tmp = buf + strlen(buf);
...@@ -556,7 +557,6 @@ char **cwd_tab_completion(char *buf, int *num_matches) ...@@ -556,7 +557,6 @@ char **cwd_tab_completion(char *buf, int *num_matches)
strncpy(dirName, buf, tmp - buf + 1); strncpy(dirName, buf, tmp - buf + 1);
dirName[tmp - buf] = 0; dirName[tmp - buf] = 0;
/* tmp++; */
} else { } else {
if ((dirName = getcwd(NULL, 0)) == NULL) if ((dirName = getcwd(NULL, 0)) == NULL)
...@@ -586,7 +586,7 @@ char **cwd_tab_completion(char *buf, int *num_matches) ...@@ -586,7 +586,7 @@ char **cwd_tab_completion(char *buf, int *num_matches)
continue; continue;
} }
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "\nComparing \'%s\'\n", next->d_name); fprintf(stderr, "Comparing \'%s\'\n", next->d_name);
#endif #endif
/* See if this matches */ /* See if this matches */
if (check_wildcard_match(next->d_name, tmp) == TRUE) { if (check_wildcard_match(next->d_name, tmp) == TRUE) {
...@@ -599,6 +599,10 @@ char **cwd_tab_completion(char *buf, int *num_matches) ...@@ -599,6 +599,10 @@ char **cwd_tab_completion(char *buf, int *num_matches)
strcpy(tmp2, next->d_name); strcpy(tmp2, next->d_name);
matches[*num_matches] = tmp2; matches[*num_matches] = tmp2;
++*num_matches; ++*num_matches;
/* If there's no more room, bail out */
if (*num_matches == BUFSIZ)
break;
} }
} }
...@@ -623,12 +627,6 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace) ...@@ -623,12 +627,6 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
*lastWasTab = 1; *lastWasTab = 1;
/* For now, we will not bother with trying to distinguish
* whether the cursor is in/at a command extression -- we
* will always try all possible matches. If you don't like
* that then feel free to fix it.
*/
/* Make a local copy of the string -- up to the position of the /* Make a local copy of the string -- up to the position of the
cursor */ cursor */
matchBuf = (char *) calloc(strlen(buf) + 2, sizeof(char)); matchBuf = (char *) calloc(strlen(buf) + 2, sizeof(char));
...@@ -671,6 +669,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace) ...@@ -671,6 +669,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
switch (num_matches) { switch (num_matches) {
case 0: case 0:
blank_edit(); blank_edit();
wrefresh(edit);
break; break;
case 1: case 1:
...@@ -689,9 +688,11 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace) ...@@ -689,9 +688,11 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
if (stat(buf, &fileinfo) == -1) if (stat(buf, &fileinfo) == -1)
break; break;
else if (S_ISDIR(fileinfo.st_mode)) { else if (S_ISDIR(fileinfo.st_mode)) {
/* Tack on a slash */
strncat(buf, "/", 1); strncat(buf, "/", 1);
*newplace += 1; *newplace += 1;
/* now we start over again with # of tabs so far */ /* now we start over with 0 tabs so far */
*lastWasTab = 0; *lastWasTab = 0;
} }
break; break;
...@@ -702,18 +703,18 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace) ...@@ -702,18 +703,18 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
pos <= strlen(matches[0]); pos++) pos <= strlen(matches[0]); pos++)
tmp++; tmp++;
/* write out the matched command */ /* write out the matched name */
strncpy(copyto, matches[0], strlen(matches[0]) + 1); strncpy(copyto, matches[0], strlen(matches[0]) + 1);
*newplace += strlen(matches[0]) - pos; *newplace += strlen(matches[0]) - pos;
if (stat(buf, &fileinfo) == -1); if (stat(buf, &fileinfo) == -1)
break;
else if (S_ISDIR(fileinfo.st_mode)) { else if (S_ISDIR(fileinfo.st_mode)) {
strncat(buf, "/", 1); strncat(buf, "/", 1);
*newplace += 1; *newplace += 1;
/* now we start over again with # of tabs so far */ /* now we start over again with # of tabs so far */
*lastWasTab = 0; *lastWasTab = 0;
} }
break; break;
default: default:
/* Check to see if all matches share a beginning, and if so /* Check to see if all matches share a beginning, and if so
...@@ -765,6 +766,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace) ...@@ -765,6 +766,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
wmove(edit, 0, 0); wmove(edit, 0, 0);
editline = 0; editline = 0;
/* Figure out the length of the longest filename */ /* Figure out the length of the longest filename */
for (i = 0; i < num_matches; i++) for (i = 0; i < num_matches; i++)
if (strlen(matches[i]) > longestname) if (strlen(matches[i]) > longestname)
......
No preview for this file type
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano 0.9.17\n" "Project-Id-Version: nano 0.9.17\n"
"POT-Creation-Date: 2000-11-06 08:19-0500\n" "POT-Creation-Date: 2000-11-14 15:17-0500\n"
"PO-Revision-Date: 2000-09-09 11:55+0200\n" "PO-Revision-Date: 2000-09-09 11:55+0200\n"
"Last-Translator: Florian Knig <floki@bigfoot.com>\n" "Last-Translator: Florian Knig <floki@bigfoot.com>\n"
"Language-Team: German <floki@bigfoot.com>\n" "Language-Team: German <floki@bigfoot.com>\n"
...@@ -56,7 +56,7 @@ msgstr "Lese Datei" ...@@ -56,7 +56,7 @@ msgstr "Lese Datei"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Datei zum Einfgen [von ./] " msgstr "Datei zum Einfgen [von ./] "
#: files.c:276 files.c:300 files.c:488 nano.c:1347 #: files.c:276 files.c:300 files.c:488 nano.c:1355
msgid "Cancelled" msgid "Cancelled"
msgstr "Abgebrochen" msgstr "Abgebrochen"
...@@ -108,7 +108,7 @@ msgstr "Dateiname ist %s" ...@@ -108,7 +108,7 @@ msgstr "Dateiname ist %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Datei exisitiert, BERSCHREIBEN ?" msgstr "Datei exisitiert, BERSCHREIBEN ?"
#: files.c:741 #: files.c:801
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -386,7 +386,7 @@ msgid "Case Sens" ...@@ -386,7 +386,7 @@ msgid "Case Sens"
msgstr "GROSZ/klein" msgstr "GROSZ/klein"
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1008 #: global.c:405 global.c:411 winio.c:1012
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
...@@ -658,105 +658,101 @@ msgstr "current->data jetzt = \"%s\"\n" ...@@ -658,105 +658,101 @@ msgstr "current->data jetzt = \"%s\"\n"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Nachher, data = \"%s\"\n" msgstr "Nachher, data = \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr "Konnte temporre Datei nicht lschen"
#: nano.c:1106
msgid "Edit a replacement" msgid "Edit a replacement"
msgstr "" msgstr ""
#: nano.c:1292 #: nano.c:1304
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Konnte keine temporre Datei erzeugen: %s" msgstr "Konnte keine temporre Datei erzeugen: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Rechtschreibprfung abgeschlossen" msgstr "Rechtschreibprfung abgeschlossen"
#: nano.c:1314 #: nano.c:1322
msgid "Spell checking failed" msgid "Spell checking failed"
msgstr "" msgstr ""
#: nano.c:1334 #: nano.c:1342
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Vernderten Puffer speichern (\"Nein\" verwirft die nderungen) ? " msgstr "Vernderten Puffer speichern (\"Nein\" verwirft die nderungen) ? "
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Kann die Gre des oberen Fensters nicht verndern" msgstr "Kann die Gre des oberen Fensters nicht verndern"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Kann oberes Fenster nicht verschieben" msgstr "Kann oberes Fenster nicht verschieben"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Kann Gre des Bearbeitungsfensters nicht verndern" msgstr "Kann Gre des Bearbeitungsfensters nicht verndern"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Kann Bearbeitungsfenster nicht verschieben" msgstr "Kann Bearbeitungsfenster nicht verschieben"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Kann Gre des unteren Fensters nicht verndern" msgstr "Kann Gre des unteren Fensters nicht verndern"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Kann unteres Fenster nicht verschieben" msgstr "Kann unteres Fenster nicht verschieben"
#: nano.c:1778 #: nano.c:1786
msgid "Justify Complete" msgid "Justify Complete"
msgstr "Ausrichten abgeschlossen" msgstr "Ausrichten abgeschlossen"
#: nano.c:1846 #: nano.c:1854
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "%s aktivieren/deaktivieren" msgstr "%s aktivieren/deaktivieren"
#: nano.c:1858 #: nano.c:1866
msgid "enabled" msgid "enabled"
msgstr "aktiviert" msgstr "aktiviert"
#: nano.c:1859 #: nano.c:1867
msgid "disabled" msgid "disabled"
msgstr "deaktiviert" msgstr "deaktiviert"
#: nano.c:2089 #: nano.c:2097
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Hauptprogramm: Fenster konfigurieren\n" msgstr "Hauptprogramm: Fenster konfigurieren\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Hauptprogramm: unteres Fenster\n" msgstr "Hauptprogramm: unteres Fenster\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Hauptprogramm: Datei ffnen\n" msgstr "Hauptprogramm: Datei ffnen\n"
#: nano.c:2142 #: nano.c:2150
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2164 #: nano.c:2172
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2197 #: nano.c:2205
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2245 #: nano.c:2253
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2271 #: nano.c:2279
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Erhielt Alt-%c! (%d)\n" msgstr "Erhielt Alt-%c! (%d)\n"
...@@ -853,71 +849,74 @@ msgstr "Nur %d Zeilen vorhanden, springe zur letzten Zeile" ...@@ -853,71 +849,74 @@ msgstr "Nur %d Zeilen vorhanden, springe zur letzten Zeile"
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "actual_x_from_start fr xplus=%d gab %d zurck\n" msgstr "actual_x_from_start fr xplus=%d gab %d zurck\n"
#: winio.c:421 #: winio.c:425
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "Eingabe '%c' (%d)\n" msgstr "Eingabe '%c' (%d)\n"
#: winio.c:459 #: winio.c:463
msgid "New Buffer" msgid "New Buffer"
msgstr "Neuer Puffer" msgstr "Neuer Puffer"
#: winio.c:462 #: winio.c:466
msgid " File: ..." msgid " File: ..."
msgstr " Datei: ..." msgstr " Datei: ..."
#: winio.c:470 #: winio.c:474
msgid "Modified" msgid "Modified"
msgstr "Verndert" msgstr "Verndert"
#: winio.c:922 #: winio.c:926
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n" msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n"
#: winio.c:933 #: winio.c:937
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:978 #: winio.c:982
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Erhielt \"%s\"\n" msgstr "Erhielt \"%s\"\n"
#: winio.c:1003 #: winio.c:1007
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: winio.c:1005 #: winio.c:1009
msgid "All" msgid "All"
msgstr "Alle" msgstr "Alle"
#: winio.c:1007 #: winio.c:1011
msgid "No" msgid "No"
msgstr "Nein" msgstr "Nein"
#: winio.c:1144 #: winio.c:1148
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1148 #: winio.c:1152
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)" msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)"
#: winio.c:1276 #: winio.c:1280
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Gebe Datei Puffer nach stderr aus...\n" msgstr "Gebe Datei Puffer nach stderr aus...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n" msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Gebe einen Puffer nach stderr aus...\n" msgstr "Gebe einen Puffer nach stderr aus...\n"
#~ msgid "Error deleting tempfile, ack!"
#~ msgstr "Konnte temporre Datei nicht lschen"
#~ msgid "Could not invoke spell program \"%s\"" #~ msgid "Could not invoke spell program \"%s\""
#~ msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen" #~ msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen"
......
No preview for this file type
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.19+CVS\n" "Project-Id-Version: 0.9.19+CVS\n"
"POT-Creation-Date: 2000-11-06 08:19-0500\n" "POT-Creation-Date: 2000-11-14 15:17-0500\n"
"PO-Revision-Date: 2000-11-01 17:55+0100\n" "PO-Revision-Date: 2000-11-01 17:55+0100\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n" "Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: Spanish <es@li.org>\n"
...@@ -56,7 +56,7 @@ msgstr "Leyendo Fichero" ...@@ -56,7 +56,7 @@ msgstr "Leyendo Fichero"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichero a insertar [desde ./] " msgstr "Fichero a insertar [desde ./] "
#: files.c:276 files.c:300 files.c:488 nano.c:1347 #: files.c:276 files.c:300 files.c:488 nano.c:1355
msgid "Cancelled" msgid "Cancelled"
msgstr "Cancelado" msgstr "Cancelado"
...@@ -108,7 +108,7 @@ msgstr "filename es %s" ...@@ -108,7 +108,7 @@ msgstr "filename es %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "El fichero existe, SOBREESCRIBIR ?" msgstr "El fichero existe, SOBREESCRIBIR ?"
#: files.c:741 #: files.c:801
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -385,7 +385,7 @@ msgid "Case Sens" ...@@ -385,7 +385,7 @@ msgid "Case Sens"
msgstr "May/Min" msgstr "May/Min"
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1008 #: global.c:405 global.c:411 winio.c:1012
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
...@@ -653,106 +653,102 @@ msgstr "current->data ahora = \"%d\"\n" ...@@ -653,106 +653,102 @@ msgstr "current->data ahora = \"%d\"\n"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Despus, data = \"%s\"\n" msgstr "Despus, data = \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr "Error borrando el fichero temporal, ouch!"
#: nano.c:1106
msgid "Edit a replacement" msgid "Edit a replacement"
msgstr "" msgstr ""
#: nano.c:1292 #: nano.c:1304
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "No pude crear un fichero temporal: %s" msgstr "No pude crear un fichero temporal: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Revisin de ortografa finalizada" msgstr "Revisin de ortografa finalizada"
#: nano.c:1314 #: nano.c:1322
msgid "Spell checking failed" msgid "Spell checking failed"
msgstr "" msgstr ""
#: nano.c:1334 #: nano.c:1342
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIR LOS CAMBIOS) ?" msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIR LOS CAMBIOS) ?"
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "No se puede cambiar el tamao de la ventana superior" msgstr "No se puede cambiar el tamao de la ventana superior"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "No se puede mover la ventana superior" msgstr "No se puede mover la ventana superior"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "No se puede cambiar el tamao de la ventana de edicin" msgstr "No se puede cambiar el tamao de la ventana de edicin"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "No se puede mover la ventana de edicin" msgstr "No se puede mover la ventana de edicin"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "No se puede cambiar el tamao de la ventana inferior" msgstr "No se puede cambiar el tamao de la ventana inferior"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "No se puede mover la ventana inferior" msgstr "No se puede mover la ventana inferior"
#: nano.c:1778 #: nano.c:1786
#, fuzzy #, fuzzy
msgid "Justify Complete" msgid "Justify Complete"
msgstr "Justificar Completado" msgstr "Justificar Completado"
#: nano.c:1846 #: nano.c:1854
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "%s habilitar/deshabilitar" msgstr "%s habilitar/deshabilitar"
#: nano.c:1858 #: nano.c:1866
msgid "enabled" msgid "enabled"
msgstr "habilitado" msgstr "habilitado"
#: nano.c:1859 #: nano.c:1867
msgid "disabled" msgid "disabled"
msgstr "deshabilitado" msgstr "deshabilitado"
#: nano.c:2089 #: nano.c:2097
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configurar las ventanas\n" msgstr "Main: configurar las ventanas\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: ventana inferior\n" msgstr "Main: ventana inferior\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: abrir fichero\n" msgstr "Main: abrir fichero\n"
#: nano.c:2142 #: nano.c:2150
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Pill Alt-O-%c! (%d)\n" msgstr "Pill Alt-O-%c! (%d)\n"
#: nano.c:2164 #: nano.c:2172
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Pill Alt-[-1-%c! (%d)\n" msgstr "Pill Alt-[-1-%c! (%d)\n"
#: nano.c:2197 #: nano.c:2205
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Pill Alt-[-2-%c! (%d)\n" msgstr "Pill Alt-[-2-%c! (%d)\n"
#: nano.c:2245 #: nano.c:2253
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Pill Alt-[-%c! (%d)\n" msgstr "Pill Alt-[-%c! (%d)\n"
#: nano.c:2271 #: nano.c:2279
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Pill Alt-%c! (%d)\n" msgstr "Pill Alt-%c! (%d)\n"
...@@ -847,71 +843,74 @@ msgstr "S ...@@ -847,71 +843,74 @@ msgstr "S
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "actual_x_from_start para xplus=%d devolvi %d\n" msgstr "actual_x_from_start para xplus=%d devolvi %d\n"
#: winio.c:421 #: winio.c:425
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "entrada '%c' (%d)\n" msgstr "entrada '%c' (%d)\n"
#: winio.c:459 #: winio.c:463
msgid "New Buffer" msgid "New Buffer"
msgstr "Nuevo Buffer" msgstr "Nuevo Buffer"
#: winio.c:462 #: winio.c:466
msgid " File: ..." msgid " File: ..."
msgstr "Fichero: ..." msgstr "Fichero: ..."
#: winio.c:470 #: winio.c:474
msgid "Modified" msgid "Modified"
msgstr "Modificado" msgstr "Modificado"
#: winio.c:922 #: winio.c:926
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Moviendo a (%d, %d) en buffer de edicin\n" msgstr "Moviendo a (%d, %d) en buffer de edicin\n"
#: winio.c:933 #: winio.c:937
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:978 #: winio.c:982
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Pill \"%s\"\n" msgstr "Pill \"%s\"\n"
#: winio.c:1003 #: winio.c:1007
msgid "Yes" msgid "Yes"
msgstr "S" msgstr "S"
#: winio.c:1005 #: winio.c:1009
msgid "All" msgid "All"
msgstr "Todas" msgstr "Todas"
#: winio.c:1007 #: winio.c:1011
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: winio.c:1144 #: winio.c:1148
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1148 #: winio.c:1152
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "lnea %d de %d (%.0f%%), carcter %d de %d (%.0f%%)" msgstr "lnea %d de %d (%.0f%%), carcter %d de %d (%.0f%%)"
#: winio.c:1276 #: winio.c:1280
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Volcando buffer de fichero a stderr...\n" msgstr "Volcando buffer de fichero a stderr...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Volcando el cutbuffer a stderr...\n" msgstr "Volcando el cutbuffer a stderr...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Volcando un buffer a stderr...\n" msgstr "Volcando un buffer a stderr...\n"
#~ msgid "Error deleting tempfile, ack!"
#~ msgstr "Error borrando el fichero temporal, ouch!"
#~ msgid "Could not invoke spell program \"%s\"" #~ msgid "Could not invoke spell program \"%s\""
#~ msgstr "No se pudo llamar al corrector \"%s\"" #~ msgstr "No se pudo llamar al corrector \"%s\""
......
No preview for this file type
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano 0.9.11\n" "Project-Id-Version: nano 0.9.11\n"
"POT-Creation-Date: 2000-11-06 08:19-0500\n" "POT-Creation-Date: 2000-11-14 15:17-0500\n"
"PO-Revision-Date: 2000-06-21 23:08+03:00\n" "PO-Revision-Date: 2000-06-21 23:08+03:00\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n" "Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\n" "Language-Team: Finnish <fi@li.org>\n"
...@@ -55,7 +55,7 @@ msgstr "Tiedostoa luetaan" ...@@ -55,7 +55,7 @@ msgstr "Tiedostoa luetaan"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Listtv tiedosto [hakemistossa ./]" msgstr "Listtv tiedosto [hakemistossa ./]"
#: files.c:276 files.c:300 files.c:488 nano.c:1347 #: files.c:276 files.c:300 files.c:488 nano.c:1355
msgid "Cancelled" msgid "Cancelled"
msgstr "Peruttu" msgstr "Peruttu"
...@@ -107,7 +107,7 @@ msgstr "tiedoston nimi on %s" ...@@ -107,7 +107,7 @@ msgstr "tiedoston nimi on %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Tiedosto on jo olemassa, korvataanko?" msgstr "Tiedosto on jo olemassa, korvataanko?"
#: files.c:741 #: files.c:801
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -386,7 +386,7 @@ msgid "Case Sens" ...@@ -386,7 +386,7 @@ msgid "Case Sens"
msgstr "Kirj. koko" msgstr "Kirj. koko"
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1008 #: global.c:405 global.c:411 winio.c:1012
msgid "Cancel" msgid "Cancel"
msgstr "Peru" msgstr "Peru"
...@@ -654,106 +654,102 @@ msgstr "current->data nyt = \"%s\"\n" ...@@ -654,106 +654,102 @@ msgstr "current->data nyt = \"%s\"\n"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Jlkeenpin, data = \"%s\"\n" msgstr "Jlkeenpin, data = \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr "Vliaikaistiedostoa poistettaessa tapahtui virhe."
#: nano.c:1106
msgid "Edit a replacement" msgid "Edit a replacement"
msgstr "" msgstr ""
#: nano.c:1292 #: nano.c:1304
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Vliaikaista tiedostonnime ei voitu luoda: %s" msgstr "Vliaikaista tiedostonnime ei voitu luoda: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Oikoluku on valmis" msgstr "Oikoluku on valmis"
#: nano.c:1314 #: nano.c:1322
msgid "Spell checking failed" msgid "Spell checking failed"
msgstr "" msgstr ""
#: nano.c:1334 #: nano.c:1342
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Tallenna muutettu teksti (Muutokset hvivt, jos vastaat \"ei\") ? " msgstr "Tallenna muutettu teksti (Muutokset hvivt, jos vastaat \"ei\") ? "
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Ylikkunan kokoa ei voi muuttaa" msgstr "Ylikkunan kokoa ei voi muuttaa"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Ylikkunaa ei voi siirt" msgstr "Ylikkunaa ei voi siirt"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Muokkausikkunan kokoa ei voi muuttaa" msgstr "Muokkausikkunan kokoa ei voi muuttaa"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Muokkausikkunaa ei voi siirt" msgstr "Muokkausikkunaa ei voi siirt"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Alaikkunan kokoa ei voi muuttaa" msgstr "Alaikkunan kokoa ei voi muuttaa"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Alaikkunaa ei voi siirt" msgstr "Alaikkunaa ei voi siirt"
#: nano.c:1778 #: nano.c:1786
#, fuzzy #, fuzzy
msgid "Justify Complete" msgid "Justify Complete"
msgstr "Tasaa" msgstr "Tasaa"
#: nano.c:1846 #: nano.c:1854
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "" msgstr ""
#: nano.c:1858 #: nano.c:1866
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
#: nano.c:1859 #: nano.c:1867
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:2089 #: nano.c:2097
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Ptila: ikkunoiden asettelu\n" msgstr "Ptila: ikkunoiden asettelu\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Ptila: alaikkuna\n" msgstr "Ptila: alaikkuna\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Ptila: avaa tiedosto\n" msgstr "Ptila: avaa tiedosto\n"
#: nano.c:2142 #: nano.c:2150
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2164 #: nano.c:2172
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2197 #: nano.c:2205
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2245 #: nano.c:2253
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2271 #: nano.c:2279
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Vastaanotettu Alt-%c! (%d)\n" msgstr "Vastaanotettu Alt-%c! (%d)\n"
...@@ -849,71 +845,74 @@ msgstr "Vain %d rivi ...@@ -849,71 +845,74 @@ msgstr "Vain %d rivi
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "actual_x_from_start parametrilla xplus=%d palautti %d\n" msgstr "actual_x_from_start parametrilla xplus=%d palautti %d\n"
#: winio.c:421 #: winio.c:425
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "syte '%c' (%d)\n" msgstr "syte '%c' (%d)\n"
#: winio.c:459 #: winio.c:463
msgid "New Buffer" msgid "New Buffer"
msgstr "Uusi teksti" msgstr "Uusi teksti"
#: winio.c:462 #: winio.c:466
msgid " File: ..." msgid " File: ..."
msgstr " Tiedosto: ..." msgstr " Tiedosto: ..."
#: winio.c:470 #: winio.c:474
msgid "Modified" msgid "Modified"
msgstr "Muokattu" msgstr "Muokattu"
#: winio.c:922 #: winio.c:926
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n" msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n"
#: winio.c:933 #: winio.c:937
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:978 #: winio.c:982
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Saatiin \"%s\"\n" msgstr "Saatiin \"%s\"\n"
#: winio.c:1003 #: winio.c:1007
msgid "Yes" msgid "Yes"
msgstr "Kyll" msgstr "Kyll"
#: winio.c:1005 #: winio.c:1009
msgid "All" msgid "All"
msgstr "Kaikki" msgstr "Kaikki"
#: winio.c:1007 #: winio.c:1011
msgid "No" msgid "No"
msgstr "Ei" msgstr "Ei"
#: winio.c:1144 #: winio.c:1148
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1148 #: winio.c:1152
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)" msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)"
#: winio.c:1276 #: winio.c:1280
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Sytetn tiedosto stderriin...\n" msgstr "Sytetn tiedosto stderriin...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Sytetn leiketila stderriin...\n" msgstr "Sytetn leiketila stderriin...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Sytetn teksti stderriin...\n" msgstr "Sytetn teksti stderriin...\n"
#~ msgid "Error deleting tempfile, ack!"
#~ msgstr "Vliaikaistiedostoa poistettaessa tapahtui virhe."
#~ msgid "Could not invoke spell program \"%s\"" #~ msgid "Could not invoke spell program \"%s\""
#~ msgstr "Oikoluinta \"%s\" ei voitu kynnist" #~ msgstr "Oikoluinta \"%s\" ei voitu kynnist"
......
No preview for this file type
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.9\n" "Project-Id-Version: 0.8.9\n"
"POT-Creation-Date: 2000-11-06 08:19-0500\n" "POT-Creation-Date: 2000-11-14 15:17-0500\n"
"PO-Revision-Date: 2000-07-09 01:32+0100\n" "PO-Revision-Date: 2000-07-09 01:32+0100\n"
"Last-Translator: Clement Laforet <sheep.killer@free.fr>\n" "Last-Translator: Clement Laforet <sheep.killer@free.fr>\n"
"Language-Team: French <LL@li.org>\n" "Language-Team: French <LL@li.org>\n"
...@@ -58,7 +58,7 @@ msgstr "Lecture du fichier" ...@@ -58,7 +58,7 @@ msgstr "Lecture du fichier"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichier insrer [depuis ./] " msgstr "Fichier insrer [depuis ./] "
#: files.c:276 files.c:300 files.c:488 nano.c:1347 #: files.c:276 files.c:300 files.c:488 nano.c:1355
msgid "Cancelled" msgid "Cancelled"
msgstr "Annul" msgstr "Annul"
...@@ -110,7 +110,7 @@ msgstr "Le nom du fichier est %s" ...@@ -110,7 +110,7 @@ msgstr "Le nom du fichier est %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Fichier existant, crire par-dessus ?" msgstr "Fichier existant, crire par-dessus ?"
#: files.c:741 #: files.c:801
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -395,7 +395,7 @@ msgid "Case Sens" ...@@ -395,7 +395,7 @@ msgid "Case Sens"
msgstr "Casse respecte" msgstr "Casse respecte"
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1008 #: global.c:405 global.c:411 winio.c:1012
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
...@@ -675,106 +675,102 @@ msgstr "current->data vaut maintenant \"%s\"\n" ...@@ -675,106 +675,102 @@ msgstr "current->data vaut maintenant \"%s\"\n"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Aprs, data = \"%s\"\n" msgstr "Aprs, data = \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr "Erreur lors de l'effacement du fichier temporaire, zut!"
#: nano.c:1106
msgid "Edit a replacement" msgid "Edit a replacement"
msgstr "" msgstr ""
#: nano.c:1292 #: nano.c:1304
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Impossible de crer un nom de fichier temporaire: %s" msgstr "Impossible de crer un nom de fichier temporaire: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Vrification orthographique termine" msgstr "Vrification orthographique termine"
#: nano.c:1314 #: nano.c:1322
msgid "Spell checking failed" msgid "Spell checking failed"
msgstr "" msgstr ""
#: nano.c:1334 #: nano.c:1342
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Sauver le buffer modifi (RPONDRE \"No\" EFFACERA LES CHANGEMENTS" msgstr "Sauver le buffer modifi (RPONDRE \"No\" EFFACERA LES CHANGEMENTS"
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Impossible de redimensionner la fentre du haut" msgstr "Impossible de redimensionner la fentre du haut"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossible de bouger la fentre du haut" msgstr "Impossible de bouger la fentre du haut"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossible de redimensionner la fentre d'dition" msgstr "Impossible de redimensionner la fentre d'dition"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossible de bouger la fentre d'dition" msgstr "Impossible de bouger la fentre d'dition"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossible de redimensionner la fentre du bas" msgstr "Impossible de redimensionner la fentre du bas"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossible de bouger la fentre du bas" msgstr "Impossible de bouger la fentre du bas"
#: nano.c:1778 #: nano.c:1786
#, fuzzy #, fuzzy
msgid "Justify Complete" msgid "Justify Complete"
msgstr "Justifier" msgstr "Justifier"
#: nano.c:1846 #: nano.c:1854
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "" msgstr ""
#: nano.c:1858 #: nano.c:1866
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
#: nano.c:1859 #: nano.c:1867
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:2089 #: nano.c:2097
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configuration des fentres\n" msgstr "Main: configuration des fentres\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: fentre du bas\n" msgstr "Main: fentre du bas\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: ouvrir fichier\n" msgstr "Main: ouvrir fichier\n"
#: nano.c:2142 #: nano.c:2150
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "J'ai reu Alt-[-%c! (%d)\n" msgstr "J'ai reu Alt-[-%c! (%d)\n"
#: nano.c:2164 #: nano.c:2172
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "J'ai reu Alt-[-%c! (%d)\n" msgstr "J'ai reu Alt-[-%c! (%d)\n"
#: nano.c:2197 #: nano.c:2205
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "J'ai reu Alt-[-%c! (%d)\n" msgstr "J'ai reu Alt-[-%c! (%d)\n"
#: nano.c:2245 #: nano.c:2253
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "J'ai reu Alt-[-%c! (%d)\n" msgstr "J'ai reu Alt-[-%c! (%d)\n"
#: nano.c:2271 #: nano.c:2279
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "J'ai reu Alt-%c! (%d)\n" msgstr "J'ai reu Alt-%c! (%d)\n"
...@@ -870,71 +866,74 @@ msgstr "Seulement %d lignes sont disponibles, saut jusqu' ...@@ -870,71 +866,74 @@ msgstr "Seulement %d lignes sont disponibles, saut jusqu'
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "actual_x renvoy pour xplus=%d\n" msgstr "actual_x renvoy pour xplus=%d\n"
#: winio.c:421 #: winio.c:425
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "taper '%c' (%d)\n" msgstr "taper '%c' (%d)\n"
#: winio.c:459 #: winio.c:463
msgid "New Buffer" msgid "New Buffer"
msgstr "Nouveau buffer" msgstr "Nouveau buffer"
#: winio.c:462 #: winio.c:466
msgid " File: ..." msgid " File: ..."
msgstr " Fichier: ..." msgstr " Fichier: ..."
#: winio.c:470 #: winio.c:474
msgid "Modified" msgid "Modified"
msgstr "Modifi" msgstr "Modifi"
#: winio.c:922 #: winio.c:926
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Dplacement jusqu' (%d, %d) dans le buffer d'dition\n" msgstr "Dplacement jusqu' (%d, %d) dans le buffer d'dition\n"
#: winio.c:933 #: winio.c:937
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:978 #: winio.c:982
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "J'ai reu \"%s\"\n" msgstr "J'ai reu \"%s\"\n"
#: winio.c:1003 #: winio.c:1007
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
#: winio.c:1005 #: winio.c:1009
msgid "All" msgid "All"
msgstr "Tous" msgstr "Tous"
#: winio.c:1007 #: winio.c:1011
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#: winio.c:1144 #: winio.c:1148
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1148 #: winio.c:1152
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "ligne %d sur %d (%.0f%%), caractre %d sur %d (%.0f%%)" msgstr "ligne %d sur %d (%.0f%%), caractre %d sur %d (%.0f%%)"
#: winio.c:1276 #: winio.c:1280
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Envoi du buffer fichier sur stderr...\n" msgstr "Envoi du buffer fichier sur stderr...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Envoi du cutbuffer sur stderr...\n" msgstr "Envoi du cutbuffer sur stderr...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Envoi d'un buffer sur stderr...\n" msgstr "Envoi d'un buffer sur stderr...\n"
#~ msgid "Error deleting tempfile, ack!"
#~ msgstr "Erreur lors de l'effacement du fichier temporaire, zut!"
#~ msgid "Could not invoke spell program \"%s\"" #~ msgid "Could not invoke spell program \"%s\""
#~ msgstr "Impossible d'invoquer le programme spell \"%s\"" #~ msgstr "Impossible d'invoquer le programme spell \"%s\""
......
No preview for this file type
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano-0.9.10\n" "Project-Id-Version: nano-0.9.10\n"
"POT-Creation-Date: 2000-11-06 08:19-0500\n" "POT-Creation-Date: 2000-11-14 15:17-0500\n"
"PO-Revision-Date: 2000-06-08 20:56+07:00\n" "PO-Revision-Date: 2000-06-08 20:56+07:00\n"
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n" "Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
"Language-Team: Indonesian <id@li.org>\n" "Language-Team: Indonesian <id@li.org>\n"
...@@ -55,7 +55,7 @@ msgstr "Membaca File" ...@@ -55,7 +55,7 @@ msgstr "Membaca File"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File untuk disisipkan " msgstr "File untuk disisipkan "
#: files.c:276 files.c:300 files.c:488 nano.c:1347 #: files.c:276 files.c:300 files.c:488 nano.c:1355
msgid "Cancelled" msgid "Cancelled"
msgstr "Dibatalkan" msgstr "Dibatalkan"
...@@ -107,7 +107,7 @@ msgstr "Namafile adalah %s" ...@@ -107,7 +107,7 @@ msgstr "Namafile adalah %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "File ada, DITIMPA ?" msgstr "File ada, DITIMPA ?"
#: files.c:741 #: files.c:801
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -387,7 +387,7 @@ msgid "Case Sens" ...@@ -387,7 +387,7 @@ msgid "Case Sens"
msgstr "Case Sens" msgstr "Case Sens"
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1008 #: global.c:405 global.c:411 winio.c:1012
msgid "Cancel" msgid "Cancel"
msgstr "Batal" msgstr "Batal"
...@@ -653,106 +653,102 @@ msgstr "current->data sekarang =\"%s\"\n" ...@@ -653,106 +653,102 @@ msgstr "current->data sekarang =\"%s\"\n"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Setelah, data= \"%s\"\n" msgstr "Setelah, data= \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr "Kesalahan menghapus tempfile, ack!"
#: nano.c:1106
msgid "Edit a replacement" msgid "Edit a replacement"
msgstr "" msgstr ""
#: nano.c:1292 #: nano.c:1304
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Tidak dapat membuat nama file sementara: %s" msgstr "Tidak dapat membuat nama file sementara: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Selesai memeriksa ejaan" msgstr "Selesai memeriksa ejaan"
#: nano.c:1314 #: nano.c:1322
msgid "Spell checking failed" msgid "Spell checking failed"
msgstr "" msgstr ""
#: nano.c:1334 #: nano.c:1342
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?" msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?"
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Tidak dapat menganti ukuran jendela atas" msgstr "Tidak dapat menganti ukuran jendela atas"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Tidak dapat memindahkan jendela atas" msgstr "Tidak dapat memindahkan jendela atas"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Tidak dapat mengganti ukuran jendela edit" msgstr "Tidak dapat mengganti ukuran jendela edit"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Tidak dapat memindah jendela edit" msgstr "Tidak dapat memindah jendela edit"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Tidak dapat mengganti ukuran jendela bawah" msgstr "Tidak dapat mengganti ukuran jendela bawah"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Tidak dapat memindah jendela bawah" msgstr "Tidak dapat memindah jendela bawah"
#: nano.c:1778 #: nano.c:1786
#, fuzzy #, fuzzy
msgid "Justify Complete" msgid "Justify Complete"
msgstr "Justifikasi" msgstr "Justifikasi"
#: nano.c:1846 #: nano.c:1854
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "" msgstr ""
#: nano.c:1858 #: nano.c:1866
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
#: nano.c:1859 #: nano.c:1867
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:2089 #: nano.c:2097
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: menset jendela\n" msgstr "Main: menset jendela\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: jendela bawah\n" msgstr "Main: jendela bawah\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: membuka file\n" msgstr "Main: membuka file\n"
#: nano.c:2142 #: nano.c:2150
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2164 #: nano.c:2172
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2197 #: nano.c:2205
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2245 #: nano.c:2253
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2271 #: nano.c:2279
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
...@@ -848,71 +844,74 @@ msgstr "Hanya %d baris tersedia, melompat ke baris akhir" ...@@ -848,71 +844,74 @@ msgstr "Hanya %d baris tersedia, melompat ke baris akhir"
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "actual_x untuk xplus=%d mengembalikan %d\n" msgstr "actual_x untuk xplus=%d mengembalikan %d\n"
#: winio.c:421 #: winio.c:425
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "input '%c' (%d)\n" msgstr "input '%c' (%d)\n"
#: winio.c:459 #: winio.c:463
msgid "New Buffer" msgid "New Buffer"
msgstr "Buffer baru" msgstr "Buffer baru"
#: winio.c:462 #: winio.c:466
msgid " File: ..." msgid " File: ..."
msgstr " File: ..." msgstr " File: ..."
#: winio.c:470 #: winio.c:474
msgid "Modified" msgid "Modified"
msgstr "Dimodifikasi" msgstr "Dimodifikasi"
#: winio.c:922 #: winio.c:926
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Pindah ke (%d, %d) dalam buffer edit\n" msgstr "Pindah ke (%d, %d) dalam buffer edit\n"
#: winio.c:933 #: winio.c:937
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:978 #: winio.c:982
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Saya mendapat \"%s\"\n" msgstr "Saya mendapat \"%s\"\n"
#: winio.c:1003 #: winio.c:1007
msgid "Yes" msgid "Yes"
msgstr "Ya" msgstr "Ya"
#: winio.c:1005 #: winio.c:1009
msgid "All" msgid "All"
msgstr "Semua" msgstr "Semua"
#: winio.c:1007 #: winio.c:1011
msgid "No" msgid "No"
msgstr "Tidak" msgstr "Tidak"
#: winio.c:1144 #: winio.c:1148
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1148 #: winio.c:1152
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)" msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)"
#: winio.c:1276 #: winio.c:1280
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Kirim buffer file ke stderr...\n" msgstr "Kirim buffer file ke stderr...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Kirim cutbuffer ke stderr...\n" msgstr "Kirim cutbuffer ke stderr...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Kirim buffer ke stderr...\n" msgstr "Kirim buffer ke stderr...\n"
#~ msgid "Error deleting tempfile, ack!"
#~ msgstr "Kesalahan menghapus tempfile, ack!"
#~ msgid "Could not invoke spell program \"%s\"" #~ msgid "Could not invoke spell program \"%s\""
#~ msgstr "Tidak dapat memanggil program ejaan \"%s\"" #~ msgstr "Tidak dapat memanggil program ejaan \"%s\""
......
No preview for this file type
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.7\n" "Project-Id-Version: 0.8.7\n"
"POT-Creation-Date: 2000-11-06 08:19-0500\n" "POT-Creation-Date: 2000-11-14 15:17-0500\n"
"PO-Revision-Date: 2000-03-03 04:57+0100\n" "PO-Revision-Date: 2000-03-03 04:57+0100\n"
"Last-Translator: Daniele Medri <madrid@linux.it>\n" "Last-Translator: Daniele Medri <madrid@linux.it>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
...@@ -55,7 +55,7 @@ msgstr "Lettura file" ...@@ -55,7 +55,7 @@ msgstr "Lettura file"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File da inserire [da ./] " msgstr "File da inserire [da ./] "
#: files.c:276 files.c:300 files.c:488 nano.c:1347 #: files.c:276 files.c:300 files.c:488 nano.c:1355
msgid "Cancelled" msgid "Cancelled"
msgstr "Cancellato" msgstr "Cancellato"
...@@ -107,7 +107,7 @@ msgstr "Il nome file ...@@ -107,7 +107,7 @@ msgstr "Il nome file
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "File esistente, SOVRASCRIVERE?" msgstr "File esistente, SOVRASCRIVERE?"
#: files.c:741 #: files.c:801
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -387,7 +387,7 @@ msgid "Case Sens" ...@@ -387,7 +387,7 @@ msgid "Case Sens"
msgstr "Case sens" msgstr "Case sens"
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1008 #: global.c:405 global.c:411 winio.c:1012
msgid "Cancel" msgid "Cancel"
msgstr "Cancella" msgstr "Cancella"
...@@ -638,108 +638,104 @@ msgstr "current->data ora = \"%d\"\n" ...@@ -638,108 +638,104 @@ msgstr "current->data ora = \"%d\"\n"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Dopo, data = \"%s\"\n" msgstr "Dopo, data = \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr ""
#: nano.c:1106
msgid "Edit a replacement" msgid "Edit a replacement"
msgstr "" msgstr ""
#: nano.c:1292 #: nano.c:1304
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Impossibile creare un nome file temporaneo: %s" msgstr "Impossibile creare un nome file temporaneo: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Controllo ortografico terminato" msgstr "Controllo ortografico terminato"
#: nano.c:1314 #: nano.c:1322
msgid "Spell checking failed" msgid "Spell checking failed"
msgstr "" msgstr ""
#: nano.c:1334 #: nano.c:1342
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "" msgstr ""
"Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI " "Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI "
"AVVENUTI) ?" "AVVENUTI) ?"
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Impossibile ridimensionare la finestra superiore" msgstr "Impossibile ridimensionare la finestra superiore"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossibile spostare la finestra superiore" msgstr "Impossibile spostare la finestra superiore"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossibile ridimensionare la finestra di modifica" msgstr "Impossibile ridimensionare la finestra di modifica"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossibile spostare finestra di modifica" msgstr "Impossibile spostare finestra di modifica"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossibile ridimensionare la finestra inferiore" msgstr "Impossibile ridimensionare la finestra inferiore"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossibile spostare la finestra inferiore" msgstr "Impossibile spostare la finestra inferiore"
#: nano.c:1778 #: nano.c:1786
#, fuzzy #, fuzzy
msgid "Justify Complete" msgid "Justify Complete"
msgstr "Giustifica" msgstr "Giustifica"
#: nano.c:1846 #: nano.c:1854
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "" msgstr ""
#: nano.c:1858 #: nano.c:1866
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
#: nano.c:1859 #: nano.c:1867
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:2089 #: nano.c:2097
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configura finestre\n" msgstr "Main: configura finestre\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: finestra inferiore\n" msgstr "Main: finestra inferiore\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: apri file\n" msgstr "Main: apri file\n"
#: nano.c:2142 #: nano.c:2150
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2164 #: nano.c:2172
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2197 #: nano.c:2205
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2245 #: nano.c:2253
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2271 #: nano.c:2279
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Premuto Alt-%c! (%d)\n" msgstr "Premuto Alt-%c! (%d)\n"
...@@ -835,68 +831,68 @@ msgstr "Solo %d linee disponibili, vai all'ultima" ...@@ -835,68 +831,68 @@ msgstr "Solo %d linee disponibili, vai all'ultima"
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "actual_x per xplus=%d ha riportato %d\n" msgstr "actual_x per xplus=%d ha riportato %d\n"
#: winio.c:421 #: winio.c:425
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "input '%c' (%d)\n" msgstr "input '%c' (%d)\n"
#: winio.c:459 #: winio.c:463
msgid "New Buffer" msgid "New Buffer"
msgstr "Nuovo Buffer" msgstr "Nuovo Buffer"
#: winio.c:462 #: winio.c:466
msgid " File: ..." msgid " File: ..."
msgstr "File: ..." msgstr "File: ..."
#: winio.c:470 #: winio.c:474
msgid "Modified" msgid "Modified"
msgstr "Modificato" msgstr "Modificato"
#: winio.c:922 #: winio.c:926
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Mosso in (%d, %d) nel buffer di modifica\n" msgstr "Mosso in (%d, %d) nel buffer di modifica\n"
#: winio.c:933 #: winio.c:937
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:978 #: winio.c:982
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Premuto \"%s\"\n" msgstr "Premuto \"%s\"\n"
#: winio.c:1003 #: winio.c:1007
msgid "Yes" msgid "Yes"
msgstr " S" msgstr " S"
#: winio.c:1005 #: winio.c:1009
msgid "All" msgid "All"
msgstr " Tutti" msgstr " Tutti"
#: winio.c:1007 #: winio.c:1011
msgid "No" msgid "No"
msgstr " No" msgstr " No"
#: winio.c:1144 #: winio.c:1148
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1148 #: winio.c:1152
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)" msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)"
#: winio.c:1276 #: winio.c:1280
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Copia file buffer sullo stderr...\n" msgstr "Copia file buffer sullo stderr...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Copia cutbuffer sullo stderr...\n" msgstr "Copia cutbuffer sullo stderr...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Copia un buffer sullo stderr...\n" msgstr "Copia un buffer sullo stderr...\n"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-11-14 13:25-0500\n" "POT-Creation-Date: 2000-11-14 20:24-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -107,7 +107,7 @@ msgstr "" ...@@ -107,7 +107,7 @@ msgstr ""
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "" msgstr ""
#: files.c:801 #: files.c:803
msgid "(more)" msgid "(more)"
msgstr "" msgstr ""
...@@ -384,7 +384,7 @@ msgid "Case Sens" ...@@ -384,7 +384,7 @@ msgid "Case Sens"
msgstr "" msgstr ""
#: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401 #: global.c:344 global.c:364 global.c:375 global.c:385 global.c:401
#: global.c:405 global.c:411 winio.c:1012 #: global.c:405 global.c:411 winio.c:1011
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
...@@ -817,67 +817,67 @@ msgstr "" ...@@ -817,67 +817,67 @@ msgstr ""
msgid "actual_x_from_start for xplus=%d returned %d\n" msgid "actual_x_from_start for xplus=%d returned %d\n"
msgstr "" msgstr ""
#: winio.c:425 #: winio.c:424
#, c-format #, c-format
msgid "input '%c' (%d)\n" msgid "input '%c' (%d)\n"
msgstr "" msgstr ""
#: winio.c:463 #: winio.c:462
msgid "New Buffer" msgid "New Buffer"
msgstr "" msgstr ""
#: winio.c:466 #: winio.c:465
msgid " File: ..." msgid " File: ..."
msgstr "" msgstr ""
#: winio.c:474 #: winio.c:473
msgid "Modified" msgid "Modified"
msgstr "" msgstr ""
#: winio.c:926 #: winio.c:925
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "" msgstr ""
#: winio.c:937 #: winio.c:936
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "" msgstr ""
#: winio.c:982 #: winio.c:981
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "" msgstr ""
#: winio.c:1007 #: winio.c:1006
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: winio.c:1009 #: winio.c:1008
msgid "All" msgid "All"
msgstr "" msgstr ""
#: winio.c:1011 #: winio.c:1010
msgid "No" msgid "No"
msgstr "" msgstr ""
#: winio.c:1148 #: winio.c:1147
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "" msgstr ""
#: winio.c:1152 #: winio.c:1151
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "" msgstr ""
#: winio.c:1280 #: winio.c:1279
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "" msgstr ""
#: winio.c:1282 #: winio.c:1281
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "" msgstr ""
#: winio.c:1284 #: winio.c:1283
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "" msgstr ""
...@@ -192,7 +192,6 @@ void blank_edit(void) ...@@ -192,7 +192,6 @@ void blank_edit(void)
int i; int i;
for (i = 0; i <= editwinrows - 1; i++) for (i = 0; i <= editwinrows - 1; i++)
mvwaddstr(edit, i, 0, hblank); mvwaddstr(edit, i, 0, hblank);
wrefresh(edit);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment