Add and fix Bug #51 :-)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@459 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Chris Allegretta 2001-01-08 01:50:37 +00:00
parent 2a2e2be0c4
commit 155d620a14
9 changed files with 159 additions and 150 deletions

1
BUGS
View File

@ -84,6 +84,7 @@
- With less than a page of text, doing a page down will move the
current line to the top of the screen, which it shouldn't do. (50)
[FIXED]
- with PDCURSES, running meta-X turns off the keypad. (51) [FIXED]
** Open BUGS **

View File

@ -10,6 +10,9 @@ General -
to winio.c where it should probably be anyway. New confgure
check for _use_keypad in window sstruct. This will have to do
for now.
- Moved keypad() calls for PDCURSES from main() to window_init()
so the keypad continues to work after a Meta-X, for example.
Fixed bug #51.
- faq.html:
- Fix typos and small mistakes (Jordi).
- files.c:
@ -28,6 +31,10 @@ General -
on entering various dirs (Rocco).
- Don't ungetch() the exit key, unneeded, fixes inerting a file
causes exit code.
- move.c:
page_down()
- Don't do an edit_update when there is only one page of text
(fileage == edittop && filebot == editbot). Fixes Bug #50.
- nano.c:
main()
- Reorder the getopt options to be more or less alphabetical

13
nano.c
View File

@ -1644,6 +1644,13 @@ void window_init(void)
topwin = newwin(2, COLS, 0, 0);
bottomwin = newwin(3 - no_help(), COLS, LINES - 3 + no_help(), 0);
#ifdef PDCURSES
/* Oops, I guess we need this again.
Moved here so the keypad still works after a Meta-X, for example */
keypad(edit, TRUE);
keypad(bottomwin, TRUE);
#endif
}
void mouse_init(void)
@ -2253,12 +2260,6 @@ int main(int argc, char *argv[])
edit_refresh();
reset_cursor();
#ifdef PDCURSES
/* Oops, I guess we need this again */
keypad(edit, TRUE);
keypad(bottomwin, TRUE);
#endif
while (1) {
#ifndef _POSIX_VDISABLE

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 0.9.17\n"
"POT-Creation-Date: 2001-01-07 02:32-0500\n"
"POT-Creation-Date: 2001-01-07 20:37-0500\n"
"PO-Revision-Date: 2000-09-09 11:55+0200\n"
"Last-Translator: Florian König <floki@bigfoot.com>\n"
"Language-Team: German <floki@bigfoot.com>\n"
@ -757,56 +757,56 @@ msgstr "Kann Gr
msgid "Cannot move bottom win"
msgstr "Kann unteres Fenster nicht verschieben"
#: nano.c:1876
#: nano.c:1883
msgid "Can now UnJustify!"
msgstr ""
#: nano.c:1971
#: nano.c:1978
#, c-format
msgid "%s enable/disable"
msgstr "%s aktivieren/deaktivieren"
#: nano.c:1984
#: nano.c:1991
msgid "enabled"
msgstr "aktiviert"
#: nano.c:1985
#: nano.c:1992
msgid "disabled"
msgstr "deaktiviert"
#: nano.c:2223
#: nano.c:2230
msgid "Main: set up windows\n"
msgstr "Hauptprogramm: Fenster konfigurieren\n"
#: nano.c:2230
#: nano.c:2237
msgid "Main: bottom win\n"
msgstr "Hauptprogramm: unteres Fenster\n"
#: nano.c:2236
#: nano.c:2243
msgid "Main: open file\n"
msgstr "Hauptprogramm: Datei öffnen\n"
#: nano.c:2282
#: nano.c:2283
#, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2310
#: nano.c:2311
#, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2343
#: nano.c:2344
#, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2391
#: nano.c:2392
#, c-format
msgid "I got Alt-[-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:2417
#: nano.c:2418
#, c-format
msgid "I got Alt-%c! (%d)\n"
msgstr "Erhielt Alt-%c! (%d)\n"
@ -961,48 +961,48 @@ msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)"
#: winio.c:1305
#: winio.c:1303
msgid "Dumping file buffer to stderr...\n"
msgstr "Gebe Datei Puffer nach stderr aus...\n"
#: winio.c:1307
#: winio.c:1305
msgid "Dumping cutbuffer to stderr...\n"
msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n"
#: winio.c:1309
#: winio.c:1307
msgid "Dumping a buffer to stderr...\n"
msgstr "Gebe einen Puffer nach stderr aus...\n"
#: winio.c:1384
#: winio.c:1382
msgid "The nano text editor"
msgstr ""
#: winio.c:1385
#: winio.c:1383
#, fuzzy
msgid "version "
msgstr "Version"
#: winio.c:1386
#: winio.c:1384
msgid "Brought to you by:"
msgstr ""
#: winio.c:1387
#: winio.c:1385
msgid "Special thanks to:"
msgstr ""
#: winio.c:1388
#: winio.c:1386
msgid "The Free Software Foundation"
msgstr ""
#: winio.c:1389
#: winio.c:1387
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
msgstr ""
#: winio.c:1390
#: winio.c:1388
msgid "and anyone else we forgot..."
msgstr ""
#: winio.c:1391
#: winio.c:1389
msgid "Thank you for using nano!\n"
msgstr ""

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 0.9.24-CVS\n"
"POT-Creation-Date: 2001-01-07 02:32-0500\n"
"POT-Creation-Date: 2001-01-07 20:37-0500\n"
"PO-Revision-Date: 2001-01-04 17:45+0100\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <es@li.org>\n"
@ -754,56 +754,56 @@ msgstr "No se puede cambiar el tama
msgid "Cannot move bottom win"
msgstr "No se puede mover la ventana inferior"
#: nano.c:1876
#: nano.c:1883
msgid "Can now UnJustify!"
msgstr "Ahora puedes desjustificar!"
#: nano.c:1971
#: nano.c:1978
#, c-format
msgid "%s enable/disable"
msgstr "%s habilitar/deshabilitar"
#: nano.c:1984
#: nano.c:1991
msgid "enabled"
msgstr "habilitado"
#: nano.c:1985
#: nano.c:1992
msgid "disabled"
msgstr "deshabilitado"
#: nano.c:2223
#: nano.c:2230
msgid "Main: set up windows\n"
msgstr "Main: configurar las ventanas\n"
#: nano.c:2230
#: nano.c:2237
msgid "Main: bottom win\n"
msgstr "Main: ventana inferior\n"
#: nano.c:2236
#: nano.c:2243
msgid "Main: open file\n"
msgstr "Main: abrir fichero\n"
#: nano.c:2282
#: nano.c:2283
#, c-format
msgid "I got Alt-O-%c! (%d)\n"
msgstr "Pillé Alt-O-%c! (%d)\n"
#: nano.c:2310
#: nano.c:2311
#, c-format
msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Pillé Alt-[-1-%c! (%d)\n"
#: nano.c:2343
#: nano.c:2344
#, c-format
msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Pillé Alt-[-2-%c! (%d)\n"
#: nano.c:2391
#: nano.c:2392
#, c-format
msgid "I got Alt-[-%c! (%d)\n"
msgstr "Pillé Alt-[-%c! (%d)\n"
#: nano.c:2417
#: nano.c:2418
#, c-format
msgid "I got Alt-%c! (%d)\n"
msgstr "Pillé Alt-%c! (%d)\n"
@ -955,46 +955,46 @@ msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "línea %d de %d (%.0f%%), carácter %d de %d (%.0f%%)"
#: winio.c:1305
#: winio.c:1303
msgid "Dumping file buffer to stderr...\n"
msgstr "Volcando buffer de fichero a stderr...\n"
#: winio.c:1307
#: winio.c:1305
msgid "Dumping cutbuffer to stderr...\n"
msgstr "Volcando el cutbuffer a stderr...\n"
#: winio.c:1309
#: winio.c:1307
msgid "Dumping a buffer to stderr...\n"
msgstr "Volcando un buffer a stderr...\n"
#: winio.c:1384
#: winio.c:1382
msgid "The nano text editor"
msgstr "El editor de textos nano"
#: winio.c:1385
#: winio.c:1383
msgid "version "
msgstr "versión "
#: winio.c:1386
#: winio.c:1384
msgid "Brought to you by:"
msgstr "Por cortesía de:"
#: winio.c:1387
#: winio.c:1385
msgid "Special thanks to:"
msgstr "Agradecimientos especiales para:"
#: winio.c:1388
#: winio.c:1386
msgid "The Free Software Foundation"
msgstr "La Free Software Foundation"
#: winio.c:1389
#: winio.c:1387
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
msgstr "Pavel Curtis, Zeyd Ben-Halim y Eric S. Raymond por ncurses"
#: winio.c:1390
#: winio.c:1388
msgid "and anyone else we forgot..."
msgstr "y cualquiera del que nos hayamos olvidado..."
#: winio.c:1391
#: winio.c:1389
msgid "Thank you for using nano!\n"
msgstr "Gracias por usar nano!\n"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano 0.9.11\n"
"POT-Creation-Date: 2001-01-07 02:32-0500\n"
"POT-Creation-Date: 2001-01-07 20:37-0500\n"
"PO-Revision-Date: 2000-06-21 23:08+03:00\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\n"
@ -752,56 +752,56 @@ msgstr "Alaikkunan kokoa ei voi muuttaa"
msgid "Cannot move bottom win"
msgstr "Alaikkunaa ei voi siirtää"
#: nano.c:1876
#: nano.c:1883
msgid "Can now UnJustify!"
msgstr ""
#: nano.c:1971
#: nano.c:1978
#, c-format
msgid "%s enable/disable"
msgstr ""
#: nano.c:1984
#: nano.c:1991
msgid "enabled"
msgstr ""
#: nano.c:1985
#: nano.c:1992
msgid "disabled"
msgstr ""
#: nano.c:2223
#: nano.c:2230
msgid "Main: set up windows\n"
msgstr "Päätila: ikkunoiden asettelu\n"
#: nano.c:2230
#: nano.c:2237
msgid "Main: bottom win\n"
msgstr "Päätila: alaikkuna\n"
#: nano.c:2236
#: nano.c:2243
msgid "Main: open file\n"
msgstr "Päätila: avaa tiedosto\n"
#: nano.c:2282
#: nano.c:2283
#, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2310
#: nano.c:2311
#, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2343
#: nano.c:2344
#, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2391
#: nano.c:2392
#, c-format
msgid "I got Alt-[-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:2417
#: nano.c:2418
#, c-format
msgid "I got Alt-%c! (%d)\n"
msgstr "Vastaanotettu Alt-%c! (%d)\n"
@ -955,47 +955,47 @@ msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)"
#: winio.c:1305
#: winio.c:1303
msgid "Dumping file buffer to stderr...\n"
msgstr "Syötetään tiedosto stderriin...\n"
#: winio.c:1307
#: winio.c:1305
msgid "Dumping cutbuffer to stderr...\n"
msgstr "Syötetään leiketila stderriin...\n"
#: winio.c:1309
#: winio.c:1307
msgid "Dumping a buffer to stderr...\n"
msgstr "Syötetään teksti stderriin...\n"
#: winio.c:1384
#: winio.c:1382
msgid "The nano text editor"
msgstr ""
#: winio.c:1385
#: winio.c:1383
msgid "version "
msgstr ""
#: winio.c:1386
#: winio.c:1384
msgid "Brought to you by:"
msgstr ""
#: winio.c:1387
#: winio.c:1385
msgid "Special thanks to:"
msgstr ""
#: winio.c:1388
#: winio.c:1386
msgid "The Free Software Foundation"
msgstr ""
#: winio.c:1389
#: winio.c:1387
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
msgstr ""
#: winio.c:1390
#: winio.c:1388
msgid "and anyone else we forgot..."
msgstr ""
#: winio.c:1391
#: winio.c:1389
msgid "Thank you for using nano!\n"
msgstr ""

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 0.8.9\n"
"POT-Creation-Date: 2001-01-07 02:32-0500\n"
"POT-Creation-Date: 2001-01-07 20:37-0500\n"
"PO-Revision-Date: 2000-07-09 01:32+0100\n"
"Last-Translator: Clement Laforet <sheep.killer@free.fr>\n"
"Language-Team: French <LL@li.org>\n"
@ -771,56 +771,56 @@ msgstr "Impossible de redimensionner la fen
msgid "Cannot move bottom win"
msgstr "Impossible de bouger la fenêtre du bas"
#: nano.c:1876
#: nano.c:1883
msgid "Can now UnJustify!"
msgstr ""
#: nano.c:1971
#: nano.c:1978
#, c-format
msgid "%s enable/disable"
msgstr ""
#: nano.c:1984
#: nano.c:1991
msgid "enabled"
msgstr ""
#: nano.c:1985
#: nano.c:1992
msgid "disabled"
msgstr ""
#: nano.c:2223
#: nano.c:2230
msgid "Main: set up windows\n"
msgstr "Main: configuration des fenêtres\n"
#: nano.c:2230
#: nano.c:2237
msgid "Main: bottom win\n"
msgstr "Main: fenêtre du bas\n"
#: nano.c:2236
#: nano.c:2243
msgid "Main: open file\n"
msgstr "Main: ouvrir fichier\n"
#: nano.c:2282
#: nano.c:2283
#, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n"
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
#: nano.c:2310
#: nano.c:2311
#, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
#: nano.c:2343
#: nano.c:2344
#, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
#: nano.c:2391
#: nano.c:2392
#, c-format
msgid "I got Alt-[-%c! (%d)\n"
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
#: nano.c:2417
#: nano.c:2418
#, c-format
msgid "I got Alt-%c! (%d)\n"
msgstr "J'ai reçu Alt-%c! (%d)\n"
@ -974,47 +974,47 @@ msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "ligne %d sur %d (%.0f%%), caractère %d sur %d (%.0f%%)"
#: winio.c:1305
#: winio.c:1303
msgid "Dumping file buffer to stderr...\n"
msgstr "Envoi du buffer fichier sur stderr...\n"
#: winio.c:1307
#: winio.c:1305
msgid "Dumping cutbuffer to stderr...\n"
msgstr "Envoi du cutbuffer sur stderr...\n"
#: winio.c:1309
#: winio.c:1307
msgid "Dumping a buffer to stderr...\n"
msgstr "Envoi d'un buffer sur stderr...\n"
#: winio.c:1384
#: winio.c:1382
msgid "The nano text editor"
msgstr ""
#: winio.c:1385
#: winio.c:1383
msgid "version "
msgstr ""
#: winio.c:1386
#: winio.c:1384
msgid "Brought to you by:"
msgstr ""
#: winio.c:1387
#: winio.c:1385
msgid "Special thanks to:"
msgstr ""
#: winio.c:1388
#: winio.c:1386
msgid "The Free Software Foundation"
msgstr ""
#: winio.c:1389
#: winio.c:1387
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
msgstr ""
#: winio.c:1390
#: winio.c:1388
msgid "and anyone else we forgot..."
msgstr ""
#: winio.c:1391
#: winio.c:1389
msgid "Thank you for using nano!\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: nano-0.9.10\n"
"POT-Creation-Date: 2001-01-07 02:32-0500\n"
"POT-Creation-Date: 2001-01-07 20:37-0500\n"
"PO-Revision-Date: 2000-06-08 20:56+07:00\n"
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
"Language-Team: Indonesian <id@li.org>\n"
@ -751,56 +751,56 @@ msgstr "Tidak dapat mengganti ukuran jendela bawah"
msgid "Cannot move bottom win"
msgstr "Tidak dapat memindah jendela bawah"
#: nano.c:1876
#: nano.c:1883
msgid "Can now UnJustify!"
msgstr ""
#: nano.c:1971
#: nano.c:1978
#, c-format
msgid "%s enable/disable"
msgstr ""
#: nano.c:1984
#: nano.c:1991
msgid "enabled"
msgstr ""
#: nano.c:1985
#: nano.c:1992
msgid "disabled"
msgstr ""
#: nano.c:2223
#: nano.c:2230
msgid "Main: set up windows\n"
msgstr "Main: menset jendela\n"
#: nano.c:2230
#: nano.c:2237
msgid "Main: bottom win\n"
msgstr "Main: jendela bawah\n"
#: nano.c:2236
#: nano.c:2243
msgid "Main: open file\n"
msgstr "Main: membuka file\n"
#: nano.c:2282
#: nano.c:2283
#, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2310
#: nano.c:2311
#, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2343
#: nano.c:2344
#, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2391
#: nano.c:2392
#, c-format
msgid "I got Alt-[-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:2417
#: nano.c:2418
#, c-format
msgid "I got Alt-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n"
@ -954,47 +954,47 @@ msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)"
#: winio.c:1305
#: winio.c:1303
msgid "Dumping file buffer to stderr...\n"
msgstr "Kirim buffer file ke stderr...\n"
#: winio.c:1307
#: winio.c:1305
msgid "Dumping cutbuffer to stderr...\n"
msgstr "Kirim cutbuffer ke stderr...\n"
#: winio.c:1309
#: winio.c:1307
msgid "Dumping a buffer to stderr...\n"
msgstr "Kirim buffer ke stderr...\n"
#: winio.c:1384
#: winio.c:1382
msgid "The nano text editor"
msgstr ""
#: winio.c:1385
#: winio.c:1383
msgid "version "
msgstr ""
#: winio.c:1386
#: winio.c:1384
msgid "Brought to you by:"
msgstr ""
#: winio.c:1387
#: winio.c:1385
msgid "Special thanks to:"
msgstr ""
#: winio.c:1388
#: winio.c:1386
msgid "The Free Software Foundation"
msgstr ""
#: winio.c:1389
#: winio.c:1387
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
msgstr ""
#: winio.c:1390
#: winio.c:1388
msgid "and anyone else we forgot..."
msgstr ""
#: winio.c:1391
#: winio.c:1389
msgid "Thank you for using nano!\n"
msgstr ""

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 0.8.7\n"
"POT-Creation-Date: 2001-01-07 02:32-0500\n"
"POT-Creation-Date: 2001-01-07 20:37-0500\n"
"PO-Revision-Date: 2000-03-03 04:57+0100\n"
"Last-Translator: Daniele Medri <madrid@linux.it>\n"
"MIME-Version: 1.0\n"
@ -738,56 +738,56 @@ msgstr "Impossibile ridimensionare la finestra inferiore"
msgid "Cannot move bottom win"
msgstr "Impossibile spostare la finestra inferiore"
#: nano.c:1876
#: nano.c:1883
msgid "Can now UnJustify!"
msgstr ""
#: nano.c:1971
#: nano.c:1978
#, c-format
msgid "%s enable/disable"
msgstr ""
#: nano.c:1984
#: nano.c:1991
msgid "enabled"
msgstr ""
#: nano.c:1985
#: nano.c:1992
msgid "disabled"
msgstr ""
#: nano.c:2223
#: nano.c:2230
msgid "Main: set up windows\n"
msgstr "Main: configura finestre\n"
#: nano.c:2230
#: nano.c:2237
msgid "Main: bottom win\n"
msgstr "Main: finestra inferiore\n"
#: nano.c:2236
#: nano.c:2243
msgid "Main: open file\n"
msgstr "Main: apri file\n"
#: nano.c:2282
#: nano.c:2283
#, fuzzy, c-format
msgid "I got Alt-O-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2310
#: nano.c:2311
#, fuzzy, c-format
msgid "I got Alt-[-1-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2343
#: nano.c:2344
#, fuzzy, c-format
msgid "I got Alt-[-2-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2391
#: nano.c:2392
#, c-format
msgid "I got Alt-[-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:2417
#: nano.c:2418
#, c-format
msgid "I got Alt-%c! (%d)\n"
msgstr "Premuto Alt-%c! (%d)\n"
@ -941,47 +941,47 @@ msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)"
#: winio.c:1305
#: winio.c:1303
msgid "Dumping file buffer to stderr...\n"
msgstr "Copia file buffer sullo stderr...\n"
#: winio.c:1307
#: winio.c:1305
msgid "Dumping cutbuffer to stderr...\n"
msgstr "Copia cutbuffer sullo stderr...\n"
#: winio.c:1309
#: winio.c:1307
msgid "Dumping a buffer to stderr...\n"
msgstr "Copia un buffer sullo stderr...\n"
#: winio.c:1384
#: winio.c:1382
msgid "The nano text editor"
msgstr ""
#: winio.c:1385
#: winio.c:1383
msgid "version "
msgstr ""
#: winio.c:1386
#: winio.c:1384
msgid "Brought to you by:"
msgstr ""
#: winio.c:1387
#: winio.c:1385
msgid "Special thanks to:"
msgstr ""
#: winio.c:1388
#: winio.c:1386
msgid "The Free Software Foundation"
msgstr ""
#: winio.c:1389
#: winio.c:1387
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
msgstr ""
#: winio.c:1390
#: winio.c:1388
msgid "and anyone else we forgot..."
msgstr ""
#: winio.c:1391
#: winio.c:1389
msgid "Thank you for using nano!\n"
msgstr ""