commit 9e7efa3202eb5972688ca123147863c840fe08eb
parent df3afdce0dd0bf57011600ec483e4f9da6179f55
Author: Chris Allegretta <chrisa@asty.org>
Date: Mon, 2 Oct 2000 03:42:55 +0000
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
Diffstat:
15 files changed, 183 insertions(+), 180 deletions(-)
diff --git 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
@@ -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
Binary files differ.
diff --git 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 <floki@bigfoot.com>\n"
"Language-Team: German <floki@bigfoot.com>\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
Binary files differ.
diff --git a/po/es.po b/po/es.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 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-07 12:14+0200\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <jordi@sindominio.net>\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
Binary files differ.
diff --git 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 <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\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
Binary files differ.
diff --git 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 <sheep.killer@free.fr>\n"
"Language-Team: French <LL@li.org>\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
Binary files differ.
diff --git a/po/id.po b/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano-0.9.10\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-08 20:56+07:00\n"
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
"Language-Team: Indonesian <id@li.org>\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
Binary files differ.
diff --git 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 <madrid@linux.it>\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
@@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 ""