1
1

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
Этот коммит содержится в:
Chris Allegretta 2000-10-02 03:42:55 +00:00
родитель df3afdce0d
Коммит 9e7efa3202
15 изменённых файлов: 183 добавлений и 180 удалений

Просмотреть файл

@ -7,6 +7,7 @@ CVS changes -
in main(). in main().
- Changed web site and email to new nano-editor.org domain. - Changed web site and email to new nano-editor.org domain.
- nano.c - nano.c
- Added (int) casts to remove compile warnings with -Wall.
main() main()
- Added check for _POSIX_VDISABLE around term variable definition. - Added check for _POSIX_VDISABLE around term variable definition.
- search.c - search.c

39
nano.c
Просмотреть файл

@ -617,13 +617,14 @@ void do_wrap(filestruct * inptr, char input_char)
assert(strlenpt(inptr->data) > fill); assert(strlenpt(inptr->data) > fill);
for (i = 0, i_tabs = 0; i < len; i++, i_tabs++) { 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; last_word_end = current_word_end;
current_word_start = i; current_word_start = i;
current_word_start_t = i_tabs; 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++;
i_tabs++; i_tabs++;
if (inptr->data[i] < 32) if (inptr->data[i] < 32)
@ -677,11 +678,11 @@ void do_wrap(filestruct * inptr, char input_char)
temp = nmalloc(sizeof(filestruct)); temp = nmalloc(sizeof(filestruct));
/* Category 1a: one word taking up the whole line with no beginning spaces. */ /* 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++) { 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; current_word_start = i;
while (!isspace(inptr->data[i]) && (i < len)) { while (!isspace((int) inptr->data[i]) && (i < len)) {
i++; i++;
} }
last_word_end = current_word_end; 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); nmalloc(strlen(&inptr->data[current_word_start]) + 1);
strcpy(temp->data, &inptr->data[current_word_start]); strcpy(temp->data, &inptr->data[current_word_start]);
if (!isspace(input_char)) { if (!isspace((int) input_char)) {
i = current_word_start - 1; i = current_word_start - 1;
while (isspace(inptr->data[i])) { while (isspace((int) inptr->data[i])) {
i--; i--;
assert(i >= 0); assert(i >= 0);
} }
@ -762,13 +763,13 @@ void do_wrap(filestruct * inptr, char input_char)
right = current_x - current_word_start; right = current_x - current_word_start;
i = current_word_start - 1; 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; current_x = current_word_start;
null_at(inptr->data, current_word_start); null_at(inptr->data, current_word_start);
} else { } else {
while (isspace(inptr->data[i])) { while (isspace((int) inptr->data[i])) {
i--; i--;
assert(i >= 0); assert(i >= 0);
} }
@ -790,7 +791,7 @@ void do_wrap(filestruct * inptr, char input_char)
current_x = current_word_start; current_x = current_word_start;
i = current_word_start - 1; i = current_word_start - 1;
while (isspace(inptr->data[i])) { while (isspace((int) inptr->data[i])) {
i--; i--;
assert(i >= 0); assert(i >= 0);
inptr->data = nrealloc(inptr->data, i + 2); 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. */ /* Do not wrap if there are no words on or after wrap point. */
int char_found = 0; int char_found = 0;
while (isspace(inptr->data[i]) && inptr->data[i]) while (isspace((int)inptr->data[i]) && inptr->data[i])
i++; i++;
if (!inptr->data[i]) if (!inptr->data[i])
@ -884,7 +885,7 @@ void check_wrap(filestruct * inptr, char ch)
/* String must be at least 1 character long. */ /* String must be at least 1 character long. */
for (i = strlen(inptr->data) - 1; i >= 0; i--) { for (i = strlen(inptr->data) - 1; i >= 0; i--) {
if (isspace(inptr->data[i])) { if (isspace((int) inptr->data[i])) {
if (!char_found) if (!char_found)
continue; continue;
char_found = 2; /* 2 for yes do wrap. */ char_found = 2; /* 2 for yes do wrap. */
@ -1385,7 +1386,7 @@ int do_tab(void)
int empty_line(const char *data) int empty_line(const char *data)
{ {
while (*data) { while (*data) {
if (!isspace(*data)) if (!isspace((int) *data))
return 0; return 0;
data++; data++;
@ -1397,7 +1398,7 @@ int empty_line(const char *data)
int no_spaces(const char *data) int no_spaces(const char *data)
{ {
while (*data) { while (*data) {
if (isspace(*data)) if (isspace((int) *data))
return 0; return 0;
data++; data++;
@ -1413,7 +1414,7 @@ void justify_format(char *data)
/* Skip first character regardless and leading whitespace. */ /* Skip first character regardless and leading whitespace. */
for (i = 1; i < len; i++) { for (i = 1; i < len; i++) {
if (!isspace(data[i])) if (!isspace((int) data[i]))
break; break;
} }
@ -1421,7 +1422,7 @@ void justify_format(char *data)
/* No double spaces allowed unless following a period. Tabs -> space. No double tabs. */ /* No double spaces allowed unless following a period. Tabs -> space. No double tabs. */
for (; i < len; i++) { 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] != '.')) { && (data[i - 2] != '.')) {
memmove(data + i, data + i + 1, len - i); memmove(data + i, data + i + 1, len - i);
len--; len--;
@ -1454,7 +1455,7 @@ int do_justify(void)
* or 2) A line following an empty line. * or 2) A line following an empty line.
*/ */
while (current->prev != NULL) { while (current->prev != NULL) {
if (isspace(current->data[0]) || !current->data[0]) if (isspace((int) current->data[0]) || !current->data[0])
break; break;
current = current->prev; current = current->prev;
@ -1475,7 +1476,7 @@ int do_justify(void)
set_modified(); set_modified();
/* Put the whole paragraph into one big line. */ /* 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]) { && current->next->data[0]) {
filestruct *tmpnode = current->next; filestruct *tmpnode = current->next;
int len = strlen(current->data); int len = strlen(current->data);
@ -1514,7 +1515,7 @@ int do_justify(void)
else else
i = slen; i = slen;
for (; i > 0; i--) { for (; i > 0; i--) {
if (isspace(current->data[i]) && if (isspace((int) current->data[i]) &&
((strlenpt(current->data) - strlen(current->data +i)) <= ((strlenpt(current->data) - strlen(current->data +i)) <=
fill)) break; fill)) break;
} }

Двоичные данные
po/de.gmo

Двоичный файл не отображается.

Просмотреть файл

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano 0.9.17\n" "Project-Id-Version: nano 0.9.17\n"
"POT-Creation-Date: 2000-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" "PO-Revision-Date: 2000-09-09 11:55+0200\n"
"Last-Translator: Florian KЎnig <floki@bigfoot.com>\n" "Last-Translator: Florian KЎnig <floki@bigfoot.com>\n"
"Language-Team: German <floki@bigfoot.com>\n" "Language-Team: German <floki@bigfoot.com>\n"
@ -48,63 +48,63 @@ msgstr "Neue Datei"
msgid "File \"%s\" is a directory" msgid "File \"%s\" is a directory"
msgstr "Datei \"%s\" ist ein Verzeichnis" msgstr "Datei \"%s\" ist ein Verzeichnis"
#: files.c:235 #: files.c:236
msgid "Reading File" msgid "Reading File"
msgstr "Lese Datei" msgstr "Lese Datei"
#: files.c:248 #: files.c:249
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Datei zum Einf№gen [von ./] " 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" msgid "Cancelled"
msgstr "Abgebrochen" 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 #, c-format
msgid "Could not open file for writing: %s" msgid "Could not open file for writing: %s"
msgstr "Konnte nicht in Datei schreiben: %s" msgstr "Konnte nicht in Datei schreiben: %s"
#: files.c:327 #: files.c:328
msgid "Could not open file: Path length exceeded." msgid "Could not open file: Path length exceeded."
msgstr "Konnte Datei nicht Ўffnen: Pfad zu lang." msgstr "Konnte Datei nicht Ўffnen: Pfad zu lang."
#: files.c:357 #: files.c:358
#, c-format #, c-format
msgid "Wrote >%s\n" msgid "Wrote >%s\n"
msgstr "Schrieb >%s\n" msgstr "Schrieb >%s\n"
#: files.c:384 #: files.c:385
#, c-format #, c-format
msgid "Could not close %s: %s" msgid "Could not close %s: %s"
msgstr "Konnte %s nicht schlie▀en: %s" msgstr "Konnte %s nicht schlie▀en: %s"
#. Try a rename?? #. Try a rename??
#: files.c:405 files.c:416 files.c:421 #: files.c:406 files.c:417 files.c:422
#, c-format #, c-format
msgid "Could not open %s for writing: %s" msgid "Could not open %s for writing: %s"
msgstr "Konnte nicht in %s schreiben: %s" msgstr "Konnte nicht in %s schreiben: %s"
#: files.c:427 #: files.c:428
#, c-format #, c-format
msgid "Could not set permissions %o on %s: %s" msgid "Could not set permissions %o on %s: %s"
msgstr "Konnte Rechte %o f№r %s nicht setzen: %s" msgstr "Konnte Rechte %o f№r %s nicht setzen: %s"
#: files.c:434 #: files.c:435
#, c-format #, c-format
msgid "Wrote %d lines" msgid "Wrote %d lines"
msgstr "%d Zeilen geschrieben" msgstr "%d Zeilen geschrieben"
#: files.c:466 #: files.c:467
msgid "File Name to write" msgid "File Name to write"
msgstr "Dateiname zum Speichern" msgstr "Dateiname zum Speichern"
#: files.c:471 #: files.c:472
#, c-format #, c-format
msgid "filename is %s" msgid "filename is %s"
msgstr "Dateiname ist %s" msgstr "Dateiname ist %s"
#: files.c:476 #: files.c:477
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Datei exisitiert, ▄BERSCHREIBEN ?" msgstr "Datei exisitiert, ▄BERSCHREIBEN ?"
@ -718,39 +718,39 @@ msgstr "aktiviert"
msgid "disabled" msgid "disabled"
msgstr "deaktiviert" msgstr "deaktiviert"
#: nano.c:1878 #: nano.c:1880
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Hauptprogramm: Fenster konfigurieren\n" msgstr "Hauptprogramm: Fenster konfigurieren\n"
#: nano.c:1885 #: nano.c:1894
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Hauptprogramm: unteres Fenster\n" msgstr "Hauptprogramm: unteres Fenster\n"
#: nano.c:1891 #: nano.c:1900
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Hauptprogramm: Datei Ўffnen\n" msgstr "Hauptprogramm: Datei Ўffnen\n"
#: nano.c:1925 #: nano.c:1934
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:1949 #: nano.c:1958
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:1982 #: nano.c:1991
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2030 #: nano.c:2039
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2056 #: nano.c:2065
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Erhielt Alt-%c! (%d)\n" msgstr "Erhielt Alt-%c! (%d)\n"

Двоичные данные
po/es.gmo

Двоичный файл не отображается.

Просмотреть файл

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.17\n" "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" "PO-Revision-Date: 2000-09-07 12:14+0200\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n" "Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <jordi@sindominio.net>\n" "Language-Team: Spanish <jordi@sindominio.net>\n"
@ -48,63 +48,63 @@ msgstr "Nuevo Fichero"
msgid "File \"%s\" is a directory" msgid "File \"%s\" is a directory"
msgstr "Fichero \"%s\" es un directorio" msgstr "Fichero \"%s\" es un directorio"
#: files.c:235 #: files.c:236
msgid "Reading File" msgid "Reading File"
msgstr "Leyendo Fichero" msgstr "Leyendo Fichero"
#: files.c:248 #: files.c:249
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichero a insertar [desde ./] " 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" msgid "Cancelled"
msgstr "Cancelado" 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 #, c-format
msgid "Could not open file for writing: %s" msgid "Could not open file for writing: %s"
msgstr "No pude abrir el fichero para escribir: %s" msgstr "No pude abrir el fichero para escribir: %s"
#: files.c:327 #: files.c:328
msgid "Could not open file: Path length exceeded." msgid "Could not open file: Path length exceeded."
msgstr "El fichero no pudo ser abierto: longitud del path excedida." msgstr "El fichero no pudo ser abierto: longitud del path excedida."
#: files.c:357 #: files.c:358
#, c-format #, c-format
msgid "Wrote >%s\n" msgid "Wrote >%s\n"
msgstr "Escribэ >%s\n" msgstr "Escribэ >%s\n"
#: files.c:384 #: files.c:385
#, c-format #, c-format
msgid "Could not close %s: %s" msgid "Could not close %s: %s"
msgstr "No pude cerrar %s: %s" msgstr "No pude cerrar %s: %s"
#. Try a rename?? #. Try a rename??
#: files.c:405 files.c:416 files.c:421 #: files.c:406 files.c:417 files.c:422
#, c-format #, c-format
msgid "Could not open %s for writing: %s" msgid "Could not open %s for writing: %s"
msgstr "No pude abrir %s para escribir: %s" msgstr "No pude abrir %s para escribir: %s"
#: files.c:427 #: files.c:428
#, c-format #, c-format
msgid "Could not set permissions %o on %s: %s" msgid "Could not set permissions %o on %s: %s"
msgstr "No pude establecer permisos %o en %s: %s" msgstr "No pude establecer permisos %o en %s: %s"
#: files.c:434 #: files.c:435
#, c-format #, c-format
msgid "Wrote %d lines" msgid "Wrote %d lines"
msgstr "%d lэneas escritas" msgstr "%d lэneas escritas"
#: files.c:466 #: files.c:467
msgid "File Name to write" msgid "File Name to write"
msgstr "Nombre de Fichero a escribir" msgstr "Nombre de Fichero a escribir"
#: files.c:471 #: files.c:472
#, c-format #, c-format
msgid "filename is %s" msgid "filename is %s"
msgstr "filename es %s" msgstr "filename es %s"
#: files.c:476 #: files.c:477
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "El fichero existe, SOBREESCRIBIR ?" msgstr "El fichero existe, SOBREESCRIBIR ?"
@ -714,39 +714,39 @@ msgstr "habilitado"
msgid "disabled" msgid "disabled"
msgstr "deshabilitado" msgstr "deshabilitado"
#: nano.c:1878 #: nano.c:1880
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configurar las ventanas\n" msgstr "Main: configurar las ventanas\n"
#: nano.c:1885 #: nano.c:1894
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: ventana inferior\n" msgstr "Main: ventana inferior\n"
#: nano.c:1891 #: nano.c:1900
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: abrir fichero\n" msgstr "Main: abrir fichero\n"
#: nano.c:1925 #: nano.c:1934
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Pillщ Alt-[-%c! (%d)\n" msgstr "Pillщ Alt-[-%c! (%d)\n"
#: nano.c:1949 #: nano.c:1958
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Pillщ Alt-[-%c! (%d)\n" msgstr "Pillщ Alt-[-%c! (%d)\n"
#: nano.c:1982 #: nano.c:1991
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Pillщ Alt-[-%c! (%d)\n" msgstr "Pillщ Alt-[-%c! (%d)\n"
#: nano.c:2030 #: nano.c:2039
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Pillщ Alt-[-%c! (%d)\n" msgstr "Pillщ Alt-[-%c! (%d)\n"
#: nano.c:2056 #: nano.c:2065
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Pillщ Alt-%c! (%d)\n" msgstr "Pillщ Alt-%c! (%d)\n"

Двоичные данные
po/fi.gmo

Двоичный файл не отображается.

Просмотреть файл

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano 0.9.11\n" "Project-Id-Version: nano 0.9.11\n"
"POT-Creation-Date: 2000-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" "PO-Revision-Date: 2000-06-21 23:08+03:00\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n" "Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\n" "Language-Team: Finnish <fi@li.org>\n"
@ -47,63 +47,63 @@ msgstr "Uusi tiedosto"
msgid "File \"%s\" is a directory" msgid "File \"%s\" is a directory"
msgstr "\"%s\" on hakemisto" msgstr "\"%s\" on hakemisto"
#: files.c:235 #: files.c:236
msgid "Reading File" msgid "Reading File"
msgstr "Tiedostoa luetaan" msgstr "Tiedostoa luetaan"
#: files.c:248 #: files.c:249
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Lisфttфvф tiedosto [hakemistossa ./]" 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" msgid "Cancelled"
msgstr "Peruttu" 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 #, c-format
msgid "Could not open file for writing: %s" msgid "Could not open file for writing: %s"
msgstr "Tiedostoa ei voitu avata luettavaksi: %s" msgstr "Tiedostoa ei voitu avata luettavaksi: %s"
#: files.c:327 #: files.c:328
msgid "Could not open file: Path length exceeded." msgid "Could not open file: Path length exceeded."
msgstr "Tiedostoa ei voitu avata: liian pitkф tiedostonnimi." msgstr "Tiedostoa ei voitu avata: liian pitkф tiedostonnimi."
#: files.c:357 #: files.c:358
#, c-format #, c-format
msgid "Wrote >%s\n" msgid "Wrote >%s\n"
msgstr "Kirjoitettu: >%s\n" msgstr "Kirjoitettu: >%s\n"
#: files.c:384 #: files.c:385
#, c-format #, c-format
msgid "Could not close %s: %s" msgid "Could not close %s: %s"
msgstr "Tiedosto %s ei sulkeutunut: %s" msgstr "Tiedosto %s ei sulkeutunut: %s"
#. Try a rename?? #. Try a rename??
#: files.c:405 files.c:416 files.c:421 #: files.c:406 files.c:417 files.c:422
#, c-format #, c-format
msgid "Could not open %s for writing: %s" msgid "Could not open %s for writing: %s"
msgstr "Tiedostoa %s ei voitu avata kirjoitettavaksi: %s" msgstr "Tiedostoa %s ei voitu avata kirjoitettavaksi: %s"
#: files.c:427 #: files.c:428
#, c-format #, c-format
msgid "Could not set permissions %o on %s: %s" msgid "Could not set permissions %o on %s: %s"
msgstr "Oikeuksia %o ei voitu asettaa tiedostolle %s: %s" msgstr "Oikeuksia %o ei voitu asettaa tiedostolle %s: %s"
#: files.c:434 #: files.c:435
#, c-format #, c-format
msgid "Wrote %d lines" msgid "Wrote %d lines"
msgstr "%d riviф kirjoitettu" msgstr "%d riviф kirjoitettu"
#: files.c:466 #: files.c:467
msgid "File Name to write" msgid "File Name to write"
msgstr "Kirjoitettavan tiedoston nimi" msgstr "Kirjoitettavan tiedoston nimi"
#: files.c:471 #: files.c:472
#, c-format #, c-format
msgid "filename is %s" msgid "filename is %s"
msgstr "tiedoston nimi on %s" msgstr "tiedoston nimi on %s"
#: files.c:476 #: files.c:477
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Tiedosto on jo olemassa, korvataanko?" msgstr "Tiedosto on jo olemassa, korvataanko?"
@ -714,39 +714,39 @@ msgstr ""
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:1878 #: nano.c:1880
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Pффtila: ikkunoiden asettelu\n" msgstr "Pффtila: ikkunoiden asettelu\n"
#: nano.c:1885 #: nano.c:1894
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Pффtila: alaikkuna\n" msgstr "Pффtila: alaikkuna\n"
#: nano.c:1891 #: nano.c:1900
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Pффtila: avaa tiedosto\n" msgstr "Pффtila: avaa tiedosto\n"
#: nano.c:1925 #: nano.c:1934
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:1949 #: nano.c:1958
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:1982 #: nano.c:1991
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2030 #: nano.c:2039
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2056 #: nano.c:2065
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Vastaanotettu Alt-%c! (%d)\n" msgstr "Vastaanotettu Alt-%c! (%d)\n"

Двоичные данные
po/fr.gmo

Двоичный файл не отображается.

Просмотреть файл

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.9\n" "Project-Id-Version: 0.8.9\n"
"POT-Creation-Date: 2000-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" "PO-Revision-Date: 2000-07-09 01:32+0100\n"
"Last-Translator: Clement Laforet <sheep.killer@free.fr>\n" "Last-Translator: Clement Laforet <sheep.killer@free.fr>\n"
"Language-Team: French <LL@li.org>\n" "Language-Team: French <LL@li.org>\n"
@ -50,63 +50,63 @@ msgstr "Nouveau fichier"
msgid "File \"%s\" is a directory" msgid "File \"%s\" is a directory"
msgstr "Le fichier \"%s\" est un rщpertoire" msgstr "Le fichier \"%s\" est un rщpertoire"
#: files.c:235 #: files.c:236
msgid "Reading File" msgid "Reading File"
msgstr "Lecture du fichier" msgstr "Lecture du fichier"
#: files.c:248 #: files.c:249
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichier р insщrer [depuis ./] " 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" msgid "Cancelled"
msgstr "Annulщ" 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 #, c-format
msgid "Could not open file for writing: %s" msgid "Could not open file for writing: %s"
msgstr "Impossible d'ouvrir le fichier en щcriture: %s" msgstr "Impossible d'ouvrir le fichier en щcriture: %s"
#: files.c:327 #: files.c:328
msgid "Could not open file: Path length exceeded." msgid "Could not open file: Path length exceeded."
msgstr "Impossible d'ouvrir le fichier: la longueur du chemin a щtщ dщpassщe" msgstr "Impossible d'ouvrir le fichier: la longueur du chemin a щtщ dщpassщe"
#: files.c:357 #: files.c:358
#, c-format #, c-format
msgid "Wrote >%s\n" msgid "Wrote >%s\n"
msgstr "╔crit >%s\n" msgstr "╔crit >%s\n"
#: files.c:384 #: files.c:385
#, c-format #, c-format
msgid "Could not close %s: %s" msgid "Could not close %s: %s"
msgstr "Impossible de fermer %s: %s" msgstr "Impossible de fermer %s: %s"
#. Try a rename?? #. Try a rename??
#: files.c:405 files.c:416 files.c:421 #: files.c:406 files.c:417 files.c:422
#, c-format #, c-format
msgid "Could not open %s for writing: %s" msgid "Could not open %s for writing: %s"
msgstr "Impossible d'ouvrir %s en щcriture: %s" msgstr "Impossible d'ouvrir %s en щcriture: %s"
#: files.c:427 #: files.c:428
#, c-format #, c-format
msgid "Could not set permissions %o on %s: %s" msgid "Could not set permissions %o on %s: %s"
msgstr "Impossible de donner les permissions %o р %s: %s" msgstr "Impossible de donner les permissions %o р %s: %s"
#: files.c:434 #: files.c:435
#, c-format #, c-format
msgid "Wrote %d lines" msgid "Wrote %d lines"
msgstr "%d lignes щcrites" msgstr "%d lignes щcrites"
#: files.c:466 #: files.c:467
msgid "File Name to write" msgid "File Name to write"
msgstr "Nom du fichier dans lequel щcrire" msgstr "Nom du fichier dans lequel щcrire"
#: files.c:471 #: files.c:472
#, c-format #, c-format
msgid "filename is %s" msgid "filename is %s"
msgstr "Le nom du fichier est %s" msgstr "Le nom du fichier est %s"
#: files.c:476 #: files.c:477
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Fichier existant, щcrire par-dessus ?" 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" msgstr " nano version %s de Chris Allegretta (compilщe %s, %s)\n"
#: nano.c:402 #: 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" msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:437 #: nano.c:437
@ -734,39 +735,39 @@ msgstr ""
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:1878 #: nano.c:1880
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configuration des fenъtres\n" msgstr "Main: configuration des fenъtres\n"
#: nano.c:1885 #: nano.c:1894
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: fenъtre du bas\n" msgstr "Main: fenъtre du bas\n"
#: nano.c:1891 #: nano.c:1900
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: ouvrir fichier\n" msgstr "Main: ouvrir fichier\n"
#: nano.c:1925 #: nano.c:1934
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "J'ai reчu Alt-[-%c! (%d)\n" msgstr "J'ai reчu Alt-[-%c! (%d)\n"
#: nano.c:1949 #: nano.c:1958
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "J'ai reчu Alt-[-%c! (%d)\n" msgstr "J'ai reчu Alt-[-%c! (%d)\n"
#: nano.c:1982 #: nano.c:1991
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "J'ai reчu Alt-[-%c! (%d)\n" msgstr "J'ai reчu Alt-[-%c! (%d)\n"
#: nano.c:2030 #: nano.c:2039
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "J'ai reчu Alt-[-%c! (%d)\n" msgstr "J'ai reчu Alt-[-%c! (%d)\n"
#: nano.c:2056 #: nano.c:2065
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "J'ai reчu Alt-%c! (%d)\n" msgstr "J'ai reчu Alt-%c! (%d)\n"

Двоичные данные
po/id.gmo

Двоичный файл не отображается.

Просмотреть файл

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano-0.9.10\n" "Project-Id-Version: nano-0.9.10\n"
"POT-Creation-Date: 2000-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" "PO-Revision-Date: 2000-06-08 20:56+07:00\n"
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n" "Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
"Language-Team: Indonesian <id@li.org>\n" "Language-Team: Indonesian <id@li.org>\n"
@ -47,63 +47,63 @@ msgstr "File Baru"
msgid "File \"%s\" is a directory" msgid "File \"%s\" is a directory"
msgstr "File \"%s\" adalah sebuah direktori" msgstr "File \"%s\" adalah sebuah direktori"
#: files.c:235 #: files.c:236
msgid "Reading File" msgid "Reading File"
msgstr "Membaca File" msgstr "Membaca File"
#: files.c:248 #: files.c:249
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File untuk disisipkan " 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" msgid "Cancelled"
msgstr "Dibatalkan" 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 #, c-format
msgid "Could not open file for writing: %s" msgid "Could not open file for writing: %s"
msgstr "Tidak dapat membuka file untuk menulis: %s" msgstr "Tidak dapat membuka file untuk menulis: %s"
#: files.c:327 #: files.c:328
msgid "Could not open file: Path length exceeded." msgid "Could not open file: Path length exceeded."
msgstr "Tidak dapat membuka file: panjang path terlampaui" msgstr "Tidak dapat membuka file: panjang path terlampaui"
#: files.c:357 #: files.c:358
#, c-format #, c-format
msgid "Wrote >%s\n" msgid "Wrote >%s\n"
msgstr "Tulis >%s\n" msgstr "Tulis >%s\n"
#: files.c:384 #: files.c:385
#, c-format #, c-format
msgid "Could not close %s: %s" msgid "Could not close %s: %s"
msgstr "Tidak dapat menutup %s: %s" msgstr "Tidak dapat menutup %s: %s"
#. Try a rename?? #. Try a rename??
#: files.c:405 files.c:416 files.c:421 #: files.c:406 files.c:417 files.c:422
#, c-format #, c-format
msgid "Could not open %s for writing: %s" msgid "Could not open %s for writing: %s"
msgstr "Tidak dapat membuka %s untuk menulis: %s" msgstr "Tidak dapat membuka %s untuk menulis: %s"
#: files.c:427 #: files.c:428
#, c-format #, c-format
msgid "Could not set permissions %o on %s: %s" msgid "Could not set permissions %o on %s: %s"
msgstr "Tidak dapat menset permisi %o pada %s: %s" msgstr "Tidak dapat menset permisi %o pada %s: %s"
#: files.c:434 #: files.c:435
#, c-format #, c-format
msgid "Wrote %d lines" msgid "Wrote %d lines"
msgstr "Menulis %d baris" msgstr "Menulis %d baris"
#: files.c:466 #: files.c:467
msgid "File Name to write" msgid "File Name to write"
msgstr "Nama file untuk ditulis" msgstr "Nama file untuk ditulis"
#: files.c:471 #: files.c:472
#, c-format #, c-format
msgid "filename is %s" msgid "filename is %s"
msgstr "Namafile adalah %s" msgstr "Namafile adalah %s"
#: files.c:476 #: files.c:477
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "File ada, DITIMPA ?" msgstr "File ada, DITIMPA ?"
@ -713,39 +713,39 @@ msgstr ""
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:1878 #: nano.c:1880
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: menset jendela\n" msgstr "Main: menset jendela\n"
#: nano.c:1885 #: nano.c:1894
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: jendela bawah\n" msgstr "Main: jendela bawah\n"
#: nano.c:1891 #: nano.c:1900
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: membuka file\n" msgstr "Main: membuka file\n"
#: nano.c:1925 #: nano.c:1934
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:1949 #: nano.c:1958
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:1982 #: nano.c:1991
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2030 #: nano.c:2039
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2056 #: nano.c:2065
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"

Двоичные данные
po/it.gmo

Двоичный файл не отображается.

Просмотреть файл

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.7\n" "Project-Id-Version: 0.8.7\n"
"POT-Creation-Date: 2000-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" "PO-Revision-Date: 2000-03-03 04:57+0100\n"
"Last-Translator: Daniele Medri <madrid@linux.it>\n" "Last-Translator: Daniele Medri <madrid@linux.it>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -47,63 +47,63 @@ msgstr "Nuovo file"
msgid "File \"%s\" is a directory" msgid "File \"%s\" is a directory"
msgstr "Il file \"%s\" ш una directory" msgstr "Il file \"%s\" ш una directory"
#: files.c:235 #: files.c:236
msgid "Reading File" msgid "Reading File"
msgstr "Lettura file" msgstr "Lettura file"
#: files.c:248 #: files.c:249
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File da inserire [da ./] " 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" msgid "Cancelled"
msgstr "Cancellato" 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 #, c-format
msgid "Could not open file for writing: %s" msgid "Could not open file for writing: %s"
msgstr "Impossibile aprire il file in scrittura: %s" msgstr "Impossibile aprire il file in scrittura: %s"
#: files.c:327 #: files.c:328
msgid "Could not open file: Path length exceeded." msgid "Could not open file: Path length exceeded."
msgstr "Impossibile aprire il file: esagerata lunghezza del percorso." msgstr "Impossibile aprire il file: esagerata lunghezza del percorso."
#: files.c:357 #: files.c:358
#, c-format #, c-format
msgid "Wrote >%s\n" msgid "Wrote >%s\n"
msgstr "Scrivi >%s\n" msgstr "Scrivi >%s\n"
#: files.c:384 #: files.c:385
#, c-format #, c-format
msgid "Could not close %s: %s" msgid "Could not close %s: %s"
msgstr "Impossibile chiudere %s: %s" msgstr "Impossibile chiudere %s: %s"
#. Try a rename?? #. Try a rename??
#: files.c:405 files.c:416 files.c:421 #: files.c:406 files.c:417 files.c:422
#, c-format #, c-format
msgid "Could not open %s for writing: %s" msgid "Could not open %s for writing: %s"
msgstr "Impossibile aprire %s in scrittura: %s" msgstr "Impossibile aprire %s in scrittura: %s"
#: files.c:427 #: files.c:428
#, c-format #, c-format
msgid "Could not set permissions %o on %s: %s" msgid "Could not set permissions %o on %s: %s"
msgstr "Impossibile configurare i permessi di %o su %s: %s" msgstr "Impossibile configurare i permessi di %o su %s: %s"
#: files.c:434 #: files.c:435
#, c-format #, c-format
msgid "Wrote %d lines" msgid "Wrote %d lines"
msgstr "Scritte %d linee" msgstr "Scritte %d linee"
#: files.c:466 #: files.c:467
msgid "File Name to write" msgid "File Name to write"
msgstr "Salva con nome" msgstr "Salva con nome"
#: files.c:471 #: files.c:472
#, c-format #, c-format
msgid "filename is %s" msgid "filename is %s"
msgstr "Il nome file ш %s" msgstr "Il nome file ш %s"
#: files.c:476 #: files.c:477
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "File esistente, SOVRASCRIVERE?" msgstr "File esistente, SOVRASCRIVERE?"
@ -700,39 +700,39 @@ msgstr ""
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:1878 #: nano.c:1880
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configura finestre\n" msgstr "Main: configura finestre\n"
#: nano.c:1885 #: nano.c:1894
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: finestra inferiore\n" msgstr "Main: finestra inferiore\n"
#: nano.c:1891 #: nano.c:1900
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: apri file\n" msgstr "Main: apri file\n"
#: nano.c:1925 #: nano.c:1934
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:1949 #: nano.c:1958
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:1982 #: nano.c:1991
#, fuzzy, c-format #, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2030 #: nano.c:2039
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2056 #: nano.c:2065
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Premuto Alt-%c! (%d)\n" msgstr "Premuto Alt-%c! (%d)\n"

Просмотреть файл

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -55,7 +55,7 @@ msgstr ""
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "" 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" msgid "Cancelled"
msgstr "" msgstr ""
@ -609,118 +609,118 @@ msgstr ""
msgid "Mark UNset" msgid "Mark UNset"
msgstr "" msgstr ""
#: nano.c:867 #: nano.c:868
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "" msgstr ""
#: nano.c:918 #: nano.c:919
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "" msgstr ""
#: nano.c:971 #: nano.c:972
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "" msgstr ""
#: nano.c:1041 #: nano.c:1042
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "" msgstr ""
#: nano.c:1059 #: nano.c:1060
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "" msgstr ""
#: nano.c:1082 #: nano.c:1083
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "" msgstr ""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1088 #: nano.c:1089
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "" msgstr ""
#: nano.c:1101 #: nano.c:1102
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "" msgstr ""
#: nano.c:1119 #: nano.c:1120
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "" msgstr ""
#: nano.c:1283 #: nano.c:1284
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "" msgstr ""
#: nano.c:1285 #: nano.c:1286
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "" msgstr ""
#: nano.c:1287 #: nano.c:1288
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "" msgstr ""
#: nano.c:1289 #: nano.c:1290
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "" msgstr ""
#: nano.c:1291 #: nano.c:1292
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "" msgstr ""
#: nano.c:1293 #: nano.c:1294
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "" msgstr ""
#: nano.c:1637 #: nano.c:1638
#, c-format #, c-format
msgid "%s enable/disable" msgid "%s enable/disable"
msgstr "" msgstr ""
#: nano.c:1649 #: nano.c:1650
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
#: nano.c:1650 #: nano.c:1651
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: nano.c:1880 #: nano.c:1881
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "" msgstr ""
#: nano.c:1894 #: nano.c:1895
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "" msgstr ""
#: nano.c:1900 #: nano.c:1901
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "" msgstr ""
#: nano.c:1934 #: nano.c:1935
#, c-format #, c-format
msgid "I got Alt-O-%c! (%d)\n" msgid "I got Alt-O-%c! (%d)\n"
msgstr "" msgstr ""
#: nano.c:1958 #: nano.c:1959
#, c-format #, c-format
msgid "I got Alt-[-1-%c! (%d)\n" msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "" msgstr ""
#: nano.c:1991 #: nano.c:1992
#, c-format #, c-format
msgid "I got Alt-[-2-%c! (%d)\n" msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "" msgstr ""
#: nano.c:2039 #: nano.c:2040
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "" msgstr ""
#: nano.c:2065 #: nano.c:2066
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "" msgstr ""