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
This commit is contained in:
Chris Allegretta 2000-11-15 01:25:42 +00:00
parent b5b89aeb93
commit 2c9752291d
16 changed files with 303 additions and 308 deletions

View File

@ -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).

28
files.c
View File

@ -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)
/* 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)
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)
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)
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)
*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)
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)
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)
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)
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)

BIN
po/de.gmo

Binary file not shown.

View File

@ -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 König <floki@bigfoot.com>\n" "Last-Translator: Florian König <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"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Datei zum Einfügen [von ./] " msgstr "Datei zum Einfügen [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"
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"
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"
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 temporäre Datei nicht löschen"
#: 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 temporäre Datei erzeugen: %s" msgstr "Konnte keine temporäre Datei erzeugen: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Rechtschreibprüfung abgeschlossen" msgstr "Rechtschreibprüfung 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 "Veränderten Puffer speichern (\"Nein\" verwirft die Änderungen) ? " msgstr "Veränderten 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 Größe des oberen Fensters nicht verändern" msgstr "Kann die Größe des oberen Fensters nicht verändern"
#: 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 Größe des Bearbeitungsfensters nicht verändern" msgstr "Kann Größe des Bearbeitungsfensters nicht verändern"
#: 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 Größe des unteren Fensters nicht verändern" msgstr "Kann Größe des unteren Fensters nicht verändern"
#: 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"
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 für xplus=%d gab %d zurück\n" msgstr "actual_x_from_start für xplus=%d gab %d zurück\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 "Verändert" msgstr "Verändert"
#: 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 temporäre Datei nicht löschen"
#~ 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"

BIN
po/es.gmo

Binary file not shown.

View File

@ -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"
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"
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"
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"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Después, data = \"%s\"\n" msgstr "Después, 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 "Revisión de ortografía finalizada" msgstr "Revisión de ortografía 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 tamaño de la ventana superior" msgstr "No se puede cambiar el tamaño 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 tamaño de la ventana de edición" msgstr "No se puede cambiar el tamaño de la ventana de edición"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "No se puede mover la ventana de edición" msgstr "No se puede mover la ventana de edición"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "No se puede cambiar el tamaño de la ventana inferior" msgstr "No se puede cambiar el tamaño 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
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 edición\n" msgstr "Moviendo a (%d, %d) en buffer de edición\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 "línea %d de %d (%.0f%%), carácter %d de %d (%.0f%%)" msgstr "línea %d de %d (%.0f%%), carácter %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\""

BIN
po/fi.gmo

Binary file not shown.

View File

@ -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"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Lisättävä tiedosto [hakemistossa ./]" msgstr "Lisättävä 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"
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"
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"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Jälkeenpäin, data = \"%s\"\n" msgstr "Jälkeenpäin, data = \"%s\"\n"
#: nano.c:1062 #: nano.c:1093
msgid "Error deleting tempfile, ack!"
msgstr "Väliaikaistiedostoa 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 "Väliaikaista tiedostonnimeä ei voitu luoda: %s" msgstr "Väliaikaista 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 häviävät, jos vastaat \"ei\") ? " msgstr "Tallenna muutettu teksti (Muutokset häviävät, jos vastaat \"ei\") ? "
#: nano.c:1497 #: nano.c:1505
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Yläikkunan kokoa ei voi muuttaa" msgstr "Yläikkunan kokoa ei voi muuttaa"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Yläikkunaa ei voi siirtää" msgstr "Yläikkunaa 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 "Päätila: ikkunoiden asettelu\n" msgstr "Päätila: ikkunoiden asettelu\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Päätila: alaikkuna\n" msgstr "Päätila: alaikkuna\n"
#: nano.c:2108 #: nano.c:2116
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Päätila: avaa tiedosto\n" msgstr "Päätila: 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
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 "syöte '%c' (%d)\n" msgstr "syöte '%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 "Syötetään tiedosto stderriin...\n" msgstr "Syötetään tiedosto stderriin...\n"
#: winio.c:1278 #: winio.c:1282
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Syötetään leiketila stderriin...\n" msgstr "Syötetään leiketila stderriin...\n"
#: winio.c:1280 #: winio.c:1284
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Syötetään teksti stderriin...\n" msgstr "Syötetään teksti stderriin...\n"
#~ msgid "Error deleting tempfile, ack!"
#~ msgstr "Väliaikaistiedostoa poistettaessa tapahtui virhe."
#~ msgid "Could not invoke spell program \"%s\"" #~ msgid "Could not invoke spell program \"%s\""
#~ msgstr "Oikoluinta \"%s\" ei voitu käynnistää" #~ msgstr "Oikoluinta \"%s\" ei voitu käynnistää"

BIN
po/fr.gmo

Binary file not shown.

View File

@ -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"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichier à insérer [depuis ./] " msgstr "Fichier à insérer [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"
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"
msgstr "Casse respectée" msgstr "Casse respectée"
#: 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"
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Après, data = \"%s\"\n" msgstr "Après, 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 créer un nom de fichier temporaire: %s" msgstr "Impossible de créer un nom de fichier temporaire: %s"
#: nano.c:1312 #: nano.c:1320
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Vérification orthographique terminée" msgstr "Vérification orthographique terminée"
#: 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é (RÉPONDRE \"No\" EFFACERA LES CHANGEMENTS" msgstr "Sauver le buffer modifié (RÉPONDRE \"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 fenêtre du haut" msgstr "Impossible de redimensionner la fenêtre du haut"
#: nano.c:1499 #: nano.c:1507
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossible de bouger la fenêtre du haut" msgstr "Impossible de bouger la fenêtre du haut"
#: nano.c:1501 #: nano.c:1509
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossible de redimensionner la fenêtre d'édition" msgstr "Impossible de redimensionner la fenêtre d'édition"
#: nano.c:1503 #: nano.c:1511
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossible de bouger la fenêtre d'édition" msgstr "Impossible de bouger la fenêtre d'édition"
#: nano.c:1505 #: nano.c:1513
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossible de redimensionner la fenêtre du bas" msgstr "Impossible de redimensionner la fenêtre du bas"
#: nano.c:1507 #: nano.c:1515
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossible de bouger la fenêtre du bas" msgstr "Impossible de bouger la fenêtre 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 fenêtres\n" msgstr "Main: configuration des fenêtres\n"
#: nano.c:2102 #: nano.c:2110
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: fenêtre du bas\n" msgstr "Main: fenêtre 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 reçu Alt-[-%c! (%d)\n" msgstr "J'ai reçu 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 reçu Alt-[-%c! (%d)\n" msgstr "J'ai reçu 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 reçu Alt-[-%c! (%d)\n" msgstr "J'ai reçu 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 reçu Alt-[-%c! (%d)\n" msgstr "J'ai reçu 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 reçu Alt-%c! (%d)\n" msgstr "J'ai reçu Alt-%c! (%d)\n"
@ -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 "Déplacement jusqu'à (%d, %d) dans le buffer d'édition\n" msgstr "Déplacement 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 reçu \"%s\"\n" msgstr "J'ai reçu \"%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%%), caractère %d sur %d (%.0f%%)" msgstr "ligne %d sur %d (%.0f%%), caractère %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\""

BIN
po/id.gmo

Binary file not shown.

View File

@ -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"
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"
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"
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"
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"
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\""

BIN
po/it.gmo

Binary file not shown.

View File

@ -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"
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
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"
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"
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"
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"

View File

@ -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 ""
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"
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 ""
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 ""

View File

@ -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);
} }