tab completion fixes, removed wefresh() from blank_edit
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@284 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
b5b89aeb93
commit
2c9752291d
|
@ -71,6 +71,9 @@ CVS Code -
|
|||
nanogetstr().
|
||||
- Black magic code to make $ appear in prompt if we're past
|
||||
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:
|
||||
- Updated translation to 0.9.19-CVS (Jordi).
|
||||
|
||||
|
|
28
files.c
28
files.c
|
@ -537,7 +537,7 @@ char **cwd_tab_completion(char *buf, int *num_matches)
|
|||
DIR *dir;
|
||||
struct dirent *next;
|
||||
|
||||
matches = nmalloc(1024);
|
||||
matches = nmalloc(BUFSIZ);
|
||||
|
||||
/* Stick a wildcard onto the buf, for later use */
|
||||
strcat(buf, "*");
|
||||
|
@ -546,6 +546,7 @@ char **cwd_tab_completion(char *buf, int *num_matches)
|
|||
/* if (!strcmp(filename, ""))
|
||||
dirName = get_current_dir_name(); */
|
||||
|
||||
/* Okie, if there's a / in the buffer, strip out the directory part */
|
||||
if (strcmp(buf, "") && strstr(buf, "/")) {
|
||||
dirName = malloc(strlen(buf) + 1);
|
||||
tmp = buf + strlen(buf);
|
||||
|
@ -556,7 +557,6 @@ char **cwd_tab_completion(char *buf, int *num_matches)
|
|||
|
||||
strncpy(dirName, buf, tmp - buf + 1);
|
||||
dirName[tmp - buf] = 0;
|
||||
/* tmp++; */
|
||||
|
||||
} else {
|
||||
if ((dirName = getcwd(NULL, 0)) == NULL)
|
||||
|
@ -586,7 +586,7 @@ char **cwd_tab_completion(char *buf, int *num_matches)
|
|||
continue;
|
||||
}
|
||||
#ifdef DEBUG
|
||||
fprintf(stderr, "\nComparing \'%s\'\n", next->d_name);
|
||||
fprintf(stderr, "Comparing \'%s\'\n", next->d_name);
|
||||
#endif
|
||||
/* See if this matches */
|
||||
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);
|
||||
matches[*num_matches] = tmp2;
|
||||
++*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;
|
||||
|
||||
/* 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
|
||||
cursor */
|
||||
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) {
|
||||
case 0:
|
||||
blank_edit();
|
||||
wrefresh(edit);
|
||||
break;
|
||||
case 1:
|
||||
|
||||
|
@ -689,9 +688,11 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
|
|||
if (stat(buf, &fileinfo) == -1)
|
||||
break;
|
||||
else if (S_ISDIR(fileinfo.st_mode)) {
|
||||
|
||||
/* Tack on a slash */
|
||||
strncat(buf, "/", 1);
|
||||
*newplace += 1;
|
||||
/* now we start over again with # of tabs so far */
|
||||
/* now we start over with 0 tabs so far */
|
||||
*lastWasTab = 0;
|
||||
}
|
||||
break;
|
||||
|
@ -702,18 +703,18 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
|
|||
pos <= strlen(matches[0]); pos++)
|
||||
tmp++;
|
||||
|
||||
/* write out the matched command */
|
||||
/* write out the matched name */
|
||||
strncpy(copyto, matches[0], strlen(matches[0]) + 1);
|
||||
*newplace += strlen(matches[0]) - pos;
|
||||
|
||||
if (stat(buf, &fileinfo) == -1);
|
||||
if (stat(buf, &fileinfo) == -1)
|
||||
break;
|
||||
else if (S_ISDIR(fileinfo.st_mode)) {
|
||||
strncat(buf, "/", 1);
|
||||
*newplace += 1;
|
||||
/* now we start over again with # of tabs so far */
|
||||
*lastWasTab = 0;
|
||||
}
|
||||
|
||||
break;
|
||||
default:
|
||||
/* 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);
|
||||
|
||||
editline = 0;
|
||||
|
||||
/* Figure out the length of the longest filename */
|
||||
for (i = 0; i < num_matches; i++)
|
||||
if (strlen(matches[i]) > longestname)
|
||||
|
|
91
po/de.po
91
po/de.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Florian König <floki@bigfoot.com>\n"
|
||||
"Language-Team: German <floki@bigfoot.com>\n"
|
||||
|
@ -56,7 +56,7 @@ msgstr "Lese Datei"
|
|||
msgid "File to insert [from ./] "
|
||||
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"
|
||||
msgstr "Abgebrochen"
|
||||
|
||||
|
@ -108,7 +108,7 @@ msgstr "Dateiname ist %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Datei exisitiert, ÜBERSCHREIBEN ?"
|
||||
|
||||
#: files.c:741
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -386,7 +386,7 @@ msgid "Case Sens"
|
|||
msgstr "GROSZ/klein"
|
||||
|
||||
#: 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"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
|
@ -658,105 +658,101 @@ msgstr "current->data jetzt = \"%s\"\n"
|
|||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Nachher, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1062
|
||||
msgid "Error deleting tempfile, ack!"
|
||||
msgstr "Konnte temporäre Datei nicht löschen"
|
||||
|
||||
#: nano.c:1106
|
||||
#: nano.c:1093
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1292
|
||||
#: nano.c:1304
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Konnte keine temporäre Datei erzeugen: %s"
|
||||
|
||||
#: nano.c:1312
|
||||
#: nano.c:1320
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Rechtschreibprüfung abgeschlossen"
|
||||
|
||||
#: nano.c:1314
|
||||
#: nano.c:1322
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1334
|
||||
#: nano.c:1342
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Veränderten Puffer speichern (\"Nein\" verwirft die Änderungen) ? "
|
||||
|
||||
#: nano.c:1497
|
||||
#: nano.c:1505
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Kann die Größe des oberen Fensters nicht verändern"
|
||||
|
||||
#: nano.c:1499
|
||||
#: nano.c:1507
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Kann oberes Fenster nicht verschieben"
|
||||
|
||||
#: nano.c:1501
|
||||
#: nano.c:1509
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Kann Größe des Bearbeitungsfensters nicht verändern"
|
||||
|
||||
#: nano.c:1503
|
||||
#: nano.c:1511
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Kann Bearbeitungsfenster nicht verschieben"
|
||||
|
||||
#: nano.c:1505
|
||||
#: nano.c:1513
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Kann Größe des unteren Fensters nicht verändern"
|
||||
|
||||
#: nano.c:1507
|
||||
#: nano.c:1515
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Kann unteres Fenster nicht verschieben"
|
||||
|
||||
#: nano.c:1778
|
||||
#: nano.c:1786
|
||||
msgid "Justify Complete"
|
||||
msgstr "Ausrichten abgeschlossen"
|
||||
|
||||
#: nano.c:1846
|
||||
#: nano.c:1854
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s aktivieren/deaktivieren"
|
||||
|
||||
#: nano.c:1858
|
||||
#: nano.c:1866
|
||||
msgid "enabled"
|
||||
msgstr "aktiviert"
|
||||
|
||||
#: nano.c:1859
|
||||
#: nano.c:1867
|
||||
msgid "disabled"
|
||||
msgstr "deaktiviert"
|
||||
|
||||
#: nano.c:2089
|
||||
#: nano.c:2097
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Hauptprogramm: Fenster konfigurieren\n"
|
||||
|
||||
#: nano.c:2102
|
||||
#: nano.c:2110
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Hauptprogramm: unteres Fenster\n"
|
||||
|
||||
#: nano.c:2108
|
||||
#: nano.c:2116
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Hauptprogramm: Datei öffnen\n"
|
||||
|
||||
#: nano.c:2142
|
||||
#: nano.c:2150
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2164
|
||||
#: nano.c:2172
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2197
|
||||
#: nano.c:2205
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2245
|
||||
#: nano.c:2253
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2271
|
||||
#: nano.c:2279
|
||||
#, c-format
|
||||
msgid "I got 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"
|
||||
msgstr "actual_x_from_start für xplus=%d gab %d zurück\n"
|
||||
|
||||
#: winio.c:421
|
||||
#: winio.c:425
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "Eingabe '%c' (%d)\n"
|
||||
|
||||
#: winio.c:459
|
||||
#: winio.c:463
|
||||
msgid "New Buffer"
|
||||
msgstr "Neuer Puffer"
|
||||
|
||||
#: winio.c:462
|
||||
#: winio.c:466
|
||||
msgid " File: ..."
|
||||
msgstr " Datei: ..."
|
||||
|
||||
#: winio.c:470
|
||||
#: winio.c:474
|
||||
msgid "Modified"
|
||||
msgstr "Verändert"
|
||||
|
||||
#: winio.c:922
|
||||
#: winio.c:926
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n"
|
||||
|
||||
#: winio.c:933
|
||||
#: winio.c:937
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:978
|
||||
#: winio.c:982
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Erhielt \"%s\"\n"
|
||||
|
||||
#: winio.c:1003
|
||||
#: winio.c:1007
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: winio.c:1005
|
||||
#: winio.c:1009
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1011
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: winio.c:1144
|
||||
#: winio.c:1148
|
||||
#, c-format
|
||||
msgid "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%%)"
|
||||
msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1276
|
||||
#: winio.c:1280
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Gebe Datei Puffer nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1278
|
||||
#: winio.c:1282
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1284
|
||||
msgid "Dumping a buffer to stderr...\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\""
|
||||
#~ msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen"
|
||||
|
||||
|
|
91
po/es.po
91
po/es.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Spanish <es@li.org>\n"
|
||||
|
@ -56,7 +56,7 @@ msgstr "Leyendo Fichero"
|
|||
msgid "File to insert [from ./] "
|
||||
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"
|
||||
msgstr "Cancelado"
|
||||
|
||||
|
@ -108,7 +108,7 @@ msgstr "filename es %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "El fichero existe, SOBREESCRIBIR ?"
|
||||
|
||||
#: files.c:741
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -385,7 +385,7 @@ msgid "Case Sens"
|
|||
msgstr "May/Min"
|
||||
|
||||
#: 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"
|
||||
msgstr "Cancelar"
|
||||
|
||||
|
@ -653,106 +653,102 @@ msgstr "current->data ahora = \"%d\"\n"
|
|||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Después, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1062
|
||||
msgid "Error deleting tempfile, ack!"
|
||||
msgstr "Error borrando el fichero temporal, ouch!"
|
||||
|
||||
#: nano.c:1106
|
||||
#: nano.c:1093
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1292
|
||||
#: nano.c:1304
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "No pude crear un fichero temporal: %s"
|
||||
|
||||
#: nano.c:1312
|
||||
#: nano.c:1320
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Revisión de ortografía finalizada"
|
||||
|
||||
#: nano.c:1314
|
||||
#: nano.c:1322
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1334
|
||||
#: nano.c:1342
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIRÁ LOS CAMBIOS) ?"
|
||||
|
||||
#: nano.c:1497
|
||||
#: nano.c:1505
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "No se puede cambiar el tamaño de la ventana superior"
|
||||
|
||||
#: nano.c:1499
|
||||
#: nano.c:1507
|
||||
msgid "Cannot move top win"
|
||||
msgstr "No se puede mover la ventana superior"
|
||||
|
||||
#: nano.c:1501
|
||||
#: nano.c:1509
|
||||
msgid "Cannot resize edit win"
|
||||
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"
|
||||
msgstr "No se puede mover la ventana de edición"
|
||||
|
||||
#: nano.c:1505
|
||||
#: nano.c:1513
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "No se puede cambiar el tamaño de la ventana inferior"
|
||||
|
||||
#: nano.c:1507
|
||||
#: nano.c:1515
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "No se puede mover la ventana inferior"
|
||||
|
||||
#: nano.c:1778
|
||||
#: nano.c:1786
|
||||
#, fuzzy
|
||||
msgid "Justify Complete"
|
||||
msgstr "Justificar Completado"
|
||||
|
||||
#: nano.c:1846
|
||||
#: nano.c:1854
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s habilitar/deshabilitar"
|
||||
|
||||
#: nano.c:1858
|
||||
#: nano.c:1866
|
||||
msgid "enabled"
|
||||
msgstr "habilitado"
|
||||
|
||||
#: nano.c:1859
|
||||
#: nano.c:1867
|
||||
msgid "disabled"
|
||||
msgstr "deshabilitado"
|
||||
|
||||
#: nano.c:2089
|
||||
#: nano.c:2097
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configurar las ventanas\n"
|
||||
|
||||
#: nano.c:2102
|
||||
#: nano.c:2110
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: ventana inferior\n"
|
||||
|
||||
#: nano.c:2108
|
||||
#: nano.c:2116
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: abrir fichero\n"
|
||||
|
||||
#: nano.c:2142
|
||||
#: nano.c:2150
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Pillé Alt-O-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2164
|
||||
#: nano.c:2172
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Pillé Alt-[-1-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2197
|
||||
#: nano.c:2205
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Pillé Alt-[-2-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2245
|
||||
#: nano.c:2253
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Pillé Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2271
|
||||
#: nano.c:2279
|
||||
#, c-format
|
||||
msgid "I got 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"
|
||||
msgstr "actual_x_from_start para xplus=%d devolvió %d\n"
|
||||
|
||||
#: winio.c:421
|
||||
#: winio.c:425
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "entrada '%c' (%d)\n"
|
||||
|
||||
#: winio.c:459
|
||||
#: winio.c:463
|
||||
msgid "New Buffer"
|
||||
msgstr "Nuevo Buffer"
|
||||
|
||||
#: winio.c:462
|
||||
#: winio.c:466
|
||||
msgid " File: ..."
|
||||
msgstr "Fichero: ..."
|
||||
|
||||
#: winio.c:470
|
||||
#: winio.c:474
|
||||
msgid "Modified"
|
||||
msgstr "Modificado"
|
||||
|
||||
#: winio.c:922
|
||||
#: winio.c:926
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Moviendo a (%d, %d) en buffer de edición\n"
|
||||
|
||||
#: winio.c:933
|
||||
#: winio.c:937
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:978
|
||||
#: winio.c:982
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Pillé \"%s\"\n"
|
||||
|
||||
#: winio.c:1003
|
||||
#: winio.c:1007
|
||||
msgid "Yes"
|
||||
msgstr "Sí"
|
||||
|
||||
#: winio.c:1005
|
||||
#: winio.c:1009
|
||||
msgid "All"
|
||||
msgstr "Todas"
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1011
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: winio.c:1144
|
||||
#: winio.c:1148
|
||||
#, c-format
|
||||
msgid "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%%)"
|
||||
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"
|
||||
msgstr "Volcando buffer de fichero a stderr...\n"
|
||||
|
||||
#: winio.c:1278
|
||||
#: winio.c:1282
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Volcando el cutbuffer a stderr...\n"
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1284
|
||||
msgid "Dumping a buffer to 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\""
|
||||
#~ msgstr "No se pudo llamar al corrector \"%s\""
|
||||
|
||||
|
|
91
po/fi.po
91
po/fi.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
|
||||
"Language-Team: Finnish <fi@li.org>\n"
|
||||
|
@ -55,7 +55,7 @@ msgstr "Tiedostoa luetaan"
|
|||
msgid "File to insert [from ./] "
|
||||
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"
|
||||
msgstr "Peruttu"
|
||||
|
||||
|
@ -107,7 +107,7 @@ msgstr "tiedoston nimi on %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Tiedosto on jo olemassa, korvataanko?"
|
||||
|
||||
#: files.c:741
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -386,7 +386,7 @@ msgid "Case Sens"
|
|||
msgstr "Kirj. koko"
|
||||
|
||||
#: 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"
|
||||
msgstr "Peru"
|
||||
|
||||
|
@ -654,106 +654,102 @@ msgstr "current->data nyt = \"%s\"\n"
|
|||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Jälkeenpäin, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1062
|
||||
msgid "Error deleting tempfile, ack!"
|
||||
msgstr "Väliaikaistiedostoa poistettaessa tapahtui virhe."
|
||||
|
||||
#: nano.c:1106
|
||||
#: nano.c:1093
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1292
|
||||
#: nano.c:1304
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Väliaikaista tiedostonnimeä ei voitu luoda: %s"
|
||||
|
||||
#: nano.c:1312
|
||||
#: nano.c:1320
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Oikoluku on valmis"
|
||||
|
||||
#: nano.c:1314
|
||||
#: nano.c:1322
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1334
|
||||
#: nano.c:1342
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Tallenna muutettu teksti (Muutokset häviävät, jos vastaat \"ei\") ? "
|
||||
|
||||
#: nano.c:1497
|
||||
#: nano.c:1505
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Yläikkunan kokoa ei voi muuttaa"
|
||||
|
||||
#: nano.c:1499
|
||||
#: nano.c:1507
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Yläikkunaa ei voi siirtää"
|
||||
|
||||
#: nano.c:1501
|
||||
#: nano.c:1509
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Muokkausikkunan kokoa ei voi muuttaa"
|
||||
|
||||
#: nano.c:1503
|
||||
#: nano.c:1511
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Muokkausikkunaa ei voi siirtää"
|
||||
|
||||
#: nano.c:1505
|
||||
#: nano.c:1513
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Alaikkunan kokoa ei voi muuttaa"
|
||||
|
||||
#: nano.c:1507
|
||||
#: nano.c:1515
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Alaikkunaa ei voi siirtää"
|
||||
|
||||
#: nano.c:1778
|
||||
#: nano.c:1786
|
||||
#, fuzzy
|
||||
msgid "Justify Complete"
|
||||
msgstr "Tasaa"
|
||||
|
||||
#: nano.c:1846
|
||||
#: nano.c:1854
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1858
|
||||
#: nano.c:1866
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1859
|
||||
#: nano.c:1867
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2089
|
||||
#: nano.c:2097
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Päätila: ikkunoiden asettelu\n"
|
||||
|
||||
#: nano.c:2102
|
||||
#: nano.c:2110
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Päätila: alaikkuna\n"
|
||||
|
||||
#: nano.c:2108
|
||||
#: nano.c:2116
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Päätila: avaa tiedosto\n"
|
||||
|
||||
#: nano.c:2142
|
||||
#: nano.c:2150
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2164
|
||||
#: nano.c:2172
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2197
|
||||
#: nano.c:2205
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2245
|
||||
#: nano.c:2253
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2271
|
||||
#: nano.c:2279
|
||||
#, c-format
|
||||
msgid "I got 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"
|
||||
msgstr "actual_x_from_start parametrilla xplus=%d palautti %d\n"
|
||||
|
||||
#: winio.c:421
|
||||
#: winio.c:425
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "syöte '%c' (%d)\n"
|
||||
|
||||
#: winio.c:459
|
||||
#: winio.c:463
|
||||
msgid "New Buffer"
|
||||
msgstr "Uusi teksti"
|
||||
|
||||
#: winio.c:462
|
||||
#: winio.c:466
|
||||
msgid " File: ..."
|
||||
msgstr " Tiedosto: ..."
|
||||
|
||||
#: winio.c:470
|
||||
#: winio.c:474
|
||||
msgid "Modified"
|
||||
msgstr "Muokattu"
|
||||
|
||||
#: winio.c:922
|
||||
#: winio.c:926
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n"
|
||||
|
||||
#: winio.c:933
|
||||
#: winio.c:937
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:978
|
||||
#: winio.c:982
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Saatiin \"%s\"\n"
|
||||
|
||||
#: winio.c:1003
|
||||
#: winio.c:1007
|
||||
msgid "Yes"
|
||||
msgstr "Kyllä"
|
||||
|
||||
#: winio.c:1005
|
||||
#: winio.c:1009
|
||||
msgid "All"
|
||||
msgstr "Kaikki"
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1011
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
|
||||
#: winio.c:1144
|
||||
#: winio.c:1148
|
||||
#, c-format
|
||||
msgid "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%%)"
|
||||
msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)"
|
||||
|
||||
#: winio.c:1276
|
||||
#: winio.c:1280
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Syötetään tiedosto stderriin...\n"
|
||||
|
||||
#: winio.c:1278
|
||||
#: winio.c:1282
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Syötetään leiketila stderriin...\n"
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1284
|
||||
msgid "Dumping a buffer to stderr...\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\""
|
||||
#~ msgstr "Oikoluinta \"%s\" ei voitu käynnistää"
|
||||
|
||||
|
|
91
po/fr.po
91
po/fr.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Clement Laforet <sheep.killer@free.fr>\n"
|
||||
"Language-Team: French <LL@li.org>\n"
|
||||
|
@ -58,7 +58,7 @@ msgstr "Lecture du fichier"
|
|||
msgid "File to insert [from ./] "
|
||||
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"
|
||||
msgstr "Annulé"
|
||||
|
||||
|
@ -110,7 +110,7 @@ msgstr "Le nom du fichier est %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Fichier existant, écrire par-dessus ?"
|
||||
|
||||
#: files.c:741
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -395,7 +395,7 @@ msgid "Case Sens"
|
|||
msgstr "Casse respectée"
|
||||
|
||||
#: 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"
|
||||
msgstr "Annuler"
|
||||
|
||||
|
@ -675,106 +675,102 @@ msgstr "current->data vaut maintenant \"%s\"\n"
|
|||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Après, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1062
|
||||
msgid "Error deleting tempfile, ack!"
|
||||
msgstr "Erreur lors de l'effacement du fichier temporaire, zut!"
|
||||
|
||||
#: nano.c:1106
|
||||
#: nano.c:1093
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1292
|
||||
#: nano.c:1304
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Impossible de créer un nom de fichier temporaire: %s"
|
||||
|
||||
#: nano.c:1312
|
||||
#: nano.c:1320
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Vérification orthographique terminée"
|
||||
|
||||
#: nano.c:1314
|
||||
#: nano.c:1322
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1334
|
||||
#: nano.c:1342
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Sauver le buffer modifié (RÉPONDRE \"No\" EFFACERA LES CHANGEMENTS"
|
||||
|
||||
#: nano.c:1497
|
||||
#: nano.c:1505
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Impossible de redimensionner la fenêtre du haut"
|
||||
|
||||
#: nano.c:1499
|
||||
#: nano.c:1507
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Impossible de bouger la fenêtre du haut"
|
||||
|
||||
#: nano.c:1501
|
||||
#: nano.c:1509
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Impossible de redimensionner la fenêtre d'édition"
|
||||
|
||||
#: nano.c:1503
|
||||
#: nano.c:1511
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Impossible de bouger la fenêtre d'édition"
|
||||
|
||||
#: nano.c:1505
|
||||
#: nano.c:1513
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Impossible de redimensionner la fenêtre du bas"
|
||||
|
||||
#: nano.c:1507
|
||||
#: nano.c:1515
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Impossible de bouger la fenêtre du bas"
|
||||
|
||||
#: nano.c:1778
|
||||
#: nano.c:1786
|
||||
#, fuzzy
|
||||
msgid "Justify Complete"
|
||||
msgstr "Justifier"
|
||||
|
||||
#: nano.c:1846
|
||||
#: nano.c:1854
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1858
|
||||
#: nano.c:1866
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1859
|
||||
#: nano.c:1867
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2089
|
||||
#: nano.c:2097
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configuration des fenêtres\n"
|
||||
|
||||
#: nano.c:2102
|
||||
#: nano.c:2110
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: fenêtre du bas\n"
|
||||
|
||||
#: nano.c:2108
|
||||
#: nano.c:2116
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: ouvrir fichier\n"
|
||||
|
||||
#: nano.c:2142
|
||||
#: nano.c:2150
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2164
|
||||
#: nano.c:2172
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2197
|
||||
#: nano.c:2205
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2245
|
||||
#: nano.c:2253
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2271
|
||||
#: nano.c:2279
|
||||
#, c-format
|
||||
msgid "I got 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"
|
||||
msgstr "actual_x renvoyé pour xplus=%d\n"
|
||||
|
||||
#: winio.c:421
|
||||
#: winio.c:425
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "taper '%c' (%d)\n"
|
||||
|
||||
#: winio.c:459
|
||||
#: winio.c:463
|
||||
msgid "New Buffer"
|
||||
msgstr "Nouveau buffer"
|
||||
|
||||
#: winio.c:462
|
||||
#: winio.c:466
|
||||
msgid " File: ..."
|
||||
msgstr " Fichier: ..."
|
||||
|
||||
#: winio.c:470
|
||||
#: winio.c:474
|
||||
msgid "Modified"
|
||||
msgstr "Modifié"
|
||||
|
||||
#: winio.c:922
|
||||
#: winio.c:926
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Déplacement jusqu'à (%d, %d) dans le buffer d'édition\n"
|
||||
|
||||
#: winio.c:933
|
||||
#: winio.c:937
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:978
|
||||
#: winio.c:982
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "J'ai reçu \"%s\"\n"
|
||||
|
||||
#: winio.c:1003
|
||||
#: winio.c:1007
|
||||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
#: winio.c:1005
|
||||
#: winio.c:1009
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1011
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
#: winio.c:1144
|
||||
#: winio.c:1148
|
||||
#, c-format
|
||||
msgid "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%%)"
|
||||
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"
|
||||
msgstr "Envoi du buffer fichier sur stderr...\n"
|
||||
|
||||
#: winio.c:1278
|
||||
#: winio.c:1282
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Envoi du cutbuffer sur stderr...\n"
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1284
|
||||
msgid "Dumping a buffer to 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\""
|
||||
#~ msgstr "Impossible d'invoquer le programme spell \"%s\""
|
||||
|
||||
|
|
91
po/id.po
91
po/id.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
|
||||
"Language-Team: Indonesian <id@li.org>\n"
|
||||
|
@ -55,7 +55,7 @@ msgstr "Membaca File"
|
|||
msgid "File to insert [from ./] "
|
||||
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"
|
||||
msgstr "Dibatalkan"
|
||||
|
||||
|
@ -107,7 +107,7 @@ msgstr "Namafile adalah %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "File ada, DITIMPA ?"
|
||||
|
||||
#: files.c:741
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -387,7 +387,7 @@ msgid "Case Sens"
|
|||
msgstr "Case Sens"
|
||||
|
||||
#: 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"
|
||||
msgstr "Batal"
|
||||
|
||||
|
@ -653,106 +653,102 @@ msgstr "current->data sekarang =\"%s\"\n"
|
|||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Setelah, data= \"%s\"\n"
|
||||
|
||||
#: nano.c:1062
|
||||
msgid "Error deleting tempfile, ack!"
|
||||
msgstr "Kesalahan menghapus tempfile, ack!"
|
||||
|
||||
#: nano.c:1106
|
||||
#: nano.c:1093
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1292
|
||||
#: nano.c:1304
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Tidak dapat membuat nama file sementara: %s"
|
||||
|
||||
#: nano.c:1312
|
||||
#: nano.c:1320
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Selesai memeriksa ejaan"
|
||||
|
||||
#: nano.c:1314
|
||||
#: nano.c:1322
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1334
|
||||
#: nano.c:1342
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?"
|
||||
|
||||
#: nano.c:1497
|
||||
#: nano.c:1505
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Tidak dapat menganti ukuran jendela atas"
|
||||
|
||||
#: nano.c:1499
|
||||
#: nano.c:1507
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Tidak dapat memindahkan jendela atas"
|
||||
|
||||
#: nano.c:1501
|
||||
#: nano.c:1509
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Tidak dapat mengganti ukuran jendela edit"
|
||||
|
||||
#: nano.c:1503
|
||||
#: nano.c:1511
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Tidak dapat memindah jendela edit"
|
||||
|
||||
#: nano.c:1505
|
||||
#: nano.c:1513
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Tidak dapat mengganti ukuran jendela bawah"
|
||||
|
||||
#: nano.c:1507
|
||||
#: nano.c:1515
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Tidak dapat memindah jendela bawah"
|
||||
|
||||
#: nano.c:1778
|
||||
#: nano.c:1786
|
||||
#, fuzzy
|
||||
msgid "Justify Complete"
|
||||
msgstr "Justifikasi"
|
||||
|
||||
#: nano.c:1846
|
||||
#: nano.c:1854
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1858
|
||||
#: nano.c:1866
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1859
|
||||
#: nano.c:1867
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2089
|
||||
#: nano.c:2097
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: menset jendela\n"
|
||||
|
||||
#: nano.c:2102
|
||||
#: nano.c:2110
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: jendela bawah\n"
|
||||
|
||||
#: nano.c:2108
|
||||
#: nano.c:2116
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: membuka file\n"
|
||||
|
||||
#: nano.c:2142
|
||||
#: nano.c:2150
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2164
|
||||
#: nano.c:2172
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2197
|
||||
#: nano.c:2205
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2245
|
||||
#: nano.c:2253
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2271
|
||||
#: nano.c:2279
|
||||
#, c-format
|
||||
msgid "I got 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"
|
||||
msgstr "actual_x untuk xplus=%d mengembalikan %d\n"
|
||||
|
||||
#: winio.c:421
|
||||
#: winio.c:425
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "input '%c' (%d)\n"
|
||||
|
||||
#: winio.c:459
|
||||
#: winio.c:463
|
||||
msgid "New Buffer"
|
||||
msgstr "Buffer baru"
|
||||
|
||||
#: winio.c:462
|
||||
#: winio.c:466
|
||||
msgid " File: ..."
|
||||
msgstr " File: ..."
|
||||
|
||||
#: winio.c:470
|
||||
#: winio.c:474
|
||||
msgid "Modified"
|
||||
msgstr "Dimodifikasi"
|
||||
|
||||
#: winio.c:922
|
||||
#: winio.c:926
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Pindah ke (%d, %d) dalam buffer edit\n"
|
||||
|
||||
#: winio.c:933
|
||||
#: winio.c:937
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:978
|
||||
#: winio.c:982
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Saya mendapat \"%s\"\n"
|
||||
|
||||
#: winio.c:1003
|
||||
#: winio.c:1007
|
||||
msgid "Yes"
|
||||
msgstr "Ya"
|
||||
|
||||
#: winio.c:1005
|
||||
#: winio.c:1009
|
||||
msgid "All"
|
||||
msgstr "Semua"
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1011
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
|
||||
#: winio.c:1144
|
||||
#: winio.c:1148
|
||||
#, c-format
|
||||
msgid "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%%)"
|
||||
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"
|
||||
msgstr "Kirim buffer file ke stderr...\n"
|
||||
|
||||
#: winio.c:1278
|
||||
#: winio.c:1282
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Kirim cutbuffer ke stderr...\n"
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1284
|
||||
msgid "Dumping a buffer to 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\""
|
||||
#~ msgstr "Tidak dapat memanggil program ejaan \"%s\""
|
||||
|
||||
|
|
88
po/it.po
88
po/it.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Daniele Medri <madrid@linux.it>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -55,7 +55,7 @@ msgstr "Lettura file"
|
|||
msgid "File to insert [from ./] "
|
||||
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"
|
||||
msgstr "Cancellato"
|
||||
|
||||
|
@ -107,7 +107,7 @@ msgstr "Il nome file
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "File esistente, SOVRASCRIVERE?"
|
||||
|
||||
#: files.c:741
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -387,7 +387,7 @@ msgid "Case Sens"
|
|||
msgstr "Case sens"
|
||||
|
||||
#: 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"
|
||||
msgstr "Cancella"
|
||||
|
||||
|
@ -638,108 +638,104 @@ msgstr "current->data ora = \"%d\"\n"
|
|||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Dopo, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1062
|
||||
msgid "Error deleting tempfile, ack!"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1106
|
||||
#: nano.c:1093
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1292
|
||||
#: nano.c:1304
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Impossibile creare un nome file temporaneo: %s"
|
||||
|
||||
#: nano.c:1312
|
||||
#: nano.c:1320
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Controllo ortografico terminato"
|
||||
|
||||
#: nano.c:1314
|
||||
#: nano.c:1322
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1334
|
||||
#: nano.c:1342
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr ""
|
||||
"Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI "
|
||||
"AVVENUTI) ?"
|
||||
|
||||
#: nano.c:1497
|
||||
#: nano.c:1505
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Impossibile ridimensionare la finestra superiore"
|
||||
|
||||
#: nano.c:1499
|
||||
#: nano.c:1507
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Impossibile spostare la finestra superiore"
|
||||
|
||||
#: nano.c:1501
|
||||
#: nano.c:1509
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Impossibile ridimensionare la finestra di modifica"
|
||||
|
||||
#: nano.c:1503
|
||||
#: nano.c:1511
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Impossibile spostare finestra di modifica"
|
||||
|
||||
#: nano.c:1505
|
||||
#: nano.c:1513
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Impossibile ridimensionare la finestra inferiore"
|
||||
|
||||
#: nano.c:1507
|
||||
#: nano.c:1515
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Impossibile spostare la finestra inferiore"
|
||||
|
||||
#: nano.c:1778
|
||||
#: nano.c:1786
|
||||
#, fuzzy
|
||||
msgid "Justify Complete"
|
||||
msgstr "Giustifica"
|
||||
|
||||
#: nano.c:1846
|
||||
#: nano.c:1854
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1858
|
||||
#: nano.c:1866
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1859
|
||||
#: nano.c:1867
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2089
|
||||
#: nano.c:2097
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configura finestre\n"
|
||||
|
||||
#: nano.c:2102
|
||||
#: nano.c:2110
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: finestra inferiore\n"
|
||||
|
||||
#: nano.c:2108
|
||||
#: nano.c:2116
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: apri file\n"
|
||||
|
||||
#: nano.c:2142
|
||||
#: nano.c:2150
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2164
|
||||
#: nano.c:2172
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2197
|
||||
#: nano.c:2205
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2245
|
||||
#: nano.c:2253
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2271
|
||||
#: nano.c:2279
|
||||
#, c-format
|
||||
msgid "I got 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"
|
||||
msgstr "actual_x per xplus=%d ha riportato %d\n"
|
||||
|
||||
#: winio.c:421
|
||||
#: winio.c:425
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "input '%c' (%d)\n"
|
||||
|
||||
#: winio.c:459
|
||||
#: winio.c:463
|
||||
msgid "New Buffer"
|
||||
msgstr "Nuovo Buffer"
|
||||
|
||||
#: winio.c:462
|
||||
#: winio.c:466
|
||||
msgid " File: ..."
|
||||
msgstr "File: ..."
|
||||
|
||||
#: winio.c:470
|
||||
#: winio.c:474
|
||||
msgid "Modified"
|
||||
msgstr "Modificato"
|
||||
|
||||
#: winio.c:922
|
||||
#: winio.c:926
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Mosso in (%d, %d) nel buffer di modifica\n"
|
||||
|
||||
#: winio.c:933
|
||||
#: winio.c:937
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:978
|
||||
#: winio.c:982
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Premuto \"%s\"\n"
|
||||
|
||||
#: winio.c:1003
|
||||
#: winio.c:1007
|
||||
msgid "Yes"
|
||||
msgstr " Sì"
|
||||
|
||||
#: winio.c:1005
|
||||
#: winio.c:1009
|
||||
msgid "All"
|
||||
msgstr " Tutti"
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1011
|
||||
msgid "No"
|
||||
msgstr " No"
|
||||
|
||||
#: winio.c:1144
|
||||
#: winio.c:1148
|
||||
#, c-format
|
||||
msgid "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%%)"
|
||||
msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1276
|
||||
#: winio.c:1280
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Copia file buffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1278
|
||||
#: winio.c:1282
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Copia cutbuffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1284
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Copia un buffer sullo stderr...\n"
|
||||
|
||||
|
|
36
po/nano.pot
36
po/nano.pot
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -107,7 +107,7 @@ msgstr ""
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr ""
|
||||
|
||||
#: files.c:801
|
||||
#: files.c:803
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -384,7 +384,7 @@ msgid "Case Sens"
|
|||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,67 +817,67 @@ msgstr ""
|
|||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:425
|
||||
#: winio.c:424
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:463
|
||||
#: winio.c:462
|
||||
msgid "New Buffer"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:466
|
||||
#: winio.c:465
|
||||
msgid " File: ..."
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:474
|
||||
#: winio.c:473
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:926
|
||||
#: winio.c:925
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:937
|
||||
#: winio.c:936
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:982
|
||||
#: winio.c:981
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1007
|
||||
#: winio.c:1006
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1008
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1010
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1148
|
||||
#: winio.c:1147
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1152
|
||||
#: winio.c:1151
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1280
|
||||
#: winio.c:1279
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1282
|
||||
#: winio.c:1281
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1283
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue