mirror of git://git.sv.gnu.org/nano.git
comment out username completino code with macros since unimplemented, fix -Wall warnings on Irix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@290 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
6e8ed7128e
commit
63a89d386b
8
files.c
8
files.c
|
@ -517,6 +517,7 @@ int do_writeout_void(void)
|
|||
* This code may safely be consumed by a BSD or GPL license.
|
||||
*/
|
||||
|
||||
#if 0
|
||||
char **username_tab_completion(char *buf, int *num_matches)
|
||||
{
|
||||
char **matches = (char **) NULL;
|
||||
|
@ -526,6 +527,7 @@ char **username_tab_completion(char *buf, int *num_matches)
|
|||
#endif
|
||||
return (matches);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* This was originally called exe_n_cwd_tab_completion, but we're not
|
||||
worried about executables, only filenames :> */
|
||||
|
@ -542,10 +544,6 @@ char **cwd_tab_completion(char *buf, int *num_matches)
|
|||
/* Stick a wildcard onto the buf, for later use */
|
||||
strcat(buf, "*");
|
||||
|
||||
/* Now wall the current directory */
|
||||
/* 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);
|
||||
|
@ -635,7 +633,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
|
|||
tmp = matchBuf;
|
||||
|
||||
/* skip any leading white space */
|
||||
while (*tmp && isspace(*tmp))
|
||||
while (*tmp && isspace((int) *tmp))
|
||||
++tmp;
|
||||
|
||||
/* Free up any memory already allocated */
|
||||
|
|
53
po/de.po
53
po/de.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano 0.9.17\n"
|
||||
"POT-Creation-Date: 2000-11-16 01:02-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:47-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"
|
||||
|
@ -108,7 +108,7 @@ msgstr "Dateiname ist %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Datei exisitiert, ÜBERSCHREIBEN ?"
|
||||
|
||||
#: files.c:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -129,7 +129,8 @@ msgid "Help mode"
|
|||
msgstr "Hilfe-Modus"
|
||||
|
||||
#: global.c:128
|
||||
msgid "Pico messages"
|
||||
#, fuzzy
|
||||
msgid "Pico mode"
|
||||
msgstr "Pico Meldungen"
|
||||
|
||||
#: global.c:129
|
||||
|
@ -386,7 +387,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:1014
|
||||
#: global.c:405 global.c:411 winio.c:1020
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
|
@ -508,8 +509,8 @@ msgstr ""
|
|||
"#Spalten\n"
|
||||
|
||||
#: nano.c:367
|
||||
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p\t \t--pico\t\t\tErscheinungsbild von Pico stärker imitieren\n"
|
||||
msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:369
|
||||
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
|
||||
|
@ -599,8 +600,8 @@ msgid " -s [prog] \tEnable alternate speller\n"
|
|||
msgstr " -s [Programm] \tAlternative Rechtschreibprüfung\n"
|
||||
|
||||
#: nano.c:404
|
||||
msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p \t\tErscheinungsbild von Pico stärker imitieren\n"
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:405
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
|
@ -849,71 +850,77 @@ 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:427
|
||||
#: winio.c:433
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "Eingabe '%c' (%d)\n"
|
||||
|
||||
#: winio.c:465
|
||||
#: winio.c:471
|
||||
msgid "New Buffer"
|
||||
msgstr "Neuer Puffer"
|
||||
|
||||
#: winio.c:468
|
||||
#: winio.c:474
|
||||
msgid " File: ..."
|
||||
msgstr " Datei: ..."
|
||||
|
||||
#: winio.c:476
|
||||
#: winio.c:482
|
||||
msgid "Modified"
|
||||
msgstr "Verändert"
|
||||
|
||||
#: winio.c:928
|
||||
#: winio.c:934
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n"
|
||||
|
||||
#: winio.c:939
|
||||
#: winio.c:945
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:984
|
||||
#: winio.c:990
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Erhielt \"%s\"\n"
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1015
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1017
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: winio.c:1013
|
||||
#: winio.c:1019
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: winio.c:1150
|
||||
#: winio.c:1156
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1154
|
||||
#: winio.c:1160
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1282
|
||||
#: winio.c:1288
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Gebe Datei Puffer nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1290
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1286
|
||||
#: winio.c:1292
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Gebe einen Puffer nach stderr aus...\n"
|
||||
|
||||
#~ msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p\t \t--pico\t\t\tErscheinungsbild von Pico stärker imitieren\n"
|
||||
|
||||
#~ msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p \t\tErscheinungsbild von Pico stärker imitieren\n"
|
||||
|
||||
#~ msgid "Error deleting tempfile, ack!"
|
||||
#~ msgstr "Konnte temporäre Datei nicht löschen"
|
||||
|
||||
|
|
53
po/es.po
53
po/es.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.9.19+CVS\n"
|
||||
"POT-Creation-Date: 2000-11-16 01:02-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:47-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"
|
||||
|
@ -108,7 +108,7 @@ msgstr "filename es %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "El fichero existe, SOBREESCRIBIR ?"
|
||||
|
||||
#: files.c:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -129,7 +129,8 @@ msgid "Help mode"
|
|||
msgstr "Modo ayuda"
|
||||
|
||||
#: global.c:128
|
||||
msgid "Pico messages"
|
||||
#, fuzzy
|
||||
msgid "Pico mode"
|
||||
msgstr "Mensajes de Pico"
|
||||
|
||||
#: global.c:129
|
||||
|
@ -385,7 +386,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:1014
|
||||
#: global.c:405 global.c:411 winio.c:1020
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
|
@ -506,8 +507,8 @@ msgid ""
|
|||
msgstr " -r [#cols] \t--fill=[#cols]\t\tRellenar columnas (wrapear en) #cols\n"
|
||||
|
||||
#: nano.c:367
|
||||
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p\t \t--pico\t\t\tHacer el menú más parecido a Pico\n"
|
||||
msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:369
|
||||
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
|
||||
|
@ -594,8 +595,8 @@ msgid " -s [prog] \tEnable alternate speller\n"
|
|||
msgstr " -s [prog] \tHabilitar corrector alternativo\n"
|
||||
|
||||
#: nano.c:404
|
||||
msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p \t\tHacer el menú más parecido a Pico\n"
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:405
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
|
@ -843,71 +844,77 @@ 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:427
|
||||
#: winio.c:433
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "entrada '%c' (%d)\n"
|
||||
|
||||
#: winio.c:465
|
||||
#: winio.c:471
|
||||
msgid "New Buffer"
|
||||
msgstr "Nuevo Buffer"
|
||||
|
||||
#: winio.c:468
|
||||
#: winio.c:474
|
||||
msgid " File: ..."
|
||||
msgstr "Fichero: ..."
|
||||
|
||||
#: winio.c:476
|
||||
#: winio.c:482
|
||||
msgid "Modified"
|
||||
msgstr "Modificado"
|
||||
|
||||
#: winio.c:928
|
||||
#: winio.c:934
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Moviendo a (%d, %d) en buffer de edición\n"
|
||||
|
||||
#: winio.c:939
|
||||
#: winio.c:945
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:984
|
||||
#: winio.c:990
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Pillé \"%s\"\n"
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1015
|
||||
msgid "Yes"
|
||||
msgstr "Sí"
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1017
|
||||
msgid "All"
|
||||
msgstr "Todas"
|
||||
|
||||
#: winio.c:1013
|
||||
#: winio.c:1019
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: winio.c:1150
|
||||
#: winio.c:1156
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1154
|
||||
#: winio.c:1160
|
||||
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:1282
|
||||
#: winio.c:1288
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Volcando buffer de fichero a stderr...\n"
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1290
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Volcando el cutbuffer a stderr...\n"
|
||||
|
||||
#: winio.c:1286
|
||||
#: winio.c:1292
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Volcando un buffer a stderr...\n"
|
||||
|
||||
#~ msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p\t \t--pico\t\t\tHacer el menú más parecido a Pico\n"
|
||||
|
||||
#~ msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p \t\tHacer el menú más parecido a Pico\n"
|
||||
|
||||
#~ msgid "Error deleting tempfile, ack!"
|
||||
#~ msgstr "Error borrando el fichero temporal, ouch!"
|
||||
|
||||
|
|
52
po/fi.po
52
po/fi.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano 0.9.11\n"
|
||||
"POT-Creation-Date: 2000-11-16 01:02-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:47-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"
|
||||
|
@ -107,7 +107,7 @@ msgstr "tiedoston nimi on %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Tiedosto on jo olemassa, korvataanko?"
|
||||
|
||||
#: files.c:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -130,7 +130,7 @@ msgid "Help mode"
|
|||
msgstr ""
|
||||
|
||||
#: global.c:128
|
||||
msgid "Pico messages"
|
||||
msgid "Pico mode"
|
||||
msgstr ""
|
||||
|
||||
#: global.c:129
|
||||
|
@ -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:1014
|
||||
#: global.c:405 global.c:411 winio.c:1020
|
||||
msgid "Cancel"
|
||||
msgstr "Peru"
|
||||
|
||||
|
@ -505,8 +505,8 @@ msgid ""
|
|||
msgstr " -r [#lkm] \t--fill=[#lkm]\t\tRivitä annettua pidemmät rivit\n"
|
||||
|
||||
#: nano.c:367
|
||||
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p\t \t--pico\t\t\tNäytä 2 alinta riviä kuin Pico\n"
|
||||
msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:369
|
||||
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
|
||||
|
@ -595,8 +595,8 @@ msgid " -s [prog] \tEnable alternate speller\n"
|
|||
msgstr " -s [ohjelma] \tKäytä annettua oikolukuohjelmaa\n"
|
||||
|
||||
#: nano.c:404
|
||||
msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p \t\tNäytä 2 alinta riviä kuin Pico\n"
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:405
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
|
@ -845,71 +845,77 @@ 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:427
|
||||
#: winio.c:433
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "syöte '%c' (%d)\n"
|
||||
|
||||
#: winio.c:465
|
||||
#: winio.c:471
|
||||
msgid "New Buffer"
|
||||
msgstr "Uusi teksti"
|
||||
|
||||
#: winio.c:468
|
||||
#: winio.c:474
|
||||
msgid " File: ..."
|
||||
msgstr " Tiedosto: ..."
|
||||
|
||||
#: winio.c:476
|
||||
#: winio.c:482
|
||||
msgid "Modified"
|
||||
msgstr "Muokattu"
|
||||
|
||||
#: winio.c:928
|
||||
#: winio.c:934
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n"
|
||||
|
||||
#: winio.c:939
|
||||
#: winio.c:945
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:984
|
||||
#: winio.c:990
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Saatiin \"%s\"\n"
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1015
|
||||
msgid "Yes"
|
||||
msgstr "Kyllä"
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1017
|
||||
msgid "All"
|
||||
msgstr "Kaikki"
|
||||
|
||||
#: winio.c:1013
|
||||
#: winio.c:1019
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
|
||||
#: winio.c:1150
|
||||
#: winio.c:1156
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1154
|
||||
#: winio.c:1160
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)"
|
||||
|
||||
#: winio.c:1282
|
||||
#: winio.c:1288
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Syötetään tiedosto stderriin...\n"
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1290
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Syötetään leiketila stderriin...\n"
|
||||
|
||||
#: winio.c:1286
|
||||
#: winio.c:1292
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Syötetään teksti stderriin...\n"
|
||||
|
||||
#~ msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p\t \t--pico\t\t\tNäytä 2 alinta riviä kuin Pico\n"
|
||||
|
||||
#~ msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p \t\tNäytä 2 alinta riviä kuin Pico\n"
|
||||
|
||||
#~ msgid "Error deleting tempfile, ack!"
|
||||
#~ msgstr "Väliaikaistiedostoa poistettaessa tapahtui virhe."
|
||||
|
||||
|
|
52
po/fr.po
52
po/fr.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.8.9\n"
|
||||
"POT-Creation-Date: 2000-11-16 01:02-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:47-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"
|
||||
|
@ -110,7 +110,7 @@ msgstr "Le nom du fichier est %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Fichier existant, écrire par-dessus ?"
|
||||
|
||||
#: files.c:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -133,7 +133,7 @@ msgid "Help mode"
|
|||
msgstr ""
|
||||
|
||||
#: global.c:128
|
||||
msgid "Pico messages"
|
||||
msgid "Pico mode"
|
||||
msgstr ""
|
||||
|
||||
#: global.c:129
|
||||
|
@ -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:1014
|
||||
#: global.c:405 global.c:411 winio.c:1020
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
|
@ -521,9 +521,8 @@ msgstr ""
|
|||
"les lignes à) #cols\n"
|
||||
|
||||
#: nano.c:367
|
||||
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
" -p\t \t--pico\t\t\tRendre les deux lignes du bas plus semblables à Pico\n"
|
||||
|
||||
#: nano.c:369
|
||||
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
|
||||
|
@ -615,8 +614,8 @@ msgid " -s [prog] \tEnable alternate speller\n"
|
|||
msgstr " -s [prog] \tActiver un vérificateur orthographique alternatif\n"
|
||||
|
||||
#: nano.c:404
|
||||
msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p \t\tRendre les 2 lignes du bas plus semblables à Pico\n"
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:405
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
|
@ -866,71 +865,78 @@ 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:427
|
||||
#: winio.c:433
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "taper '%c' (%d)\n"
|
||||
|
||||
#: winio.c:465
|
||||
#: winio.c:471
|
||||
msgid "New Buffer"
|
||||
msgstr "Nouveau buffer"
|
||||
|
||||
#: winio.c:468
|
||||
#: winio.c:474
|
||||
msgid " File: ..."
|
||||
msgstr " Fichier: ..."
|
||||
|
||||
#: winio.c:476
|
||||
#: winio.c:482
|
||||
msgid "Modified"
|
||||
msgstr "Modifié"
|
||||
|
||||
#: winio.c:928
|
||||
#: winio.c:934
|
||||
#, 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:939
|
||||
#: winio.c:945
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:984
|
||||
#: winio.c:990
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "J'ai reçu \"%s\"\n"
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1015
|
||||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1017
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
#: winio.c:1013
|
||||
#: winio.c:1019
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
#: winio.c:1150
|
||||
#: winio.c:1156
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1154
|
||||
#: winio.c:1160
|
||||
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:1282
|
||||
#: winio.c:1288
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Envoi du buffer fichier sur stderr...\n"
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1290
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Envoi du cutbuffer sur stderr...\n"
|
||||
|
||||
#: winio.c:1286
|
||||
#: winio.c:1292
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Envoi d'un buffer sur stderr...\n"
|
||||
|
||||
#~ msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr ""
|
||||
#~ " -p\t \t--pico\t\t\tRendre les deux lignes du bas plus semblables à Pico\n"
|
||||
|
||||
#~ msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p \t\tRendre les 2 lignes du bas plus semblables à Pico\n"
|
||||
|
||||
#~ msgid "Error deleting tempfile, ack!"
|
||||
#~ msgstr "Erreur lors de l'effacement du fichier temporaire, zut!"
|
||||
|
||||
|
|
52
po/id.po
52
po/id.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano-0.9.10\n"
|
||||
"POT-Creation-Date: 2000-11-16 01:02-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:47-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"
|
||||
|
@ -107,7 +107,7 @@ msgstr "Namafile adalah %s"
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "File ada, DITIMPA ?"
|
||||
|
||||
#: files.c:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -130,7 +130,7 @@ msgid "Help mode"
|
|||
msgstr ""
|
||||
|
||||
#: global.c:128
|
||||
msgid "Pico messages"
|
||||
msgid "Pico mode"
|
||||
msgstr ""
|
||||
|
||||
#: global.c:129
|
||||
|
@ -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:1014
|
||||
#: global.c:405 global.c:411 winio.c:1020
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
|
@ -505,8 +505,8 @@ msgid ""
|
|||
msgstr "-r [#cols] --fill=[#cols] Set fill col ke (wrap line di) #cols\n"
|
||||
|
||||
#: nano.c:367
|
||||
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr "-p --pico Buat dua baris terbawah seperti Pico\n"
|
||||
msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:369
|
||||
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
|
||||
|
@ -594,8 +594,8 @@ msgid " -s [prog] \tEnable alternate speller\n"
|
|||
msgstr "-s [prog] Aktifkan speller alternatif\n"
|
||||
|
||||
#: nano.c:404
|
||||
msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr "-p Buat dua baris terbawah seperti Pico\n"
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:405
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
|
@ -844,71 +844,77 @@ 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:427
|
||||
#: winio.c:433
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "input '%c' (%d)\n"
|
||||
|
||||
#: winio.c:465
|
||||
#: winio.c:471
|
||||
msgid "New Buffer"
|
||||
msgstr "Buffer baru"
|
||||
|
||||
#: winio.c:468
|
||||
#: winio.c:474
|
||||
msgid " File: ..."
|
||||
msgstr " File: ..."
|
||||
|
||||
#: winio.c:476
|
||||
#: winio.c:482
|
||||
msgid "Modified"
|
||||
msgstr "Dimodifikasi"
|
||||
|
||||
#: winio.c:928
|
||||
#: winio.c:934
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Pindah ke (%d, %d) dalam buffer edit\n"
|
||||
|
||||
#: winio.c:939
|
||||
#: winio.c:945
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:984
|
||||
#: winio.c:990
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Saya mendapat \"%s\"\n"
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1015
|
||||
msgid "Yes"
|
||||
msgstr "Ya"
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1017
|
||||
msgid "All"
|
||||
msgstr "Semua"
|
||||
|
||||
#: winio.c:1013
|
||||
#: winio.c:1019
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
|
||||
#: winio.c:1150
|
||||
#: winio.c:1156
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1154
|
||||
#: winio.c:1160
|
||||
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:1282
|
||||
#: winio.c:1288
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Kirim buffer file ke stderr...\n"
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1290
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Kirim cutbuffer ke stderr...\n"
|
||||
|
||||
#: winio.c:1286
|
||||
#: winio.c:1292
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Kirim buffer ke stderr...\n"
|
||||
|
||||
#~ msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr "-p --pico Buat dua baris terbawah seperti Pico\n"
|
||||
|
||||
#~ msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr "-p Buat dua baris terbawah seperti Pico\n"
|
||||
|
||||
#~ msgid "Error deleting tempfile, ack!"
|
||||
#~ msgstr "Kesalahan menghapus tempfile, ack!"
|
||||
|
||||
|
|
52
po/it.po
52
po/it.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.8.7\n"
|
||||
"POT-Creation-Date: 2000-11-16 01:02-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:47-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"
|
||||
|
@ -107,7 +107,7 @@ msgstr "Il nome file
|
|||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "File esistente, SOVRASCRIVERE?"
|
||||
|
||||
#: files.c:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -131,7 +131,7 @@ msgid "Help mode"
|
|||
msgstr ""
|
||||
|
||||
#: global.c:128
|
||||
msgid "Pico messages"
|
||||
msgid "Pico mode"
|
||||
msgstr ""
|
||||
|
||||
#: global.c:129
|
||||
|
@ -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:1014
|
||||
#: global.c:405 global.c:411 winio.c:1020
|
||||
msgid "Cancel"
|
||||
msgstr "Cancella"
|
||||
|
||||
|
@ -490,8 +490,8 @@ msgid ""
|
|||
msgstr " -r [#cols] \t--fill=[#cols]\t\tConfigura riempimento colonne\n"
|
||||
|
||||
#: nano.c:367
|
||||
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p\t \t--pico\t\t\tCrea in basso 2 linee come l'aspetto di Pico\n"
|
||||
msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:369
|
||||
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
|
||||
|
@ -579,8 +579,8 @@ msgid " -s [prog] \tEnable alternate speller\n"
|
|||
msgstr " -s [prog] \tAttiva correttore alternativo\n"
|
||||
|
||||
#: nano.c:404
|
||||
msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
msgstr " -p \t\tCrea in basso 2 linee sullo stile di Pico\n"
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:405
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
|
@ -831,71 +831,77 @@ 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:427
|
||||
#: winio.c:433
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "input '%c' (%d)\n"
|
||||
|
||||
#: winio.c:465
|
||||
#: winio.c:471
|
||||
msgid "New Buffer"
|
||||
msgstr "Nuovo Buffer"
|
||||
|
||||
#: winio.c:468
|
||||
#: winio.c:474
|
||||
msgid " File: ..."
|
||||
msgstr "File: ..."
|
||||
|
||||
#: winio.c:476
|
||||
#: winio.c:482
|
||||
msgid "Modified"
|
||||
msgstr "Modificato"
|
||||
|
||||
#: winio.c:928
|
||||
#: winio.c:934
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Mosso in (%d, %d) nel buffer di modifica\n"
|
||||
|
||||
#: winio.c:939
|
||||
#: winio.c:945
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:984
|
||||
#: winio.c:990
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Premuto \"%s\"\n"
|
||||
|
||||
#: winio.c:1009
|
||||
#: winio.c:1015
|
||||
msgid "Yes"
|
||||
msgstr " Sì"
|
||||
|
||||
#: winio.c:1011
|
||||
#: winio.c:1017
|
||||
msgid "All"
|
||||
msgstr " Tutti"
|
||||
|
||||
#: winio.c:1013
|
||||
#: winio.c:1019
|
||||
msgid "No"
|
||||
msgstr " No"
|
||||
|
||||
#: winio.c:1150
|
||||
#: winio.c:1156
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1154
|
||||
#: winio.c:1160
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1282
|
||||
#: winio.c:1288
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Copia file buffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1284
|
||||
#: winio.c:1290
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Copia cutbuffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1286
|
||||
#: winio.c:1292
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Copia un buffer sullo stderr...\n"
|
||||
|
||||
#~ msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p\t \t--pico\t\t\tCrea in basso 2 linee come l'aspetto di Pico\n"
|
||||
|
||||
#~ msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
|
||||
#~ msgstr " -p \t\tCrea in basso 2 linee sullo stile di Pico\n"
|
||||
|
||||
#~ msgid "Could not invoke spell program \"%s\""
|
||||
#~ msgstr "Impossibile invocare correttore ortografico \"%s\""
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-11-17 21:22-0500\n"
|
||||
"POT-Creation-Date: 2000-11-17 22:04-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:803
|
||||
#: files.c:801
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
|
|
4
search.c
4
search.c
|
@ -504,11 +504,11 @@ int do_replace_loop(char *prevanswer, filestruct *begin, int *beginx,
|
|||
if (wholewords)
|
||||
{
|
||||
/* start of line or previous character not a letter */
|
||||
if ((current_x == 0) || (!isalpha(fileptr->data[current_x-1])))
|
||||
if ((current_x == 0) || (!isalpha((int) fileptr->data[current_x-1])))
|
||||
{
|
||||
/* end of line or next character not a letter */
|
||||
if (((current_x + strlen(prevanswer)) == strlen(fileptr->data))
|
||||
|| (!isalpha(fileptr->data[current_x + strlen(prevanswer)])))
|
||||
|| (!isalpha((int) fileptr->data[current_x + strlen(prevanswer)])))
|
||||
;
|
||||
else
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue