From 9e7efa3202eb5972688ca123147863c840fe08eb Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Mon, 2 Oct 2000 03:42:55 +0000 Subject: [PATCH] Added (int) casts to remove compile warnings with -Wall git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@233 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 1 + nano.c | 39 ++++++++++++++++++------------------ po/de.gmo | Bin 17230 -> 17230 bytes po/de.po | 44 ++++++++++++++++++++--------------------- po/es.gmo | Bin 17336 -> 17336 bytes po/es.po | 44 ++++++++++++++++++++--------------------- po/fi.gmo | Bin 13633 -> 13633 bytes po/fi.po | 44 ++++++++++++++++++++--------------------- po/fr.gmo | Bin 14056 -> 13934 bytes po/fr.po | 47 ++++++++++++++++++++++--------------------- po/id.gmo | Bin 13284 -> 13284 bytes po/id.po | 44 ++++++++++++++++++++--------------------- po/it.gmo | Bin 13063 -> 13063 bytes po/it.po | 44 ++++++++++++++++++++--------------------- po/nano.pot | 56 ++++++++++++++++++++++++++-------------------------- 15 files changed, 183 insertions(+), 180 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0ae40900..d82faafa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ CVS changes - in main(). - Changed web site and email to new nano-editor.org domain. - nano.c + - Added (int) casts to remove compile warnings with -Wall. main() - Added check for _POSIX_VDISABLE around term variable definition. - search.c diff --git a/nano.c b/nano.c index c417f5fb..264ddb48 100644 --- a/nano.c +++ b/nano.c @@ -617,13 +617,14 @@ void do_wrap(filestruct * inptr, char input_char) assert(strlenpt(inptr->data) > fill); for (i = 0, i_tabs = 0; i < len; i++, i_tabs++) { - if (!isspace(inptr->data[i])) { + if (!isspace((int) inptr->data[i])) { last_word_end = current_word_end; current_word_start = i; current_word_start_t = i_tabs; - while (!isspace(inptr->data[i]) && inptr->data[i]) { + while (!isspace((int) inptr->data[i]) + && inptr->data[i]) { i++; i_tabs++; if (inptr->data[i] < 32) @@ -677,11 +678,11 @@ void do_wrap(filestruct * inptr, char input_char) temp = nmalloc(sizeof(filestruct)); /* Category 1a: one word taking up the whole line with no beginning spaces. */ - if ((last_word_end == -1) && (!isspace(inptr->data[0]))) { + if ((last_word_end == -1) && (!isspace((int) inptr->data[0]))) { for (i = current_word_end; i < len; i++) { - if (!isspace(inptr->data[i]) && i < len) { + if (!isspace((int) inptr->data[i]) && i < len) { current_word_start = i; - while (!isspace(inptr->data[i]) && (i < len)) { + while (!isspace((int) inptr->data[i]) && (i < len)) { i++; } last_word_end = current_word_end; @@ -735,9 +736,9 @@ void do_wrap(filestruct * inptr, char input_char) nmalloc(strlen(&inptr->data[current_word_start]) + 1); strcpy(temp->data, &inptr->data[current_word_start]); - if (!isspace(input_char)) { + if (!isspace((int) input_char)) { i = current_word_start - 1; - while (isspace(inptr->data[i])) { + while (isspace((int) inptr->data[i])) { i--; assert(i >= 0); } @@ -762,13 +763,13 @@ void do_wrap(filestruct * inptr, char input_char) right = current_x - current_word_start; i = current_word_start - 1; - if (isspace(input_char) && (current_x == current_word_start)) { + if (isspace((int)input_char) && (current_x == current_word_start)) { current_x = current_word_start; null_at(inptr->data, current_word_start); } else { - while (isspace(inptr->data[i])) { + while (isspace((int) inptr->data[i])) { i--; assert(i >= 0); } @@ -790,7 +791,7 @@ void do_wrap(filestruct * inptr, char input_char) current_x = current_word_start; i = current_word_start - 1; - while (isspace(inptr->data[i])) { + while (isspace((int) inptr->data[i])) { i--; assert(i >= 0); inptr->data = nrealloc(inptr->data, i + 2); @@ -876,7 +877,7 @@ void check_wrap(filestruct * inptr, char ch) /* Do not wrap if there are no words on or after wrap point. */ int char_found = 0; - while (isspace(inptr->data[i]) && inptr->data[i]) + while (isspace((int)inptr->data[i]) && inptr->data[i]) i++; if (!inptr->data[i]) @@ -884,7 +885,7 @@ void check_wrap(filestruct * inptr, char ch) /* String must be at least 1 character long. */ for (i = strlen(inptr->data) - 1; i >= 0; i--) { - if (isspace(inptr->data[i])) { + if (isspace((int) inptr->data[i])) { if (!char_found) continue; char_found = 2; /* 2 for yes do wrap. */ @@ -1385,7 +1386,7 @@ int do_tab(void) int empty_line(const char *data) { while (*data) { - if (!isspace(*data)) + if (!isspace((int) *data)) return 0; data++; @@ -1397,7 +1398,7 @@ int empty_line(const char *data) int no_spaces(const char *data) { while (*data) { - if (isspace(*data)) + if (isspace((int) *data)) return 0; data++; @@ -1413,7 +1414,7 @@ void justify_format(char *data) /* Skip first character regardless and leading whitespace. */ for (i = 1; i < len; i++) { - if (!isspace(data[i])) + if (!isspace((int) data[i])) break; } @@ -1421,7 +1422,7 @@ void justify_format(char *data) /* No double spaces allowed unless following a period. Tabs -> space. No double tabs. */ for (; i < len; i++) { - if (isspace(data[i]) && isspace(data[i - 1]) + if (isspace((int) data[i]) && isspace((int) data[i - 1]) && (data[i - 2] != '.')) { memmove(data + i, data + i + 1, len - i); len--; @@ -1454,7 +1455,7 @@ int do_justify(void) * or 2) A line following an empty line. */ while (current->prev != NULL) { - if (isspace(current->data[0]) || !current->data[0]) + if (isspace((int) current->data[0]) || !current->data[0]) break; current = current->prev; @@ -1475,7 +1476,7 @@ int do_justify(void) set_modified(); /* Put the whole paragraph into one big line. */ - while (current->next && !isspace(current->next->data[0]) + while (current->next && !isspace((int) current->next->data[0]) && current->next->data[0]) { filestruct *tmpnode = current->next; int len = strlen(current->data); @@ -1514,7 +1515,7 @@ int do_justify(void) else i = slen; for (; i > 0; i--) { - if (isspace(current->data[i]) && + if (isspace((int) current->data[i]) && ((strlenpt(current->data) - strlen(current->data +i)) <= fill)) break; } diff --git a/po/de.gmo b/po/de.gmo index 5da6b71517c67928233230b166da2a73e8f43ae2..c64d39189d031b48516dcc23b0469a2f45224c82 100644 GIT binary patch delta 25 gcmX@t#(1ucal>bIE<*!d149KvV=L3mf7Jt}0edb8qyPW_ delta 25 gcmX@t#(1ucal>bIE(1$lLsJDqLo1Wbf7Jt}0eim)t^fc4 diff --git a/po/de.po b/po/de.po index 41cc6549..87d5432b 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 0.9.17\n" -"POT-Creation-Date: 2000-09-15 11:48-0400\n" +"POT-Creation-Date: 2000-10-01 13:58-0400\n" "PO-Revision-Date: 2000-09-09 11:55+0200\n" "Last-Translator: Florian König \n" "Language-Team: German \n" @@ -48,63 +48,63 @@ msgstr "Neue Datei" msgid "File \"%s\" is a directory" msgstr "Datei \"%s\" ist ein Verzeichnis" -#: files.c:235 +#: files.c:236 msgid "Reading File" msgstr "Lese Datei" -#: files.c:248 +#: files.c:249 msgid "File to insert [from ./] " msgstr "Datei zum Einfügen [von ./] " -#: files.c:273 files.c:297 files.c:487 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1132 msgid "Cancelled" msgstr "Abgebrochen" -#: files.c:319 files.c:339 files.c:352 files.c:369 files.c:375 +#: files.c:320 files.c:340 files.c:353 files.c:370 files.c:376 #, c-format msgid "Could not open file for writing: %s" msgstr "Konnte nicht in Datei schreiben: %s" -#: files.c:327 +#: files.c:328 msgid "Could not open file: Path length exceeded." msgstr "Konnte Datei nicht öffnen: Pfad zu lang." -#: files.c:357 +#: files.c:358 #, c-format msgid "Wrote >%s\n" msgstr "Schrieb >%s\n" -#: files.c:384 +#: files.c:385 #, c-format msgid "Could not close %s: %s" msgstr "Konnte %s nicht schließen: %s" #. Try a rename?? -#: files.c:405 files.c:416 files.c:421 +#: files.c:406 files.c:417 files.c:422 #, c-format msgid "Could not open %s for writing: %s" msgstr "Konnte nicht in %s schreiben: %s" -#: files.c:427 +#: files.c:428 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Konnte Rechte %o für %s nicht setzen: %s" -#: files.c:434 +#: files.c:435 #, c-format msgid "Wrote %d lines" msgstr "%d Zeilen geschrieben" -#: files.c:466 +#: files.c:467 msgid "File Name to write" msgstr "Dateiname zum Speichern" -#: files.c:471 +#: files.c:472 #, c-format msgid "filename is %s" msgstr "Dateiname ist %s" -#: files.c:476 +#: files.c:477 msgid "File exists, OVERWRITE ?" msgstr "Datei exisitiert, ÜBERSCHREIBEN ?" @@ -718,39 +718,39 @@ msgstr "aktiviert" msgid "disabled" msgstr "deaktiviert" -#: nano.c:1878 +#: nano.c:1880 msgid "Main: set up windows\n" msgstr "Hauptprogramm: Fenster konfigurieren\n" -#: nano.c:1885 +#: nano.c:1894 msgid "Main: bottom win\n" msgstr "Hauptprogramm: unteres Fenster\n" -#: nano.c:1891 +#: nano.c:1900 msgid "Main: open file\n" msgstr "Hauptprogramm: Datei öffnen\n" -#: nano.c:1925 +#: nano.c:1934 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n" -#: nano.c:1949 +#: nano.c:1958 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n" -#: nano.c:1982 +#: nano.c:1991 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n" -#: nano.c:2030 +#: nano.c:2039 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n" -#: nano.c:2056 +#: nano.c:2065 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Erhielt Alt-%c! (%d)\n" diff --git a/po/es.gmo b/po/es.gmo index caf36bd8e45f82d2c6eb793e70d1b119fafa561e..df6658e4ab73c7d1df4b0f8a66ecb36d27bd1da1 100644 GIT binary patch delta 25 hcmdnd&bXtUal<=xE<*!d149KvV=L3mKhzIM0|0ly2;Tqz delta 25 hcmdnd&bXtUal<=xE(1$lLsJDqLo1WbKhzIM0|0nZ2\n" "Language-Team: Spanish \n" @@ -48,63 +48,63 @@ msgstr "Nuevo Fichero" msgid "File \"%s\" is a directory" msgstr "Fichero \"%s\" es un directorio" -#: files.c:235 +#: files.c:236 msgid "Reading File" msgstr "Leyendo Fichero" -#: files.c:248 +#: files.c:249 msgid "File to insert [from ./] " msgstr "Fichero a insertar [desde ./] " -#: files.c:273 files.c:297 files.c:487 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1132 msgid "Cancelled" msgstr "Cancelado" -#: files.c:319 files.c:339 files.c:352 files.c:369 files.c:375 +#: files.c:320 files.c:340 files.c:353 files.c:370 files.c:376 #, c-format msgid "Could not open file for writing: %s" msgstr "No pude abrir el fichero para escribir: %s" -#: files.c:327 +#: files.c:328 msgid "Could not open file: Path length exceeded." msgstr "El fichero no pudo ser abierto: longitud del path excedida." -#: files.c:357 +#: files.c:358 #, c-format msgid "Wrote >%s\n" msgstr "Escribí >%s\n" -#: files.c:384 +#: files.c:385 #, c-format msgid "Could not close %s: %s" msgstr "No pude cerrar %s: %s" #. Try a rename?? -#: files.c:405 files.c:416 files.c:421 +#: files.c:406 files.c:417 files.c:422 #, c-format msgid "Could not open %s for writing: %s" msgstr "No pude abrir %s para escribir: %s" -#: files.c:427 +#: files.c:428 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "No pude establecer permisos %o en %s: %s" -#: files.c:434 +#: files.c:435 #, c-format msgid "Wrote %d lines" msgstr "%d líneas escritas" -#: files.c:466 +#: files.c:467 msgid "File Name to write" msgstr "Nombre de Fichero a escribir" -#: files.c:471 +#: files.c:472 #, c-format msgid "filename is %s" msgstr "filename es %s" -#: files.c:476 +#: files.c:477 msgid "File exists, OVERWRITE ?" msgstr "El fichero existe, SOBREESCRIBIR ?" @@ -714,39 +714,39 @@ msgstr "habilitado" msgid "disabled" msgstr "deshabilitado" -#: nano.c:1878 +#: nano.c:1880 msgid "Main: set up windows\n" msgstr "Main: configurar las ventanas\n" -#: nano.c:1885 +#: nano.c:1894 msgid "Main: bottom win\n" msgstr "Main: ventana inferior\n" -#: nano.c:1891 +#: nano.c:1900 msgid "Main: open file\n" msgstr "Main: abrir fichero\n" -#: nano.c:1925 +#: nano.c:1934 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Pillé Alt-[-%c! (%d)\n" -#: nano.c:1949 +#: nano.c:1958 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Pillé Alt-[-%c! (%d)\n" -#: nano.c:1982 +#: nano.c:1991 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Pillé Alt-[-%c! (%d)\n" -#: nano.c:2030 +#: nano.c:2039 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Pillé Alt-[-%c! (%d)\n" -#: nano.c:2056 +#: nano.c:2065 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Pillé Alt-%c! (%d)\n" diff --git a/po/fi.gmo b/po/fi.gmo index bbb9c9edf68f1023e1b389cb7bf8912493e29d3f..34c5cae37b625fad7eee7a5e5f0466b5829b7700 100644 GIT binary patch delta 23 ecmX?@bueqgdIc^+16>0{1w&&i)6F{-Iz#|!GzaPc delta 23 ecmX?@bueqgdIc^6OI<@#1w%tClg&F7Iz#|!#Rv2N diff --git a/po/fi.po b/po/fi.po index 579bd6c0..af540078 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 0.9.11\n" -"POT-Creation-Date: 2000-09-15 11:48-0400\n" +"POT-Creation-Date: 2000-10-01 13:58-0400\n" "PO-Revision-Date: 2000-06-21 23:08+03:00\n" "Last-Translator: Pauli Virtanen \n" "Language-Team: Finnish \n" @@ -47,63 +47,63 @@ msgstr "Uusi tiedosto" msgid "File \"%s\" is a directory" msgstr "\"%s\" on hakemisto" -#: files.c:235 +#: files.c:236 msgid "Reading File" msgstr "Tiedostoa luetaan" -#: files.c:248 +#: files.c:249 msgid "File to insert [from ./] " msgstr "Lisättävä tiedosto [hakemistossa ./]" -#: files.c:273 files.c:297 files.c:487 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1132 msgid "Cancelled" msgstr "Peruttu" -#: files.c:319 files.c:339 files.c:352 files.c:369 files.c:375 +#: files.c:320 files.c:340 files.c:353 files.c:370 files.c:376 #, c-format msgid "Could not open file for writing: %s" msgstr "Tiedostoa ei voitu avata luettavaksi: %s" -#: files.c:327 +#: files.c:328 msgid "Could not open file: Path length exceeded." msgstr "Tiedostoa ei voitu avata: liian pitkä tiedostonnimi." -#: files.c:357 +#: files.c:358 #, c-format msgid "Wrote >%s\n" msgstr "Kirjoitettu: >%s\n" -#: files.c:384 +#: files.c:385 #, c-format msgid "Could not close %s: %s" msgstr "Tiedosto %s ei sulkeutunut: %s" #. Try a rename?? -#: files.c:405 files.c:416 files.c:421 +#: files.c:406 files.c:417 files.c:422 #, c-format msgid "Could not open %s for writing: %s" msgstr "Tiedostoa %s ei voitu avata kirjoitettavaksi: %s" -#: files.c:427 +#: files.c:428 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Oikeuksia %o ei voitu asettaa tiedostolle %s: %s" -#: files.c:434 +#: files.c:435 #, c-format msgid "Wrote %d lines" msgstr "%d riviä kirjoitettu" -#: files.c:466 +#: files.c:467 msgid "File Name to write" msgstr "Kirjoitettavan tiedoston nimi" -#: files.c:471 +#: files.c:472 #, c-format msgid "filename is %s" msgstr "tiedoston nimi on %s" -#: files.c:476 +#: files.c:477 msgid "File exists, OVERWRITE ?" msgstr "Tiedosto on jo olemassa, korvataanko?" @@ -714,39 +714,39 @@ msgstr "" msgid "disabled" msgstr "" -#: nano.c:1878 +#: nano.c:1880 msgid "Main: set up windows\n" msgstr "Päätila: ikkunoiden asettelu\n" -#: nano.c:1885 +#: nano.c:1894 msgid "Main: bottom win\n" msgstr "Päätila: alaikkuna\n" -#: nano.c:1891 +#: nano.c:1900 msgid "Main: open file\n" msgstr "Päätila: avaa tiedosto\n" -#: nano.c:1925 +#: nano.c:1934 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n" -#: nano.c:1949 +#: nano.c:1958 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n" -#: nano.c:1982 +#: nano.c:1991 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n" -#: nano.c:2030 +#: nano.c:2039 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n" -#: nano.c:2056 +#: nano.c:2065 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Vastaanotettu Alt-%c! (%d)\n" diff --git a/po/fr.gmo b/po/fr.gmo index ffe7ee27e30e68f580dcc545a17252fd11dd6678..4603bb5b8a3ed373d21cfd1b6903ef814f70dcd8 100644 GIT binary patch delta 3670 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 diff --git a/po/fr.po b/po/fr.po index 60f38320..ca0b831f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.8.9\n" -"POT-Creation-Date: 2000-09-15 11:48-0400\n" +"POT-Creation-Date: 2000-10-01 13:58-0400\n" "PO-Revision-Date: 2000-07-09 01:32+0100\n" "Last-Translator: Clement Laforet \n" "Language-Team: French \n" @@ -50,63 +50,63 @@ msgstr "Nouveau fichier" msgid "File \"%s\" is a directory" msgstr "Le fichier \"%s\" est un répertoire" -#: files.c:235 +#: files.c:236 msgid "Reading File" msgstr "Lecture du fichier" -#: files.c:248 +#: files.c:249 msgid "File to insert [from ./] " msgstr "Fichier à insérer [depuis ./] " -#: files.c:273 files.c:297 files.c:487 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1132 msgid "Cancelled" msgstr "Annulé" -#: files.c:319 files.c:339 files.c:352 files.c:369 files.c:375 +#: files.c:320 files.c:340 files.c:353 files.c:370 files.c:376 #, c-format msgid "Could not open file for writing: %s" msgstr "Impossible d'ouvrir le fichier en écriture: %s" -#: files.c:327 +#: files.c:328 msgid "Could not open file: Path length exceeded." msgstr "Impossible d'ouvrir le fichier: la longueur du chemin a été dépassée" -#: files.c:357 +#: files.c:358 #, c-format msgid "Wrote >%s\n" msgstr "Écrit >%s\n" -#: files.c:384 +#: files.c:385 #, c-format msgid "Could not close %s: %s" msgstr "Impossible de fermer %s: %s" #. Try a rename?? -#: files.c:405 files.c:416 files.c:421 +#: files.c:406 files.c:417 files.c:422 #, c-format msgid "Could not open %s for writing: %s" msgstr "Impossible d'ouvrir %s en écriture: %s" -#: files.c:427 +#: files.c:428 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Impossible de donner les permissions %o à %s: %s" -#: files.c:434 +#: files.c:435 #, c-format msgid "Wrote %d lines" msgstr "%d lignes écrites" -#: files.c:466 +#: files.c:467 msgid "File Name to write" msgstr "Nom du fichier dans lequel écrire" -#: files.c:471 +#: files.c:472 #, c-format msgid "filename is %s" msgstr "Le nom du fichier est %s" -#: files.c:476 +#: files.c:477 msgid "File exists, OVERWRITE ?" msgstr "Fichier existant, écrire par-dessus ?" @@ -644,7 +644,8 @@ msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgstr " nano version %s de Chris Allegretta (compilée %s, %s)\n" #: nano.c:402 -msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" +#, fuzzy +msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org\n" msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" #: nano.c:437 @@ -734,39 +735,39 @@ msgstr "" msgid "disabled" msgstr "" -#: nano.c:1878 +#: nano.c:1880 msgid "Main: set up windows\n" msgstr "Main: configuration des fenêtres\n" -#: nano.c:1885 +#: nano.c:1894 msgid "Main: bottom win\n" msgstr "Main: fenêtre du bas\n" -#: nano.c:1891 +#: nano.c:1900 msgid "Main: open file\n" msgstr "Main: ouvrir fichier\n" -#: nano.c:1925 +#: nano.c:1934 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:1949 +#: nano.c:1958 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:1982 +#: nano.c:1991 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:2030 +#: nano.c:2039 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:2056 +#: nano.c:2065 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "J'ai reçu Alt-%c! (%d)\n" diff --git a/po/id.gmo b/po/id.gmo index 4e7b9ae55fc54ea6e05066ed5ba7e48e4d326da9..69881735103ab812facdfa74e466fac1baef0511 100644 GIT binary patch delta 23 ecmaEo{v>?^lLD8afv$m}f}ydM>1G~<8^Qo#dj}r? delta 23 ecmaEo{v>?^lLD84rLLi=f}x?6$z~pf8^Qo$3\n" "Language-Team: Indonesian \n" @@ -47,63 +47,63 @@ msgstr "File Baru" msgid "File \"%s\" is a directory" msgstr "File \"%s\" adalah sebuah direktori" -#: files.c:235 +#: files.c:236 msgid "Reading File" msgstr "Membaca File" -#: files.c:248 +#: files.c:249 msgid "File to insert [from ./] " msgstr "File untuk disisipkan " -#: files.c:273 files.c:297 files.c:487 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1132 msgid "Cancelled" msgstr "Dibatalkan" -#: files.c:319 files.c:339 files.c:352 files.c:369 files.c:375 +#: files.c:320 files.c:340 files.c:353 files.c:370 files.c:376 #, c-format msgid "Could not open file for writing: %s" msgstr "Tidak dapat membuka file untuk menulis: %s" -#: files.c:327 +#: files.c:328 msgid "Could not open file: Path length exceeded." msgstr "Tidak dapat membuka file: panjang path terlampaui" -#: files.c:357 +#: files.c:358 #, c-format msgid "Wrote >%s\n" msgstr "Tulis >%s\n" -#: files.c:384 +#: files.c:385 #, c-format msgid "Could not close %s: %s" msgstr "Tidak dapat menutup %s: %s" #. Try a rename?? -#: files.c:405 files.c:416 files.c:421 +#: files.c:406 files.c:417 files.c:422 #, c-format msgid "Could not open %s for writing: %s" msgstr "Tidak dapat membuka %s untuk menulis: %s" -#: files.c:427 +#: files.c:428 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Tidak dapat menset permisi %o pada %s: %s" -#: files.c:434 +#: files.c:435 #, c-format msgid "Wrote %d lines" msgstr "Menulis %d baris" -#: files.c:466 +#: files.c:467 msgid "File Name to write" msgstr "Nama file untuk ditulis" -#: files.c:471 +#: files.c:472 #, c-format msgid "filename is %s" msgstr "Namafile adalah %s" -#: files.c:476 +#: files.c:477 msgid "File exists, OVERWRITE ?" msgstr "File ada, DITIMPA ?" @@ -713,39 +713,39 @@ msgstr "" msgid "disabled" msgstr "" -#: nano.c:1878 +#: nano.c:1880 msgid "Main: set up windows\n" msgstr "Main: menset jendela\n" -#: nano.c:1885 +#: nano.c:1894 msgid "Main: bottom win\n" msgstr "Main: jendela bawah\n" -#: nano.c:1891 +#: nano.c:1900 msgid "Main: open file\n" msgstr "Main: membuka file\n" -#: nano.c:1925 +#: nano.c:1934 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" -#: nano.c:1949 +#: nano.c:1958 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" -#: nano.c:1982 +#: nano.c:1991 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" -#: nano.c:2030 +#: nano.c:2039 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" -#: nano.c:2056 +#: nano.c:2065 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" diff --git a/po/it.gmo b/po/it.gmo index fa7d65c0c7401913d5c4f6b61d8d3052bde4f222..43d3a1ef934bba1f105a4bec6286a50803e7f34e 100644 GIT binary patch delta 23 ecmZoqYfszoU5?ApK-a)f!O+;sbTgwon+O14n+ACR delta 23 ecmZoqYfszoU5?AZQrFN_!O+mkWHX~Yn+O15ECz!B diff --git a/po/it.po b/po/it.po index 8a77116f..85aa811e 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.8.7\n" -"POT-Creation-Date: 2000-09-15 11:48-0400\n" +"POT-Creation-Date: 2000-10-01 13:58-0400\n" "PO-Revision-Date: 2000-03-03 04:57+0100\n" "Last-Translator: Daniele Medri \n" "MIME-Version: 1.0\n" @@ -47,63 +47,63 @@ msgstr "Nuovo file" msgid "File \"%s\" is a directory" msgstr "Il file \"%s\" è una directory" -#: files.c:235 +#: files.c:236 msgid "Reading File" msgstr "Lettura file" -#: files.c:248 +#: files.c:249 msgid "File to insert [from ./] " msgstr "File da inserire [da ./] " -#: files.c:273 files.c:297 files.c:487 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1132 msgid "Cancelled" msgstr "Cancellato" -#: files.c:319 files.c:339 files.c:352 files.c:369 files.c:375 +#: files.c:320 files.c:340 files.c:353 files.c:370 files.c:376 #, c-format msgid "Could not open file for writing: %s" msgstr "Impossibile aprire il file in scrittura: %s" -#: files.c:327 +#: files.c:328 msgid "Could not open file: Path length exceeded." msgstr "Impossibile aprire il file: esagerata lunghezza del percorso." -#: files.c:357 +#: files.c:358 #, c-format msgid "Wrote >%s\n" msgstr "Scrivi >%s\n" -#: files.c:384 +#: files.c:385 #, c-format msgid "Could not close %s: %s" msgstr "Impossibile chiudere %s: %s" #. Try a rename?? -#: files.c:405 files.c:416 files.c:421 +#: files.c:406 files.c:417 files.c:422 #, c-format msgid "Could not open %s for writing: %s" msgstr "Impossibile aprire %s in scrittura: %s" -#: files.c:427 +#: files.c:428 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Impossibile configurare i permessi di %o su %s: %s" -#: files.c:434 +#: files.c:435 #, c-format msgid "Wrote %d lines" msgstr "Scritte %d linee" -#: files.c:466 +#: files.c:467 msgid "File Name to write" msgstr "Salva con nome" -#: files.c:471 +#: files.c:472 #, c-format msgid "filename is %s" msgstr "Il nome file è %s" -#: files.c:476 +#: files.c:477 msgid "File exists, OVERWRITE ?" msgstr "File esistente, SOVRASCRIVERE?" @@ -700,39 +700,39 @@ msgstr "" msgid "disabled" msgstr "" -#: nano.c:1878 +#: nano.c:1880 msgid "Main: set up windows\n" msgstr "Main: configura finestre\n" -#: nano.c:1885 +#: nano.c:1894 msgid "Main: bottom win\n" msgstr "Main: finestra inferiore\n" -#: nano.c:1891 +#: nano.c:1900 msgid "Main: open file\n" msgstr "Main: apri file\n" -#: nano.c:1925 +#: nano.c:1934 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:1949 +#: nano.c:1958 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:1982 +#: nano.c:1991 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:2030 +#: nano.c:2039 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:2056 +#: nano.c:2065 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Premuto Alt-%c! (%d)\n" diff --git a/po/nano.pot b/po/nano.pot index f10c7adb..e87582d7 100644 --- a/po/nano.pot +++ b/po/nano.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-10-01 13:58-0400\n" +"POT-Creation-Date: 2000-10-01 23:50-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,7 +55,7 @@ msgstr "" msgid "File to insert [from ./] " msgstr "" -#: files.c:274 files.c:298 files.c:488 nano.c:1132 +#: files.c:274 files.c:298 files.c:488 nano.c:1133 msgid "Cancelled" msgstr "" @@ -609,118 +609,118 @@ msgstr "" msgid "Mark UNset" msgstr "" -#: nano.c:867 +#: nano.c:868 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "" -#: nano.c:918 +#: nano.c:919 #, c-format msgid "current->data now = \"%s\"\n" msgstr "" -#: nano.c:971 +#: nano.c:972 #, c-format msgid "After, data = \"%s\"\n" msgstr "" -#: nano.c:1041 +#: nano.c:1042 msgid "Error deleting tempfile, ack!" msgstr "" -#: nano.c:1059 +#: nano.c:1060 #, c-format msgid "Could not create a temporary filename: %s" msgstr "" -#: nano.c:1082 +#: nano.c:1083 #, c-format msgid "Could not invoke spell program \"%s\"" msgstr "" #. Why 32512? I dont know! -#: nano.c:1088 +#: nano.c:1089 msgid "Could not invoke \"ispell\"" msgstr "" -#: nano.c:1101 +#: nano.c:1102 msgid "Finished checking spelling" msgstr "" -#: nano.c:1119 +#: nano.c:1120 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "" -#: nano.c:1283 +#: nano.c:1284 msgid "Cannot resize top win" msgstr "" -#: nano.c:1285 +#: nano.c:1286 msgid "Cannot move top win" msgstr "" -#: nano.c:1287 +#: nano.c:1288 msgid "Cannot resize edit win" msgstr "" -#: nano.c:1289 +#: nano.c:1290 msgid "Cannot move edit win" msgstr "" -#: nano.c:1291 +#: nano.c:1292 msgid "Cannot resize bottom win" msgstr "" -#: nano.c:1293 +#: nano.c:1294 msgid "Cannot move bottom win" msgstr "" -#: nano.c:1637 +#: nano.c:1638 #, c-format msgid "%s enable/disable" msgstr "" -#: nano.c:1649 +#: nano.c:1650 msgid "enabled" msgstr "" -#: nano.c:1650 +#: nano.c:1651 msgid "disabled" msgstr "" -#: nano.c:1880 +#: nano.c:1881 msgid "Main: set up windows\n" msgstr "" -#: nano.c:1894 +#: nano.c:1895 msgid "Main: bottom win\n" msgstr "" -#: nano.c:1900 +#: nano.c:1901 msgid "Main: open file\n" msgstr "" -#: nano.c:1934 +#: nano.c:1935 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "" -#: nano.c:1958 +#: nano.c:1959 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "" -#: nano.c:1991 +#: nano.c:1992 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "" -#: nano.c:2039 +#: nano.c:2040 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "" -#: nano.c:2065 +#: nano.c:2066 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "" -- 2.39.5