From 4a867d54793d8208b651d4db578334e03794246f Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sat, 27 Dec 2003 16:35:22 +0000 Subject: [PATCH] DLR's latest 1.2 patch git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_2_branch/nano@1604 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 35 ++- files.c | 21 +- nano.c | 20 +- nanorc.sample | 3 - po/ca.po | 199 +++++++++++----- po/cs.po | 46 ++-- po/da.po | 46 ++-- po/de.po | 46 ++-- po/es.po | 46 ++-- po/eu.po | 46 ++-- po/fi.po | 46 ++-- po/fr.po | 214 ++++++++++++----- po/gl.po | 46 ++-- po/hu.po | 46 ++-- po/id.po | 46 ++-- po/it.po | 46 ++-- po/ms.po | 46 ++-- po/nb.po | 46 ++-- po/nl.po | 46 ++-- po/nn.po | 46 ++-- po/pl.po | 46 ++-- po/pt_BR.po | 46 ++-- po/ro.po | 200 +++++++++++----- po/ru.po | 46 ++-- po/sr.po | 183 ++++++++++----- po/sv.po | 46 ++-- po/tr.po | 627 ++++++++++++++++++++++++++------------------------ po/uk.po | 46 ++-- proto.h | 4 +- rcfile.c | 2 + search.c | 109 +++++---- 31 files changed, 1456 insertions(+), 1035 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2aacf737..62051c62 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,16 +1,41 @@ CVS code - - General: - Translation updates (see po/ChangeLog for details). + - Make sure the "historylog" option isn't included at all if + NANO_SMALL is defined. (DLR) +- files.c: + read_file() + - After we've read in a file and possibly converted it from + DOS/Mac format, set fileformat back to 0 to prevent erroneous + conversion messages when we read other files in. (DLR) + do_browser() + - Allow '?' to open the help browser, for compatibility with + Pico. Also remove some of the Pico compatibility options in + the file browser that don't work properly for current Pico. + Backspace, 'l', 'q', and 'u' are invalid. 'd' deletes the + highlighted file, and 'r' renames the highlighted file; + neither of these are implemented. (DLR) - nano.c: + window_init() + - If keypad() was TRUE before we pressed Meta-X (as Meta-X + apparently turns it off under both ncurses and PDCurses), set + it to TRUE afterwards. (DLR) do_suspend() - Use handle_hupterm() to handle SIGHUP and SIGTERM so we can properly deal with them while nano is suspended. (DLR; problem found by David Benbennick) +- proto.h: + - Surround the do_prev_word() and do_next_word() prototypes with + NANO_SMALL #ifdefs, since the actual functions aren't included + in tiny mode. (DLR) - search.c: - do_replace_loop() - - Fix potential infinite loop when doing a forward regex replace - of "$". (DLR; found by Mike Frysinger) - + findnextstr(), do_replace_loop() + - Fix potential infinite loops and other misbehavior when doing + certain zero-length regex replacements ("^", "$", and "^$"). + Add a no_sameline parameter to findnextstr(), and set it in + the calls in do_replace_loop() when such regexes are found, so + that such regexes are only found once per line. (DLR; found by + Mike Frysinger and DLR, match_len by David Benbennick) - winio.c: titlebar() - Fix problem with the available space for a filename on the @@ -18,6 +43,8 @@ CVS code - do_credits() - Update the copyright years to "1999-2003", to match those given in the rest of the code. (DLR) +- nanorc.sample: + - Remove duplicate "historylog" entry. (DLR) - AUTHORS: - Updated to show 1.2/1.3 maintainers. - THANKS: diff --git a/files.c b/files.c index b70ed946..ae436734 100644 --- a/files.c +++ b/files.c @@ -326,6 +326,12 @@ int read_file(FILE *f, const char *filename, int quiet) statusbar(P_("Read %d line", "Read %d lines", num_lines), num_lines); +#ifndef NANO_SMALL + /* Set fileformat back to 0, now that we've read the file in and + possibly converted it from DOS/Mac format. */ + fileformat = 0; +#endif + totlines += num_lines; return 1; @@ -2570,34 +2576,28 @@ char *do_browser(const char *inpath) #endif case NANO_UP_KEY: case KEY_UP: - case 'u': if (selected - width >= 0) selected -= width; break; case NANO_BACK_KEY: case KEY_LEFT: - case NANO_BACKSPACE_KEY: - case 127: - case 'l': if (selected > 0) selected--; break; case KEY_DOWN: case NANO_DOWN_KEY: - case 'd': if (selected + width <= numents - 1) selected += width; break; case KEY_RIGHT: case NANO_FORWARD_KEY: - case 'r': if (selected < numents - 1) selected++; break; case NANO_PREVPAGE_KEY: case NANO_PREVPAGE_FKEY: case KEY_PPAGE: - case '-': + case '-': /* Pico compatibility */ if (selected >= (editwinrows + lineno % editwinrows) * width) selected -= (editwinrows + lineno % editwinrows) * width; else @@ -2606,19 +2606,20 @@ char *do_browser(const char *inpath) case NANO_NEXTPAGE_KEY: case NANO_NEXTPAGE_FKEY: case KEY_NPAGE: - case ' ': + case ' ': /* Pico compatibility */ selected += (editwinrows - lineno % editwinrows) * width; if (selected >= numents) selected = numents - 1; break; case NANO_HELP_KEY: case NANO_HELP_FKEY: + case '?': /* Pico compatibility */ do_help(); break; case KEY_ENTER: case NANO_ENTER_KEY: - case 's': /* More Pico compatibility */ - case 'S': + case 'S': /* Pico compatibility */ + case 's': /* You can't cd up from / */ if (!strcmp(filelist[selected], "/..") && !strcmp(path, "/")) { statusbar(_("Can't move up a directory")); diff --git a/nano.c b/nano.c index 00272be8..bf052aef 100644 --- a/nano.c +++ b/nano.c @@ -239,12 +239,16 @@ 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); + works after a Meta-X, for example, if we were using it before. */ + if (!ISSET(ALT_KEYPAD) +#if !defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION) + || ISSET(USE_MOUSE) #endif + ) { + keypad(edit, TRUE); + keypad(bottomwin, TRUE); + } } #if !defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION) @@ -636,7 +640,9 @@ void usage(void) print1opt("-F", "--multibuffer", _("Enable multiple file buffers")); #endif #ifdef ENABLE_NANORC +#ifndef NANO_SMALL print1opt("-H", "--historylog", _("Log & read search/replace string history")); +#endif print1opt("-I", "--ignorercfiles", _("Don't look at nanorc files")); #endif print1opt("-K", "--keypad", _("Use alternate keypad routines")); @@ -1619,7 +1625,7 @@ int do_int_spell_fix(const char *word) search_last_line = FALSE; /* We find the first whole-word occurrence of word. */ - while (findnextstr(TRUE, TRUE, fileage, -1, word)) + while (findnextstr(TRUE, TRUE, fileage, -1, word, 0)) if (is_whole_word(current_x, current->data, word)) { edit_refresh(); @@ -3022,7 +3028,9 @@ int main(int argc, char *argv[]) {"multibuffer", 0, 0, 'F'}, #endif #ifdef ENABLE_NANORC +#ifndef NANO_SMALL {"historylog", 0, 0, 'H'}, +#endif {"ignorercfiles", 0, 0, 'I'}, #endif {"keypad", 0, 0, 'K'}, @@ -3117,9 +3125,11 @@ int main(int argc, char *argv[]) break; #endif #ifdef ENABLE_NANORC +#ifndef NANO_SMALL case 'H': SET(HISTORYLOG); break; +#endif case 'I': SET(NO_RCFILE); break; diff --git a/nanorc.sample b/nanorc.sample index 93deea9c..0a840bb1 100644 --- a/nanorc.sample +++ b/nanorc.sample @@ -89,9 +89,6 @@ ## Save automatically on exit, don't prompt # set tempfile -## Enable ~/.nano_history for saving and reading search/replace strings. -# set historylog - ## Disallow file modification, why would you want this in an rc file? ;) # set view diff --git a/po/ca.po b/po/ca.po index 63f0baab..803cdc93 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.2\n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-10-18 12:48+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -126,12 +127,16 @@ msgstr "No s'ha pogut establir permisos %o en la c #: files.c:1419 #, c-format msgid "Could not set owner %d/group %d on backup %s: %s" -msgstr "No s'ha pogut establir el propietari %d/grup %d en la cpia de seguretat %s: %s" +msgstr "" +"No s'ha pogut establir el propietari %d/grup %d en la cpia de seguretat %s: " +"%s" #: files.c:1424 #, c-format msgid "Could not set access/modification time on backup %s: %s" -msgstr "No s'ha pogut establir la data d'accs modificaci en la cpia de seguretat %s: %s" +msgstr "" +"No s'ha pogut establir la data d'accs modificaci en la cpia de seguretat %" +"s: %s" #: files.c:1459 files.c:1475 files.c:1487 files.c:1509 files.c:1542 #: files.c:1549 files.c:1561 @@ -733,18 +738,27 @@ msgstr "La tecla msgid "" "Search Command Help Text\n" "\n" -" Enter the words or characters you would like to search for, then hit enter. If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.\n" +" Enter the words or characters you would like to search for, then hit " +"enter. If there is a match for the text you entered, the screen will be " +"updated to the location of the nearest match for the search string.\n" "\n" -" The previous search string will be shown in brackets after the Search: prompt. Hitting Enter without entering any text will perform the previous search.\n" +" The previous search string will be shown in brackets after the Search: " +"prompt. Hitting Enter without entering any text will perform the previous " +"search.\n" "\n" " The following function keys are available in Search mode:\n" "\n" msgstr "" "Text d'ajuda per a l'ordre Cerca\n" "\n" -" Introduu les paraules o carcters que voleu cercar i premeu Retorn. Si hi ha una coincidncia per a el text que heu introdut, la pantalla s'actualitzar al lloc on est la coincidncia de la cadena cercada ms propera.\n" +" Introduu les paraules o carcters que voleu cercar i premeu Retorn. Si hi " +"ha una coincidncia per a el text que heu introdut, la pantalla " +"s'actualitzar al lloc on est la coincidncia de la cadena cercada ms " +"propera.\n" "\n" -" La cadena de la cerca anterior es mostrar entre claudtors desprs del indicatiu Cerca:. Prmer Retorn sense introduir cap texte dur a terme la anterior cerca.\n" +" La cadena de la cerca anterior es mostrar entre claudtors desprs del " +"indicatiu Cerca:. Prmer Retorn sense introduir cap texte dur a terme la " +"anterior cerca.\n" "\n" " Les segents tecles de funci estan disponibles en el mode Cerca:\n" "\n" @@ -753,14 +767,18 @@ msgstr "" msgid "" "Go To Line Help Text\n" "\n" -" Enter the line number that you wish to go to and hit Enter. If there are fewer lines of text than the number you entered, you will be brought to the last line of the file.\n" +" Enter the line number that you wish to go to and hit Enter. If there are " +"fewer lines of text than the number you entered, you will be brought to the " +"last line of the file.\n" "\n" " The following function keys are available in Go To Line mode:\n" "\n" msgstr "" "Text d'ajuda d'Anar a lnia\n" "\n" -" Introduu el nmero de la lnia a la que voleu anar i premeu Retorn. Si hi ha menys lnias de texte que el nmero que heu introduit, el cursor es mour a la ltima lnia del fitxer.\n" +" Introduu el nmero de la lnia a la que voleu anar i premeu Retorn. Si hi " +"ha menys lnias de texte que el nmero que heu introduit, el cursor es mour " +"a la ltima lnia del fitxer.\n" "\n" " Les segents tecles de funci estan disponibles en el mode Anar a lnia:\n" "\n" @@ -769,42 +787,61 @@ msgstr "" msgid "" "Insert File Help Text\n" "\n" -" Type in the name of a file to be inserted into the current file buffer at the current cursor location.\n" +" Type in the name of a file to be inserted into the current file buffer at " +"the current cursor location.\n" "\n" -" If you have compiled nano with multiple file buffer support, and enable multiple buffers with the -F or --multibuffer command line flags, the Meta-F toggle, or a nanorc file, inserting a file will cause it to be loaded into a separate buffer (use Meta-< and > to switch between file buffers).\n" +" If you have compiled nano with multiple file buffer support, and enable " +"multiple buffers with the -F or --multibuffer command line flags, the Meta-F " +"toggle, or a nanorc file, inserting a file will cause it to be loaded into a " +"separate buffer (use Meta-< and > to switch between file buffers).\n" "\n" -" If you need another blank buffer, do not enter any filename, or type in a nonexistent filename at the prompt and press Enter.\n" +" If you need another blank buffer, do not enter any filename, or type in a " +"nonexistent filename at the prompt and press Enter.\n" "\n" " The following function keys are available in Insert File mode:\n" "\n" msgstr "" "Text d'ajuda d'Insereix Fitxer\n" "\n" -" Escriviu el nom del fitxer a afegir en el bfer actual en la posici actual del cursor.\n" +" Escriviu el nom del fitxer a afegir en el bfer actual en la posici actual " +"del cursor.\n" "\n" -" Si s'ha compilat nano amb suport per a mltiples fitxers i heu habilitat els bfers mltiples amb les opcions -F o --multibuffer, l'interruptor Meta-F o amb un fitxer nanorc, la inserci d'un fitxer far que es carregue en un bfer different (feu servir Meta-< i > per a canviar de bfers de fitxer).\n" +" Si s'ha compilat nano amb suport per a mltiples fitxers i heu habilitat " +"els bfers mltiples amb les opcions -F o --multibuffer, l'interruptor Meta-" +"F o amb un fitxer nanorc, la inserci d'un fitxer far que es carregue en un " +"bfer different (feu servir Meta-< i > per a canviar de bfers de fitxer).\n" "\n" -" Si necessiteu un altre bfer en blanc, no inseriu cap nom de fitxer o escriviu el nom d'un fitxer no existent en l'indicatiu i premeu Retorn.\n" +" Si necessiteu un altre bfer en blanc, no inseriu cap nom de fitxer o " +"escriviu el nom d'un fitxer no existent en l'indicatiu i premeu Retorn.\n" "\n" -" Les segents tecles de funci estan disponibles en el mode Insereix fitxer:\n" +" Les segents tecles de funci estan disponibles en el mode Insereix " +"fitxer:\n" "\n" #: nano.c:310 msgid "" "Write File Help Text\n" "\n" -" Type the name that you wish to save the current file as and hit Enter to save the file.\n" +" Type the name that you wish to save the current file as and hit Enter to " +"save the file.\n" "\n" -" If you have selected text with Ctrl-^, you will be prompted to save only the selected portion to a separate file. To reduce the chance of overwriting the current file with just a portion of it, the current filename is not the default in this mode.\n" +" If you have selected text with Ctrl-^, you will be prompted to save only " +"the selected portion to a separate file. To reduce the chance of " +"overwriting the current file with just a portion of it, the current filename " +"is not the default in this mode.\n" "\n" " The following function keys are available in Write File mode:\n" "\n" msgstr "" "Text d'ajuda de Desa fitxer\n" "\n" -" Escriviu el nom amb el que voleu desar el fitxer actual i premeu Retorn per a salvar-ho.\n" +" Escriviu el nom amb el que voleu desar el fitxer actual i premeu Retorn per " +"a salvar-ho.\n" "\n" -" Si esteu fent servir el codi de marcat amb Ctrl-^ i heu selleccionat text, s'us preguntar si voleu desar noms la porci marcada a un fitxer diferent. Per a reduir la posibilitat de sobreescriure el fitxer actual amb noms una part d'ell, el nom del fitxer actual no s el predeterminat en aquest mode.\n" +" Si esteu fent servir el codi de marcat amb Ctrl-^ i heu selleccionat text, " +"s'us preguntar si voleu desar noms la porci marcada a un fitxer diferent. " +"Per a reduir la posibilitat de sobreescriure el fitxer actual amb noms una " +"part d'ell, el nom del fitxer actual no s el predeterminat en aquest mode.\n" "\n" " Les segents tecles de funci estan disponibles en el mode Desa fitxer:\n" "\n" @@ -813,16 +850,26 @@ msgstr "" msgid "" "File Browser Help Text\n" "\n" -" The file browser is used to visually browse the directory structure to select a file for reading or writing. You may use the arrow keys or Page Up/Down to browse through the files, and S or Enter to choose the selected file or enter the selected directory. To move up one level, select the directory called \"..\" at the top of the file list.\n" +" The file browser is used to visually browse the directory structure to " +"select a file for reading or writing. You may use the arrow keys or Page Up/" +"Down to browse through the files, and S or Enter to choose the selected file " +"or enter the selected directory. To move up one level, select the directory " +"called \"..\" at the top of the file list.\n" "\n" " The following function keys are available in the file browser:\n" "\n" msgstr "" "Text d'ajuda del Navegador de fitxers\n" "\n" -" El navegador de fitxers s'utilitza per a navegar visualment la estructura del directori per a seleccionar un fitxer per a lectura o escriptura. Podeu fer servir els cursors o Re/Av Pag per a navegar per els fitxers i S o Intro per a triar el fitxer seleccionat o entrar dins del directori seleccionat. Per a pujar un nivel, seleccioneu el directori .. en la part superior de la llista de fitxers.\n" +" El navegador de fitxers s'utilitza per a navegar visualment la estructura " +"del directori per a seleccionar un fitxer per a lectura o escriptura. Podeu " +"fer servir els cursors o Re/Av Pag per a navegar per els fitxers i S o Intro " +"per a triar el fitxer seleccionat o entrar dins del directori seleccionat. " +"Per a pujar un nivel, seleccioneu el directori .. en la part superior de " +"la llista de fitxers.\n" "\n" -" Les segents tecles de funci estan disponibles en el navegador de fitxers:\n" +" Les segents tecles de funci estan disponibles en el navegador de " +"fitxers:\n" "\n" #: nano.c:332 @@ -831,7 +878,8 @@ msgid "" "\n" " Enter the name of the directory you would like to browse to.\n" "\n" -" If tab completion has not been disabled, you can use the TAB key to (attempt to) automatically complete the directory name.\n" +" If tab completion has not been disabled, you can use the TAB key to " +"(attempt to) automatically complete the directory name.\n" "\n" " The following function keys are available in Browser Go To Directory mode:\n" "\n" @@ -840,39 +888,50 @@ msgstr "" "\n" " Introduu el nom del directori per el que voleu navegar.\n" "\n" -" Si el completat amb el tabulador no est desactivat, podeu fer servir la tecla TAB per a (intentar) completar automticament el nom del directori.\n" +" Si el completat amb el tabulador no est desactivat, podeu fer servir la " +"tecla TAB per a (intentar) completar automticament el nom del directori.\n" "\n" -" Les segents tecles de funci estan disponibles en el mode del navegador Anar a directori:\n" +" Les segents tecles de funci estan disponibles en el mode del navegador " +"Anar a directori:\n" "\n" #: nano.c:341 msgid "" "Spell Check Help Text\n" "\n" -" The spell checker checks the spelling of all text in the current file. When an unknown word is encountered, it is highlighted and a replacement can be edited. It will then prompt to replace every instance of the given misspelled word in the current file.\n" +" The spell checker checks the spelling of all text in the current file. " +"When an unknown word is encountered, it is highlighted and a replacement can " +"be edited. It will then prompt to replace every instance of the given " +"misspelled word in the current file.\n" "\n" " The following other functions are available in Spell Check mode:\n" "\n" msgstr "" "Text d'ajuda del Corrector d'Ortografia\n" "\n" -" El Corrector d'ortografia comprova la ortografia de tot el texte en el fitxer actual. Quan es troba una paraula desconeguda, aquesta es marca i es pot editar una substituci. Desprs preguntar si es vol reemplaar totes les coincidncies d'eixa paraula mal escrita el el fitxer actual.\n" +" El Corrector d'ortografia comprova la ortografia de tot el texte en el " +"fitxer actual. Quan es troba una paraula desconeguda, aquesta es marca i es " +"pot editar una substituci. Desprs preguntar si es vol reemplaar totes " +"les coincidncies d'eixa paraula mal escrita el el fitxer actual.\n" "\n" -" Les segents tecles de funci estan disponibles en el mode Corrector d'Ortografia:\n" +" Les segents tecles de funci estan disponibles en el mode Corrector " +"d'Ortografia:\n" "\n" #: nano.c:352 msgid "" "External Command Help Text\n" "\n" -" This menu allows you to insert the output of a command run by the shell into the current buffer (or a new buffer in multibuffer mode).\n" +" This menu allows you to insert the output of a command run by the shell " +"into the current buffer (or a new buffer in multibuffer mode).\n" "\n" " The following keys are available in this mode:\n" "\n" msgstr "" "Text d'ajuda de l'Ordre Externa\n" "\n" -" Aquest men vos permet inserir l'eixida d'una ordre executada per l'intrpret en el bfer actual (o un nou bfer en el mode multibuffer).\n" +" Aquest men vos permet inserir l'eixida d'una ordre executada per " +"l'intrpret en el bfer actual (o un nou bfer en el mode multibuffer).\n" "\n" " Les segents tecles de funci estan disponibles en el mode Ordre Externa:\n" @@ -880,16 +939,39 @@ msgstr "" msgid "" " nano help text\n" "\n" -" The nano editor is designed to emulate the functionality and ease-of-use of the UW Pico text editor. There are four main sections of the editor: The top line shows the program version, the current filename being edited, and whether or not the file has been modified. Next is the main editor window showing the file being edited. The status line is the third line from the bottom and shows important messages. The bottom two lines show the most commonly used shortcuts in the editor.\n" +" The nano editor is designed to emulate the functionality and ease-of-use of " +"the UW Pico text editor. There are four main sections of the editor: The " +"top line shows the program version, the current filename being edited, and " +"whether or not the file has been modified. Next is the main editor window " +"showing the file being edited. The status line is the third line from the " +"bottom and shows important messages. The bottom two lines show the most " +"commonly used shortcuts in the editor.\n" "\n" -" The notation for shortcuts is as follows: Control-key sequences are notated with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-key sequences are notated with the Meta (M) symbol and can be entered using either the Esc, Alt or Meta key depending on your keyboard setup. The following keystrokes are available in the main editor window. Alternative keys are shown in parentheses:\n" +" The notation for shortcuts is as follows: Control-key sequences are notated " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " +"following keystrokes are available in the main editor window. Alternative " +"keys are shown in parentheses:\n" "\n" msgstr "" " texte d'ajuda de nano\n" "\n" -" L'editor nano est dissenyat per a emular la funcionalitat i la facilitat d's de Pico, l'editor de text de la UW. Hi ha quatre seccions a l'editor: la lnia superior mostra la versi del programa, el nom del fitxer editat i si el fitxer ha estat o no modificat. Tamb tenim la finestra principal de edici, que mostra el fitxer que s'est editant. La lnia d'estat s la tercera des de baix i mostra missatges importants. Les ltimes dues lnies mostren les dreceres ms utilitzades a l'editor.\n" +" L'editor nano est dissenyat per a emular la funcionalitat i la facilitat " +"d's de Pico, l'editor de text de la UW. Hi ha quatre seccions a l'editor: " +"la lnia superior mostra la versi del programa, el nom del fitxer editat i " +"si el fitxer ha estat o no modificat. Tamb tenim la finestra principal de " +"edici, que mostra el fitxer que s'est editant. La lnia d'estat s la " +"tercera des de baix i mostra missatges importants. Les ltimes dues lnies " +"mostren les dreceres ms utilitzades a l'editor.\n" "\n" -" La notaci de les dreceres s la segent: les sequncies amb la tecla Control estan anotades amb el smbol circunflex (^) i sn accedides mitjanant la tecla Control. Les seqncies amb tecles d'escapada estan anotades amb el smbol Meta (M) i s'hi pot accedir mitjanant les tecles Esc, Alt o Meta, tot depenent de la configuraci del teu teclat. Les segents combinacions estan disponibles a la finestra principal. Les tecles alternatives estan representades entre parntesi:\n" +" La notaci de les dreceres s la segent: les sequncies amb la tecla " +"Control estan anotades amb el smbol circunflex (^) i sn accedides " +"mitjanant la tecla Control. Les seqncies amb tecles d'escapada estan " +"anotades amb el smbol Meta (M) i s'hi pot accedir mitjanant les tecles " +"Esc, Alt o Meta, tot depenent de la configuraci del teu teclat. Les " +"segents combinacions estan disponibles a la finestra principal. Les tecles " +"alternatives estan representades entre parntesi:\n" "\n" #: nano.c:388 nano.c:458 @@ -1205,51 +1287,52 @@ msgstr "S'ha rebut SIGHUP o SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Utilitzeu fg per a tornar a nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "No es pot canviar la mida de la finestra superior" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "No es pot moure la finestra superior" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "No es pot canviar la mida de la finestra d'edici" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "No es pot moure la finestra d'edici" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "No es pot canviar la mida de la finestra inferior" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "No es pot moure la finestra inferior" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" -msgstr "Detectat NumLock trencat. El tecl. numric funcionar amb NumLock activat" +msgstr "" +"Detectat NumLock trencat. El tecl. numric funcionar amb NumLock activat" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "habilitat" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "inhabilitat" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "La mida de la tabulaci s massa petita per a nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignorat, blah, blah." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignorat, blah, blah." @@ -1384,46 +1467,46 @@ msgstr "Recerca recomen msgid "This is the only occurrence" msgstr "Aquesta s la nica coincidncia" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Reempla cancellat" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Voleu reemplaar aquesta instncia?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "No es pot reemplaar: la subexpressi s desconeguda!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Reemplaar amb" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d ocurrncia reemplaada" msgstr[1] "%d ocurrncies reemplaades" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Introduu el nmero de lnia" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Avortat" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Au vinga, sigues assenyat" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "No s una clau" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "No hi ha clau corresponent" diff --git a/po/cs.po b/po/cs.po index 090fa85d..17c29902 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2002-01-30 16:03+0100\n" "Last-Translator: Vclav Haisman \n" "Language-Team: Czech \n" @@ -1311,54 +1311,54 @@ msgstr "P msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Nemohu zmnit velikost vrchnho okna" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Nemohu pesunout vrchn okno" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Nemohu zmnit velikost editovacho okna" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Nemohu pesunout editovac okno" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Nemohu zmnit velikost spodnho okna" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Nemohu pesunout spodn okno" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Zjitna porucha NumLocku. Numerick klvesnice nebude fungovat s vypnutm " "NumLockem" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "povoleno" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "zakzno" -#: nano.c:3160 +#: nano.c:3166 #, fuzzy msgid "Tab size is too small for nano...\n" msgstr "Okno je moc mal pro Nano..." -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "" @@ -1500,46 +1500,46 @@ msgstr "Hled msgid "This is the only occurrence" msgstr "Toto je jedin vskyt" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Zmna Zruena" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Zamnit tuto instanci?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Zmna selhala: neznm podvraz!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Zamn s" -#: search.c:760 +#: search.c:792 #, fuzzy, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Zamnno %d vskyt" msgstr[1] "Zamnno %d vskyt" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Zadej slo dky" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Perueno" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "No tak, bu rozumn." -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Nen zvorka" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Nen korespondujc zvorka" diff --git a/po/da.po b/po/da.po index ad804ec4..aaa4950c 100644 --- a/po/da.po +++ b/po/da.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-03-08 22:27+0100\n" "Last-Translator: Keld Simonsen \n" "Language-Team: Danish \n" @@ -1280,51 +1280,51 @@ msgstr "Modtog SIGHUP eller SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Brug \"fg\" for at returnere til nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Kan ikke ndre strrelse p vre vindue" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Kan ikke flytte vre vindue" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Kan ikke ndre strrelse p redigeringsvindue" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Kan ikke flytte redigeringsvindue" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Kan ikke ndre strrelse p bundvinduet" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Kan ikke flytte bundvinduet" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "NumLock-problem opdaget. Tasterne vil ikke fungere uden NumLock" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "aktiveret" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "deaktiveret" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Tabulatorstrrelsen er for lille til Nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignoreret, mumle mumle." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignoreret, mumle mumle." @@ -1459,46 +1459,46 @@ msgstr "S msgid "This is the only occurrence" msgstr "Dette er det eneste tilflde" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Erstatning afbrudt" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Erstat denne forekomst?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Erstatning mislykkedes: ukendt deludtryk!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Erstat med" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Erstattede %d forekomster" msgstr[1] "Erstattede %d forekomst" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Angiv linjenummer" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Afbrudt" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Ja ja, vr nu rimelig" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Ikke en klamme" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Ingen tilsvarende klamme" diff --git a/po/de.po b/po/de.po index 93328439..b33b9cc7 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-06-02 10:03:56+0200\n" "Last-Translator: Michael Piefel \n" "Language-Team: German \n" @@ -1289,53 +1289,53 @@ msgstr "SIGHUP oder SIGTERM empfangen\n" msgid "Use \"fg\" to return to nano" msgstr "Benutzen Sie »fg«, um zu nano zurückzukehren." -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Kann die Größe des oberen Fensters nicht verändern" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Kann oberes Fenster nicht verschieben" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Kann Größe des Bearbeitungsfensters nicht verändern" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Kann Bearbeitungsfenster nicht verschieben" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Kann Größe des unteren Fensters nicht verändern" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Kann unteres Fenster nicht verschieben" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock-Problem entdeckt. Tastenblock funktioniert bei ausgeschaltetem " "NumLock nicht" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "aktiviert" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "deaktiviert" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Tabulatorweite ist zu klein für Nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignoriert, murmel murmel." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignoriert, murmel murmel." @@ -1471,46 +1471,46 @@ msgstr "Suche wieder von vorn" msgid "This is the only occurrence" msgstr "Das ist das einzige Auftreten" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Ersetzung abgebrochen" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Fundstelle ersetzen?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Ersetzung gescheitert: unbekannter Unterausdruck" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Ersetzen mit" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d Ersetzung vorgenommen" msgstr[1] "%d Ersetzungen vorgenommen" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Zeilennummer eingeben" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Abgebrochen" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Komm schon, sei vernünftig" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Keine Klammer" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Keine passende Klammer" diff --git a/po/es.po b/po/es.po index 633acd06..8a733fec 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-19 15:36+0000\n" "Last-Translator: Ricardo Javier Crdenes Medina \n" "Language-Team: Spanish \n" @@ -1333,52 +1333,52 @@ msgstr "Recibido SIGHUP o SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Use \"fg\" para volver a nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "No se puede cambiar el tamao de la ventana superior" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "No se puede mover la ventana superior" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "No se puede cambiar el tamao de la ventana de edicin" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "No se puede mover la ventana de edicin" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "No se puede cambiar el tamao de la ventana inferior" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "No se puede mover la ventana inferior" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Detectado NumLock roto. El tecl. numrico funcionar con NumLock activado" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "habilitado" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "deshabilitado" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "El tamao del tabulador es demasiado pequeo para Nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "Se ignora XOFF, grrrr..." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "Se ignora XON, grrrr..." @@ -1518,47 +1518,47 @@ msgstr "B msgid "This is the only occurrence" msgstr "sta es la nica coincidencia" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Reemplazar Cancelado" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Reemplazar esta instancia?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Fallo en reemplazar: subexpresin desconocida!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Reemplazar con" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d ocurrencia reemplazada" msgstr[1] "%d ocurrencias reemplazadas" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Introduce nmero de lnea" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Abortado" # s. sv -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Venga ya, s razonable" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "No es una llave" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "No hay una llave correspondiente" diff --git a/po/eu.po b/po/eu.po index 48bd39ea..9322a77a 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.2pre2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2002-12-22 18:19+0100\n" "Last-Translator: Peio Ziarsolo \n" "Language-Team: Basque \n" @@ -1252,54 +1252,54 @@ msgstr "SIGHUP jasoa" msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Ezin goiko lehioaren tamainua aldatu" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Ezin goiko lehioa mugitu" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Ezin edizio lehioa tamainuz aldatu" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Ezin edizio lehioa mugitu" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Ezin Beheko lehioa tamainuz aldatu" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Ezin beheko lehioa mugitu" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock apurtua detektatu da. NumLock-a aktibatuta dagoeneanTecl. numerikoak " "funtzionatuko du" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "gaitua" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "Ez gaitua" -#: nano.c:3160 +#: nano.c:3166 #, fuzzy msgid "Tab size is too small for nano...\n" msgstr "Terminalaren tamainua txikiegia da nano-rentzat" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "" @@ -1430,46 +1430,46 @@ msgstr "Bilaketa berriz hasia" msgid "This is the only occurrence" msgstr "" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Aldaketa deuseztua" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Instantsia hau aldatu?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Aldaketan arazoak: subexpresio ezezaguna!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Aldatu honekin" -#: search.c:760 +#: search.c:792 #, fuzzy, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d gertaketa aldatuak" msgstr[1] "%d gertaketa aldatuak" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Lerroaren zenbakia txertatu" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Deuseztua" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Bai zera, izan zentsudun!" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Ez da hori giltza" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Ez dago giltz egokirik" diff --git a/po/fi.po b/po/fi.po index 0063cc8e..9904ce4e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-17 22:32+0200\n" "Last-Translator: Kalle Olavi Niemitalo \n" "Language-Team: Finnish \n" @@ -1331,52 +1331,52 @@ msgstr "Vastaanotettiin SIGHUP tai SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Palaa Nanoon komennolla \"fg\"" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Ylikkunan kokoa ei voi muuttaa" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Ylikkunaa ei voi siirt" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Muokkausikkunan kokoa ei voi muuttaa" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Muokkausikkunaa ei voi siirt" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Alaikkunan kokoa ei voi muuttaa" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Alaikkunaa ei voi siirt" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock-ongelma: Numeronppimist toimii vrin, kun NumLock ei ole pll." -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "kytss" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "ei kytss" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Sarkaimen leveys on liian pieni Nanolle...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF:ia ei kytet, mutinaa" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON:ia ei kytet, mutinaa" @@ -1513,48 +1513,48 @@ msgstr "Etsint msgid "This is the only occurrence" msgstr "Tm on ainoa esiintym" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Korvaus peruttu" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Korvataanko tm kohta?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Korvaus eponnistui: tuntematon alilauseke!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Korvaa merkkijonolla" # Pitisikhn olla passiivi? -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d kohta korvautui" msgstr[1] "%d kohtaa korvautui" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Kirjoita rivin numero" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Keskeytetty" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Jotakin jrkev, kiitos?" # versiossa 1.1.99pre2 hakee merkkej "([{<>}])" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Ei ole suljemerkki" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Ei vastaavaa suljetta" diff --git a/po/fr.po b/po/fr.po index e3b5d773..1cb63755 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,14 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.2\n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-08-26 09:00+0200\n" -"Last-Translator: Jean-Philippe Gurard \n" +"Last-Translator: Jean-Philippe Gurard \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8-bit\n" -"Report-Msgid-Bugs-To: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" # @@ -906,18 +907,26 @@ msgstr "Touche ill msgid "" "Search Command Help Text\n" "\n" -" Enter the words or characters you would like to search for, then hit enter. If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.\n" +" Enter the words or characters you would like to search for, then hit " +"enter. If there is a match for the text you entered, the screen will be " +"updated to the location of the nearest match for the search string.\n" "\n" -" The previous search string will be shown in brackets after the Search: prompt. Hitting Enter without entering any text will perform the previous search.\n" +" The previous search string will be shown in brackets after the Search: " +"prompt. Hitting Enter without entering any text will perform the previous " +"search.\n" "\n" " The following function keys are available in Search mode:\n" "\n" msgstr "" "Aide de la commande de recherche\n" "\n" -" Entrer les mots ou les caractres que vous dsirez chercher, puis appuyer sur Entre . Si un texte correspondant est trouv, vous serez conduit l'emplacement de la plus proche occurrence du texte recherch.\n" +" Entrer les mots ou les caractres que vous dsirez chercher, puis appuyer " +"sur Entre . Si un texte correspondant est trouv, vous serez conduit " +"l'emplacement de la plus proche occurrence du texte recherch.\n" "\n" -" La chane prcdemment recherche sera affiche entre crochets derrire l'invite de recherche. Appuyer sur Entre sans indiquer de texte chercher recommencera la recherche prcdente.\n" +" La chane prcdemment recherche sera affiche entre crochets derrire " +"l'invite de recherche. Appuyer sur Entre sans indiquer de texte " +"chercher recommencera la recherche prcdente.\n" "\n" " Les touches de fonction suivantes sont disponibles en mode recherche :\n" "\n" @@ -927,16 +936,21 @@ msgstr "" msgid "" "Go To Line Help Text\n" "\n" -" Enter the line number that you wish to go to and hit Enter. If there are fewer lines of text than the number you entered, you will be brought to the last line of the file.\n" +" Enter the line number that you wish to go to and hit Enter. If there are " +"fewer lines of text than the number you entered, you will be brought to the " +"last line of the file.\n" "\n" " The following function keys are available in Go To Line mode:\n" "\n" msgstr "" "Aide de la commande aller la ligne indique\n" "\n" -" Indiquez le numro de ligne que vous dsirez atteindre et appuyer sur Entre . S'il y a moins de lignes de texte que le nombre que vous avez indiqu, vous serez conduit la dernire ligne de texte du fichier.\n" +" Indiquez le numro de ligne que vous dsirez atteindre et appuyer sur " +"Entre . S'il y a moins de lignes de texte que le nombre que vous avez " +"indiqu, vous serez conduit la dernire ligne de texte du fichier.\n" "\n" -" Les touches de fonctions suivantes sont disponibles dans le mode sauter la ligne :\n" +" Les touches de fonctions suivantes sont disponibles dans le mode sauter " +"la ligne :\n" "\n" # @@ -944,24 +958,38 @@ msgstr "" msgid "" "Insert File Help Text\n" "\n" -" Type in the name of a file to be inserted into the current file buffer at the current cursor location.\n" +" Type in the name of a file to be inserted into the current file buffer at " +"the current cursor location.\n" "\n" -" If you have compiled nano with multiple file buffer support, and enable multiple buffers with the -F or --multibuffer command line flags, the Meta-F toggle, or a nanorc file, inserting a file will cause it to be loaded into a separate buffer (use Meta-< and > to switch between file buffers).\n" +" If you have compiled nano with multiple file buffer support, and enable " +"multiple buffers with the -F or --multibuffer command line flags, the Meta-F " +"toggle, or a nanorc file, inserting a file will cause it to be loaded into a " +"separate buffer (use Meta-< and > to switch between file buffers).\n" "\n" -" If you need another blank buffer, do not enter any filename, or type in a nonexistent filename at the prompt and press Enter.\n" +" If you need another blank buffer, do not enter any filename, or type in a " +"nonexistent filename at the prompt and press Enter.\n" "\n" " The following function keys are available in Insert File mode:\n" "\n" msgstr "" "Aide de l'insertion de fichier\n" "\n" -" Indiquez le nom du fichier que vous dsirez insrer. Il sera copi l'intrieur du fichier en cours l o se trouve le curseur.\n" +" Indiquez le nom du fichier que vous dsirez insrer. Il sera copi " +"l'intrieur du fichier en cours l o se trouve le curseur.\n" "\n" -" Si vous avez compil nano avec la capacit de traiter simultanment plusieurs fichiers et que cette option a t active soit via l'une des options de dmarrage -F ou --multibuffer, soit via le commutateur Mta-F, soit via le fichier nanorc, l'insertion d'un fichier entranera son chargement dans un tampon spar (utilisez Mta-< et > pour passer d'un tampon l'autre).\n" +" Si vous avez compil nano avec la capacit de traiter simultanment " +"plusieurs fichiers et que cette option a t active soit via l'une des " +"options de dmarrage -F ou --multibuffer, soit via le commutateur Mta-F, " +"soit via le fichier nanorc, l'insertion d'un fichier entranera son " +"chargement dans un tampon spar (utilisez Mta-< et > pour passer d'un " +"tampon l'autre).\n" "\n" -" Si vous avez besoin de crer un nouveau fichier, appuyez sur Entre l'invite sans indiquer de nom de fichier, ou en indiquant le nom d'un fichier inexistant.\n" +" Si vous avez besoin de crer un nouveau fichier, appuyez sur Entre " +"l'invite sans indiquer de nom de fichier, ou en indiquant le nom d'un " +"fichier inexistant.\n" "\n" -" Les touches de fonctions suivantes sont disponibles en mode insertion de fichier :\n" +" Les touches de fonctions suivantes sont disponibles en mode insertion de " +"fichier :\n" "\n" # @@ -969,20 +997,30 @@ msgstr "" msgid "" "Write File Help Text\n" "\n" -" Type the name that you wish to save the current file as and hit Enter to save the file.\n" +" Type the name that you wish to save the current file as and hit Enter to " +"save the file.\n" "\n" -" If you have selected text with Ctrl-^, you will be prompted to save only the selected portion to a separate file. To reduce the chance of overwriting the current file with just a portion of it, the current filename is not the default in this mode.\n" +" If you have selected text with Ctrl-^, you will be prompted to save only " +"the selected portion to a separate file. To reduce the chance of " +"overwriting the current file with just a portion of it, the current filename " +"is not the default in this mode.\n" "\n" " The following function keys are available in Write File mode:\n" "\n" msgstr "" "Aide de l'criture de fichier\n" "\n" -" Indiquez le nom sous lequel vous dsirez sauvegarder le fichier courant et appuyez sur la touche Entre pour effectuer la sauvegarde.\n" +" Indiquez le nom sous lequel vous dsirez sauvegarder le fichier courant et " +"appuyez sur la touche Entre pour effectuer la sauvegarde.\n" "\n" -" Si vous avez slectionn du texte avec Ctrl+^, il vous sera propos de sauvegarder seulement la partie slectionne du texte dans un fichier spar. Pour limiter le risque d'craser le fichier en cours avec une simple portion de ce dernier, le nom du fichier courant n'est pas le nom qui vous sera propos par dfaut dans ce mode.\n" +" Si vous avez slectionn du texte avec Ctrl+^, il vous sera propos de " +"sauvegarder seulement la partie slectionne du texte dans un fichier " +"spar. Pour limiter le risque d'craser le fichier en cours avec une " +"simple portion de ce dernier, le nom du fichier courant n'est pas le nom qui " +"vous sera propos par dfaut dans ce mode.\n" "\n" -" Les touches de fonctions suivantes sont disponibles en mode criture de fichier :\n" +" Les touches de fonctions suivantes sont disponibles en mode criture de " +"fichier :\n" "\n" # @@ -990,16 +1028,27 @@ msgstr "" msgid "" "File Browser Help Text\n" "\n" -" The file browser is used to visually browse the directory structure to select a file for reading or writing. You may use the arrow keys or Page Up/Down to browse through the files, and S or Enter to choose the selected file or enter the selected directory. To move up one level, select the directory called \"..\" at the top of the file list.\n" +" The file browser is used to visually browse the directory structure to " +"select a file for reading or writing. You may use the arrow keys or Page Up/" +"Down to browse through the files, and S or Enter to choose the selected file " +"or enter the selected directory. To move up one level, select the directory " +"called \"..\" at the top of the file list.\n" "\n" " The following function keys are available in the file browser:\n" "\n" msgstr "" "Aide du navigateur de fichiers\n" "\n" -" Le navigateur de fichiers est utilis pour parcourir visuellement la structure des rpertoires afin de slectionner un fichier en lecture ou en criture. Les flches et les touches page prcdente et page suivante peuvent tre utilises pour parcourir les fichiers, les touches S et Entre permettent de slectionner un fichier ou de descendre dans un rpertoire. Pour remonter dans l'arborescence des rpertoires, slectionner le rpertoire appel .. en haut de la liste des fichiers.\n" +" Le navigateur de fichiers est utilis pour parcourir visuellement la " +"structure des rpertoires afin de slectionner un fichier en lecture ou en " +"criture. Les flches et les touches page prcdente et page suivante " +" peuvent tre utilises pour parcourir les fichiers, les touches S et " +"Entre permettent de slectionner un fichier ou de descendre dans un " +"rpertoire. Pour remonter dans l'arborescence des rpertoires, slectionner " +"le rpertoire appel .. en haut de la liste des fichiers.\n" "\n" -" Les touches de fonctions suivantes sont disponibles en mode navigateur de fichiers :\n" +" Les touches de fonctions suivantes sont disponibles en mode navigateur de " +"fichiers :\n" "\n" # @@ -1009,7 +1058,8 @@ msgid "" "\n" " Enter the name of the directory you would like to browse to.\n" "\n" -" If tab completion has not been disabled, you can use the TAB key to (attempt to) automatically complete the directory name.\n" +" If tab completion has not been disabled, you can use the TAB key to " +"(attempt to) automatically complete the directory name.\n" "\n" " The following function keys are available in Browser Go To Directory mode:\n" "\n" @@ -1018,9 +1068,12 @@ msgstr "" "\n" " Entrer le nom du rpertoire que vous dsirez parcourir.\n" "\n" -" Si la compltion automatique du nom de fichier via Tab n'a pas t dsactiv, vous pouvez utiliser la touche Tab pour essayer de complter automatiquement le nom du rpertoire.\n" +" Si la compltion automatique du nom de fichier via Tab n'a pas t " +"dsactiv, vous pouvez utiliser la touche Tab pour essayer de complter " +"automatiquement le nom du rpertoire.\n" "\n" -" Les touches de fonctions suivantes sont disponibles dans le mode changement de rpertoire :\n" +" Les touches de fonctions suivantes sont disponibles dans le mode changement " +"de rpertoire :\n" "\n" # @@ -1028,16 +1081,23 @@ msgstr "" msgid "" "Spell Check Help Text\n" "\n" -" The spell checker checks the spelling of all text in the current file. When an unknown word is encountered, it is highlighted and a replacement can be edited. It will then prompt to replace every instance of the given misspelled word in the current file.\n" +" The spell checker checks the spelling of all text in the current file. " +"When an unknown word is encountered, it is highlighted and a replacement can " +"be edited. It will then prompt to replace every instance of the given " +"misspelled word in the current file.\n" "\n" " The following other functions are available in Spell Check mode:\n" "\n" msgstr "" "Aide du vrification d'orthographe\n" "\n" -" Le vrificateur d'orthographe traite tout le texte du fichier en cours. Lorsqu'un mot inconnu est rencontr, il est surlign et peut tre corrig. Il vous sera alors propos de remplacer toutes les instances de ce mot dans le fichier courant.\n" +" Le vrificateur d'orthographe traite tout le texte du fichier en cours. " +"Lorsqu'un mot inconnu est rencontr, il est surlign et peut tre corrig. " +"Il vous sera alors propos de remplacer toutes les instances de ce mot dans " +"le fichier courant.\n" "\n" -" Les touches de fonctions suivantes sont disponibles en mode vrification d'orthographe :\n" +" Les touches de fonctions suivantes sont disponibles en mode vrification " +"d'orthographe :\n" "\n" # @@ -1045,14 +1105,17 @@ msgstr "" msgid "" "External Command Help Text\n" "\n" -" This menu allows you to insert the output of a command run by the shell into the current buffer (or a new buffer in multibuffer mode).\n" +" This menu allows you to insert the output of a command run by the shell " +"into the current buffer (or a new buffer in multibuffer mode).\n" "\n" " The following keys are available in this mode:\n" "\n" msgstr "" "Aide des commandes externes\n" "\n" -" Ce menu vous permet d'insrer le texte produit par l'excution d'une commande externe dans le tampon en cours (ou dans un nouveau tanpon pour le mode multifichier).\n" +" Ce menu vous permet d'insrer le texte produit par l'excution d'une " +"commande externe dans le tampon en cours (ou dans un nouveau tanpon pour le " +"mode multifichier).\n" "\n" " Les touches de fonctions suivantes sont disponibles dans ce mode :\n" "\n" @@ -1062,16 +1125,40 @@ msgstr "" msgid "" " nano help text\n" "\n" -" The nano editor is designed to emulate the functionality and ease-of-use of the UW Pico text editor. There are four main sections of the editor: The top line shows the program version, the current filename being edited, and whether or not the file has been modified. Next is the main editor window showing the file being edited. The status line is the third line from the bottom and shows important messages. The bottom two lines show the most commonly used shortcuts in the editor.\n" +" The nano editor is designed to emulate the functionality and ease-of-use of " +"the UW Pico text editor. There are four main sections of the editor: The " +"top line shows the program version, the current filename being edited, and " +"whether or not the file has been modified. Next is the main editor window " +"showing the file being edited. The status line is the third line from the " +"bottom and shows important messages. The bottom two lines show the most " +"commonly used shortcuts in the editor.\n" "\n" -" The notation for shortcuts is as follows: Control-key sequences are notated with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-key sequences are notated with the Meta (M) symbol and can be entered using either the Esc, Alt or Meta key depending on your keyboard setup. The following keystrokes are available in the main editor window. Alternative keys are shown in parentheses:\n" +" The notation for shortcuts is as follows: Control-key sequences are notated " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " +"following keystrokes are available in the main editor window. Alternative " +"keys are shown in parentheses:\n" "\n" msgstr "" " Message d'aide de nano\n" "\n" -" L'diteur nano est conu pour muler les fonctions et la facilit d'utilisation de l'diteur Pico de l'Universit de Washington. Il comporte quatre sections principales : la ligne du haut affiche la version du programme, le fichier actuellement en cours d'dition, et s'il a t modifi ou non. Ensuite il y a la fentre principale d'dition qui affiche le fichier en cours de modification. La ligne d'tat est la troisime en partant du bas, elle affiche les messages importants. Les deux dernires sont consacres aux raccourcis les plus couramment utiliss :\n" +" L'diteur nano est conu pour muler les fonctions et la facilit " +"d'utilisation de l'diteur Pico de l'Universit de Washington. Il comporte " +"quatre sections principales : la ligne du haut affiche la version du " +"programme, le fichier actuellement en cours d'dition, et s'il a t modifi " +"ou non. Ensuite il y a la fentre principale d'dition qui affiche le " +"fichier en cours de modification. La ligne d'tat est la troisime en " +"partant du bas, elle affiche les messages importants. Les deux dernires " +"sont consacres aux raccourcis les plus couramment utiliss :\n" "\n" -" Les raccourcis sont reprsents de la faon suivante : la touche Contrle est note par l'accent circonflexe (^). Les squences d'chappement sont reprsentes par le symbole Mta (M) et peuvent tre entres via les touches chap. , Alt ou Mta selon la configuration de votre clavier. Les combinaisons suivantes sont disponibles dans la fentre principale de l'diteur. Les touches pouvant tre utilises comme alternatives sont affiches entre parenthses :\n" +" Les raccourcis sont reprsents de la faon suivante : la touche Contrle " +" est note par l'accent circonflexe (^). Les squences d'chappement sont " +"reprsentes par le symbole Mta (M) et peuvent tre entres via les " +"touches chap. , Alt ou Mta selon la configuration de votre " +"clavier. Les combinaisons suivantes sont disponibles dans la fentre " +"principale de l'diteur. Les touches pouvant tre utilises comme " +"alternatives sont affiches entre parenthses :\n" "\n" # @@ -1424,7 +1511,8 @@ msgstr "Impossible de cr # #: nano.c:1967 msgid "Spell checking failed: unable to write temp file!" -msgstr "chec de la vrif. orthogra. : chec d'criture dans le fichier temp. !" +msgstr "" +"chec de la vrif. orthogra. : chec d'criture dans le fichier temp. !" # #: nano.c:1986 @@ -1451,7 +1539,8 @@ msgstr "Il est maintenant possible de d # #: nano.c:2696 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " -msgstr "Sauver le tampon modifi (RPONDRE Non EFFACERA LES CHANGEMENTS) ? " +msgstr "" +"Sauver le tampon modifi (RPONDRE Non EFFACERA LES CHANGEMENTS) ? " # #: nano.c:2796 @@ -1464,62 +1553,63 @@ msgid "Use \"fg\" to return to nano" msgstr "Utilisez fg pour revenir nano" # -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Impossible de redimensionner la fentre du haut" # -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Impossible de bouger la fentre du haut" # -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Impossible de redimensionner la fentre d'dition" # -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Impossible de bouger la fentre d'dition" # -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Impossible de redimensionner la fentre du bas" # -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Impossible de bouger la fentre du bas" # -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" -msgstr "Problme avec VerrNum. Le pav num. fonctionnera mal si VerrNum est dsactiv" +msgstr "" +"Problme avec VerrNum. Le pav num. fonctionnera mal si VerrNum est dsactiv" # -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "- marche" # -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "- arrt" # -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "La taille des tabulation est trop petite pour nano ...\n" # -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignor, m'enfin !" # -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignor, grrr grrr !" @@ -1682,27 +1772,27 @@ msgid "This is the only occurrence" msgstr "C'est la seule occurence" # -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Remplacement annul" # -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Remplacer cette occurrence?" # -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "chec du remplacement : sous-expression inconnue" # -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Remplacer par" # -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" @@ -1710,27 +1800,27 @@ msgstr[0] "%d remplacement effectu msgstr[1] "%d remplacements effectus" # -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Entrer le numro de ligne" # -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Abandon" # -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Allez, soyez raisonnable" # -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "N'est pas un crochet" # -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Aucun crochet correspondant" diff --git a/po/gl.po b/po/gl.po index 71234fc3..ee91ddae 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-15 18:46+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -1285,51 +1285,51 @@ msgstr "Recibiuse SIGHUP ou SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Empregue \"fg\" para voltar a nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Non se pode cambia-lo tamao da fiestra superior" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Non se pode move-la fiestra superior" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Non se pode cambia-lo tamao da fiestra de edicin" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Non se pode move-la fiestra de edicin" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Non se pode cambia-lo tamao da fiestra inferior" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Non se pode move-la fiestra inferior" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "Detectouse un fallo en BloqNum. BloqNum ha estar activado sempre." -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "activado" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "desactivado" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "O tamao de tabulacin pequeno de mis para nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "Ignrase XOFF, mmmm..." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "Ignrase XON, mmmm..." @@ -1465,46 +1465,46 @@ msgstr "Buscando dende o Principio" msgid "This is the only occurrence" msgstr "Esta a nica aparicin" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Substitucin Cancelada" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Substitur?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Fallou a substitucin: subexpresin descoecida" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Substitur por" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Fxose %d substitucin" msgstr[1] "Fixronse %d substitucins" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Introduza o nmero de lia" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Abortado" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Vamos, sexa razonable" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Non un delimitador" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Non se atopou a parella do delimitador" diff --git a/po/hu.po b/po/hu.po index ac982f04..a926cbd4 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2002-02-06 18:42+0200\n" "Last-Translator: Gergely Nagy \n" "Language-Team: Hungarian \n" @@ -1341,54 +1341,54 @@ msgstr "Kaptam egy SIGHUPot" msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "A fels ablakot nem lehet tmretezni" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "A fels ablakot nem lehet mozgatni" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "A szerkeszt ablakot nem lehet tmretezni" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "A szerkeszt ablakot nem lehet mozgatni" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Az als ablakot nem lehet tmretezni" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Az als ablakot nem lehet mozgatni" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock hibt fedeztem fel. A Keypad rosszul mkdhet, ha a NumLock be van " "kapcsolva" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "engedlyezve" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "kikapcsolva" -#: nano.c:3160 +#: nano.c:3166 #, fuzzy msgid "Tab size is too small for nano...\n" msgstr "Az ablak mrete tl kicsi a Nanonak..." -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "" @@ -1528,46 +1528,46 @@ msgstr "A keres msgid "This is the only occurrence" msgstr "Ez az egyetlen elforduls" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "A csere megszaktva" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Lecserljem ezt a tallatot?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Hiba a csernl: ismeretlen alkifejezs!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Csere szveg" -#: search.c:760 +#: search.c:792 #, fuzzy, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d elforduls kicserlve" msgstr[1] "%d elforduls kicserlve" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Krem a sor szmt" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Megszaktva" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Naaa, legyl egy kicsit beltbb" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Nem zrjel" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Nincs illeszked zrjel" diff --git a/po/id.po b/po/id.po index d47b945d..7862dcfa 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-04-23 09:41+0000\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -1279,53 +1279,53 @@ msgstr "Menerima SIGHUP atau SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Gunakan \"fg\" untuk kembali ke nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Tidak dapat menganti ukuran jendela atas" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Tidak dapat memindahkan jendela atas" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Tidak dapat mengganti ukuran jendela edit" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Tidak dapat memindah jendela edit" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Tidak dapat mengganti ukuran jendela bawah" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Tidak dapat memindah jendela bawah" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Glitch pada NumLock terdeteksi. Keypad akan tidak berfungsi dg tombol " "NumLock off" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "adakan" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "tiadakan" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Ukuran tab terlalu kecil bagi nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF diabaikan, mumble mumble." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON diabaikan, mumble mumble." @@ -1460,45 +1460,45 @@ msgstr "Pancarian Di-wrapped" msgid "This is the only occurrence" msgstr "Hanya ini adanya" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Penggantian dibatalkan" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Ganti kata ini?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Replace gagal: subekspresi tidak dikenal!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Ganti dengan" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d tempat terganti" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Masukkan nomor baris" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Dibatalkan" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Ayo, yang masuk akal" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Bukan tanda kurung" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Tidak ada tanda kurung yang cocok" diff --git a/po/it.po b/po/it.po index 0192a90f..3f37a7e9 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-01-02 13:13+01:00\n" "Last-Translator: Marco Colombo \n" "Language-Team: Italian \n" @@ -1273,53 +1273,53 @@ msgstr "Ricevuto SIGHUP o SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Impossibile ridimensionare la finestra superiore" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Impossibile spostare la finestra superiore" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Impossibile ridimensionare la finestra di modifica" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Impossibile spostare finestra di modifica" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Impossibile ridimensionare la finestra inferiore" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Impossibile spostare la finestra inferiore" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Rilevato difetto di funzionamento del NumLock. Il keypad potrebbe non " "funzionare col Numlock spento" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "abilitato" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "disabilitato" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "La lunghezza della tabulazione troppo piccola per nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignorato, mmm..." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignorato, mmm..." @@ -1455,46 +1455,46 @@ msgstr "Ricerca interrotta" msgid "This is the only occurrence" msgstr "Questa l'unica occorrenza" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Sostituzione annullata" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Sostituisci questa occorrenza?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Sostituzione fallita: espressione sconosciuta!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Sostituisci con" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "" msgstr[1] "" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Inserisci numero di riga" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Operazione annullata" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Avanti, sii ragionevole" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Non una parentesi" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Parentesi corrispondente non trovata" diff --git a/po/ms.po b/po/ms.po index 912cac5a..6a7f5765 100644 --- a/po/ms.po +++ b/po/ms.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-05-06 00:51GMT+8\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -1282,51 +1282,51 @@ msgstr "SIGHUP atau SIGTERM diterima\n" msgid "Use \"fg\" to return to nano" msgstr "Guna \"fg\" untuk kembali ke nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Tidak dapat mengubah saiz tetingkap atas" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Tidak dapat memindahkan tetingkap atas" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Tidak dapat mengubah saiz tetingkap suntingan" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Tidak dapat memindah tetingkap suntingan" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Tidak dapat mengubah saiz tetingkap bawah" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Tidak dapat memindah tetingkap bawah" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "Ralat NumLock dikesan. Pad kekunci tidak berfungsi dengan NumLock off" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "dihidupkan" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "dimatikan" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Saiz tab terlalu kecil bagi nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF diabaikan, mumble mumble." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON diabaikan, mumble mumble." @@ -1461,46 +1461,46 @@ msgstr "Pancarian diulangi dari awal" msgid "This is the only occurrence" msgstr "Hanya inilah sahaja yang dijumpai" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Penggantian Dibatalkan" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Ganti dikedudukan ini?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Gantian gagal: subekspresi tidak diketahui!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Ganti dengan" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d tempat telah diganti" msgstr[1] "%d tempat telah diganti" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Masukkan nombor baris" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Dibatalkan" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Pastikannya wajar" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Bukan kurungan" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Tiada padanan kurungan" diff --git a/po/nb.po b/po/nb.po index e4e540ae..74c9e1b0 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-06-11 02:39+0200\n" "Last-Translator: Geir Helland \n" "Language-Team: Norwegian \n" @@ -1281,52 +1281,52 @@ msgstr "Mottok SIGHUP eller SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Bruk \"fg\" for g tilbake til nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Kan ikke endre strrelse p toppvinduet" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Kan ikke flytte toppvinduet" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Kan ikke endre strrelse p redigeringsvinduet" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Kan ikke flytte redigeringsvinduet" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Kan ikke endre strrelsen p bunnvinduet" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Kan ikke flytte bunnvinduet" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "NumLock-feil oppdaget. Nummer-tastane vil fungere feil med NumLock av" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "p" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "av" # Vinduet eller Tabulatorstrrelse ? -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Tabulatorstrrelsen er for lite for nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignorert, mumlemumle." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignorert, mumlemumle." @@ -1463,46 +1463,46 @@ msgstr "S msgid "This is the only occurrence" msgstr "Dette er eneste forekomst" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Erstatt Avbrutt" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Erstatt dette tilfellet?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Erstatt feilet: ukjent underuttrykk!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Erstatt med" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Erstattet %d tilfelle" msgstr[1] "Erstattet %d tilfeller" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Skriv linjenummer" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Avbrutt" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Kom igjen, samarbeid litt" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Ikke en klamme" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Ingen matchende klamme" diff --git a/po/nl.po b/po/nl.po index 56c53ddd..9b41ff8e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-22 16:31:14+0100\n" "Last-Translator: Guus Sliepen \n" "Language-Team: Dutch \n" @@ -1288,53 +1288,53 @@ msgstr "SIGHUP of SIGTERM ontvangen\n" msgid "Use \"fg\" to return to nano" msgstr "Gebruik \"fg\" om terug te keren naar nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Kan bovenste venster niet herschalen" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Kan bovenste venster niet verplaatsen" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Kan bewerkingsvenster niet herschalen" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Kan bewerkingsvenster niet verplaatsen" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Kan onderste venster niet herschalen" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Kan onderste venster niet verplaatsen" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock fout gedetecteerd. Numeriek toetsenbord zal niet goed functioneren " "zonder NumLock" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "aangezet" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "uitgezet" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Tabgrootte te klein voor nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF genegeerd, mopper mopper." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON genegeerd, mopper mopper." @@ -1469,46 +1469,46 @@ msgstr "Zoeken van boven herstart" msgid "This is the only occurrence" msgstr "Dit is de enige overeenkomst" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Vervangen afgebroken" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Vervang deze instantie?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Vervangen faalde: onbekende deeluitdrukking!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Vervang met" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d voorval vervangen" msgstr[1] "%d voorvallen vervangen" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Geef regelnummer" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Afgebroken" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Kom zeg, wees redelijk" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Geen rechte haak" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Geen overeenkomende rechte haak" diff --git a/po/nn.po b/po/nn.po index 67386a31..510674f6 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2002-01-26 02:49+0100\n" "Last-Translator: Kjetil Torgrim Homme \n" "Language-Team: Norwegian nynorsk \n" @@ -1329,52 +1329,52 @@ msgstr "Mottok SIGHUP" msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Kan ikkje endra storleik p toppvindauget" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Kan ikke flytta toppvindauget" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Kan ikkje endra storleik p redigeringsvindauget" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Kan ikkje flytta redigeringsvindauget" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Kan ikkje endra storleik p bunnvindauget" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Kan ikkje flytta botnvindauget" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "NumLock-feil oppdaga. Nummer-tastane vil fungere feil med NumLock av" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "p" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "av" -#: nano.c:3160 +#: nano.c:3166 #, fuzzy msgid "Tab size is too small for nano...\n" msgstr "Vindauget er for lite for Nano..." -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "" @@ -1514,46 +1514,46 @@ msgstr "S msgid "This is the only occurrence" msgstr "Dette er einaste forekomst" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Erstatt avbrote" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Erstatta dette tilfellet?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Erstatt feila: ukjent deluttrykk!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Erstatt med" -#: search.c:760 +#: search.c:792 #, fuzzy, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Erstatta %d tilfelle" msgstr[1] "Erstatta %d tilfelle" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Skriv linjenummer" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Avbrote" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Kom igjen, samarbeid litt" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Ikkje ei klamme" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Inga motsvarande klamme" diff --git a/po/pl.po b/po/pl.po index 4e461ecb..e91ff5e7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-05 10:10+0200\n" "Last-Translator: Wojciech Kotwica \n" "Language-Team: Polish \n" @@ -1289,52 +1289,52 @@ msgstr "Otrzymano SIGHUP lub SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Nie mona zmieni rozmiaru grnego okna" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Nie mona przesun grnego okna" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Nie mona zmieni rozmiaru okna edycji" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Nie mona przesun okna edycji" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Nie mona zmieni rozmiaru dolnego okna" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Nie mona przesun dolnego okna" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Wykryto przeczenie NumLock. Klawiatura numeryczna nie bdzie dziaa" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "wczony(e)" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "wyczony(e)" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Rozmiar okna za may dla nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "Zignorowano XOFF, hmm, hmm." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "Zignorowano XON, hmm, hmm." @@ -1469,23 +1469,23 @@ msgstr "Wyszukiwanie min msgid "This is the only occurrence" msgstr "To jedyne wystpienie" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Zastpowanie anulowane" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Czy zastpi to wystpienie?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Zastpowanie nie powiodo si: nieznane podwyraenie!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Zastp przez" -#: search.c:760 +#: search.c:792 #, fuzzy, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" @@ -1493,23 +1493,23 @@ msgstr[0] "Zast msgstr[1] "Zastpiono %d wystpien(ia)" msgstr[2] "Zastpiono %d wystpien(ia)" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Wprowad numer linii" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Przerwane" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Czowieku, wicej rozsdku" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "To nie nawias" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Brak nawiasu do pary" diff --git a/po/pt_BR.po b/po/pt_BR.po index 89984769..fad29b5c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2002-07-26 16:00-0300\n" "Last-Translator: Claudio Neves \n" "Language-Team: pt_BR \n" @@ -1248,53 +1248,53 @@ msgstr "SIGHUP recebido" msgid "Use \"fg\" to return to nano" msgstr "" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Impossvel redimensionar a janela superior" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Impossvel mover a janela superior" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Impossvel redimensionar a janela de edio" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Impossvel mover a janela de edio" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Impossvel redimensionar a janela inferior" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Impossvel mover a janela inferior" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Problema no NumLock. O teclado no funcionar bem com NumLock desligado" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "ativo" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "inativo" -#: nano.c:3160 +#: nano.c:3166 #, fuzzy msgid "Tab size is too small for nano...\n" msgstr "O tamanho da janela pequeno demais para o Nano" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "" @@ -1425,46 +1425,46 @@ msgstr "Procura reiniciada" msgid "This is the only occurrence" msgstr "" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Substituio Cancelada" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Substituir esta instncia?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Falha na Substituio: subexpresso desconhecida!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Substituir por" -#: search.c:760 +#: search.c:792 #, fuzzy, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Substitudas %d ocorrncias" msgstr[1] "Substitudas %d ocorrncias" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Digite o nmero da linha" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Cancelado" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Por favor, hein! Seja razovel!" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "" diff --git a/po/ro.po b/po/ro.po index d4b51817..feec6628 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.2\n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-11-24 12:00-0500\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -422,7 +423,8 @@ msgstr "Insereaz #: global.c:382 msgid "Insert a carriage return at the cursor position" -msgstr "Insereaz un caracter \"carriage return\" la poziia curent a cursorului" +msgstr "" +"Insereaz un caracter \"carriage return\" la poziia curent a cursorului" #: global.c:384 msgid "Make the current search or replace case (in)sensitive" @@ -734,18 +736,26 @@ msgstr "Tast msgid "" "Search Command Help Text\n" "\n" -" Enter the words or characters you would like to search for, then hit enter. If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.\n" +" Enter the words or characters you would like to search for, then hit " +"enter. If there is a match for the text you entered, the screen will be " +"updated to the location of the nearest match for the search string.\n" "\n" -" The previous search string will be shown in brackets after the Search: prompt. Hitting Enter without entering any text will perform the previous search.\n" +" The previous search string will be shown in brackets after the Search: " +"prompt. Hitting Enter without entering any text will perform the previous " +"search.\n" "\n" " The following function keys are available in Search mode:\n" "\n" msgstr "" "Text de ajutor pentru comanda \"Caut\"\n" "\n" -"Introducei cuvntul sau caracterele pe care ai dori s le cutai, apoi apsai Enter. Dac exist vreo potrivire pentru textul cutat, ecranul va fi actualizat la locaia cea mai apropiat de locul unde aceast potrivire a avut loc.\n" +"Introducei cuvntul sau caracterele pe care ai dori s le cutai, apoi " +"apsai Enter. Dac exist vreo potrivire pentru textul cutat, ecranul va " +"fi actualizat la locaia cea mai apropiat de locul unde aceast potrivire a " +"avut loc.\n" "\n" -"irul cutat anterior va fi artat n paranteze dup cuvntul Caut: . Apsnd Enter fr a introduce vreun text va executa cutarea anterioar.\n" +"irul cutat anterior va fi artat n paranteze dup cuvntul Caut: . " +"Apsnd Enter fr a introduce vreun text va executa cutarea anterioar.\n" "\n" "Urmtoarele taste de funcii sunt disponibile n modul \"Caut\"\n" "\n" @@ -754,14 +764,18 @@ msgstr "" msgid "" "Go To Line Help Text\n" "\n" -" Enter the line number that you wish to go to and hit Enter. If there are fewer lines of text than the number you entered, you will be brought to the last line of the file.\n" +" Enter the line number that you wish to go to and hit Enter. If there are " +"fewer lines of text than the number you entered, you will be brought to the " +"last line of the file.\n" "\n" " The following function keys are available in Go To Line mode:\n" "\n" msgstr "" "Textul de ajutor pentru \"Du-te la linia\"\n" "\n" -" Introducei numrul liniei unde dorii s mergei i apsai Enter. Dac exist mai puine linii de text dect numrul introdus vei ajunge la ultima linie a fiierului.\n" +" Introducei numrul liniei unde dorii s mergei i apsai Enter. Dac " +"exist mai puine linii de text dect numrul introdus vei ajunge la ultima " +"linie a fiierului.\n" "\n" " Urmtoarele taste de funcii sunt disponibile n modul \"Du-te la linia\" \n" @@ -769,41 +783,61 @@ msgstr "" msgid "" "Insert File Help Text\n" "\n" -" Type in the name of a file to be inserted into the current file buffer at the current cursor location.\n" +" Type in the name of a file to be inserted into the current file buffer at " +"the current cursor location.\n" "\n" -" If you have compiled nano with multiple file buffer support, and enable multiple buffers with the -F or --multibuffer command line flags, the Meta-F toggle, or a nanorc file, inserting a file will cause it to be loaded into a separate buffer (use Meta-< and > to switch between file buffers).\n" +" If you have compiled nano with multiple file buffer support, and enable " +"multiple buffers with the -F or --multibuffer command line flags, the Meta-F " +"toggle, or a nanorc file, inserting a file will cause it to be loaded into a " +"separate buffer (use Meta-< and > to switch between file buffers).\n" "\n" -" If you need another blank buffer, do not enter any filename, or type in a nonexistent filename at the prompt and press Enter.\n" +" If you need another blank buffer, do not enter any filename, or type in a " +"nonexistent filename at the prompt and press Enter.\n" "\n" " The following function keys are available in Insert File mode:\n" "\n" msgstr "" "Textul de ajutor pentru \"Insereaz fiier\"\n" "\n" -" Tastai numele unui fiier de introdus n buffer-ul pentru fiierul curent la poziia curent a cursorului.\n" +" Tastai numele unui fiier de introdus n buffer-ul pentru fiierul curent " +"la poziia curent a cursorului.\n" "\n" -" Dac ai compilat nano cu suport pentru multiple buffere i ai activat acest opiune cu indicatorii de linie de comand -F sau --multibuffer, comutatorul Meta-F, sau un fiier nanorc, insernd un fiier va face ca acesta s fie ncrcat ntr-un alt buffer (folosii Meta-< i > pentru a comuta ntre buffere).\n" +" Dac ai compilat nano cu suport pentru multiple buffere i ai activat " +"acest opiune cu indicatorii de linie de comand -F sau --multibuffer, " +"comutatorul Meta-F, sau un fiier nanorc, insernd un fiier va face ca " +"acesta s fie ncrcat ntr-un alt buffer (folosii Meta-< i > pentru a " +"comuta ntre buffere).\n" "\n" -"Dac avei nevoie de un alt buffer liber, nu introducei nici un nume sau introducei un nume de fiier ce nu exist i apsai Enter.\n" +"Dac avei nevoie de un alt buffer liber, nu introducei nici un nume sau " +"introducei un nume de fiier ce nu exist i apsai Enter.\n" "\n" -" Urmtoarele taste de funcii sunt disponibile n modul \"Insereaz fiier\" \n" +" Urmtoarele taste de funcii sunt disponibile n modul \"Insereaz fiier" +"\" \n" #: nano.c:310 msgid "" "Write File Help Text\n" "\n" -" Type the name that you wish to save the current file as and hit Enter to save the file.\n" +" Type the name that you wish to save the current file as and hit Enter to " +"save the file.\n" "\n" -" If you have selected text with Ctrl-^, you will be prompted to save only the selected portion to a separate file. To reduce the chance of overwriting the current file with just a portion of it, the current filename is not the default in this mode.\n" +" If you have selected text with Ctrl-^, you will be prompted to save only " +"the selected portion to a separate file. To reduce the chance of " +"overwriting the current file with just a portion of it, the current filename " +"is not the default in this mode.\n" "\n" " The following function keys are available in Write File mode:\n" "\n" msgstr "" "Textul de ajutor pentru \"Scrie fiier\"\n" "\n" -" Tastai numele sub care dorii s salvai fiierul curent i apsai Enter pentru a salva fiierul.\n" +" Tastai numele sub care dorii s salvai fiierul curent i apsai Enter " +"pentru a salva fiierul.\n" "\n" -" Dac ai selectat text cu Ctrl-^, vei fi interpolat s salvai numai poriunea selectat ntr-un fiier separat. Pentru a reduce ansa de a suprascrie fiierul curent cu doar o poriune a sa, numele de fiier curent nu este implicit n acest mod.\n" +" Dac ai selectat text cu Ctrl-^, vei fi interpolat s salvai numai " +"poriunea selectat ntr-un fiier separat. Pentru a reduce ansa de a " +"suprascrie fiierul curent cu doar o poriune a sa, numele de fiier curent " +"nu este implicit n acest mod.\n" "\n" " Urmtoarele taste de funcii sunt disponibile n modul \"Scrie fiier\"\n" "\n" @@ -812,14 +846,23 @@ msgstr "" msgid "" "File Browser Help Text\n" "\n" -" The file browser is used to visually browse the directory structure to select a file for reading or writing. You may use the arrow keys or Page Up/Down to browse through the files, and S or Enter to choose the selected file or enter the selected directory. To move up one level, select the directory called \"..\" at the top of the file list.\n" +" The file browser is used to visually browse the directory structure to " +"select a file for reading or writing. You may use the arrow keys or Page Up/" +"Down to browse through the files, and S or Enter to choose the selected file " +"or enter the selected directory. To move up one level, select the directory " +"called \"..\" at the top of the file list.\n" "\n" " The following function keys are available in the file browser:\n" "\n" msgstr "" "Textul de ajutor pentru \"Navigator fiiere\"\n" "\n" -" Navigatorul de fiiere este folosit pentru a naviga vizual structura de directoare i a selecta un fiier pentru citire sau scriere. Putei folosi tastele cu sgei sau Page Up/Down pentru a naviga prin fiiere, i S sau Enter pentru a alege fiierul selectat sau a intra ntr-un director selectat. Pentru a v muta n sus un nivel, selectai directorul numit \"..\" din captul de sus a listei de fiiere.\n" +" Navigatorul de fiiere este folosit pentru a naviga vizual structura de " +"directoare i a selecta un fiier pentru citire sau scriere. Putei folosi " +"tastele cu sgei sau Page Up/Down pentru a naviga prin fiiere, i S sau " +"Enter pentru a alege fiierul selectat sau a intra ntr-un director " +"selectat. Pentru a v muta n sus un nivel, selectai directorul numit \".." +"\" din captul de sus a listei de fiiere.\n" "\n" " Urmtoarele taste de funcii sunt disponibile n \"Navigator fiiere\":\n" "\n" @@ -830,7 +873,8 @@ msgid "" "\n" " Enter the name of the directory you would like to browse to.\n" "\n" -" If tab completion has not been disabled, you can use the TAB key to (attempt to) automatically complete the directory name.\n" +" If tab completion has not been disabled, you can use the TAB key to " +"(attempt to) automatically complete the directory name.\n" "\n" " The following function keys are available in Browser Go To Directory mode:\n" "\n" @@ -839,39 +883,51 @@ msgstr "" "\n" " Introducei numele directorului pe care ai dori s-l navigai.\n" "\n" -" Dac completarea cu tab nu a fost deactivat, putei folosi tasta TAB pentru a ncerca s completai automat numele directorului.\n" +" Dac completarea cu tab nu a fost deactivat, putei folosi tasta TAB " +"pentru a ncerca s completai automat numele directorului.\n" "\n" -" Urmtoarele taste de funcii sunt disponibile n modul \"Navigator Du-te la Directorul\":\n" +" Urmtoarele taste de funcii sunt disponibile n modul \"Navigator Du-te la " +"Directorul\":\n" "\n" #: nano.c:341 msgid "" "Spell Check Help Text\n" "\n" -" The spell checker checks the spelling of all text in the current file. When an unknown word is encountered, it is highlighted and a replacement can be edited. It will then prompt to replace every instance of the given misspelled word in the current file.\n" +" The spell checker checks the spelling of all text in the current file. " +"When an unknown word is encountered, it is highlighted and a replacement can " +"be edited. It will then prompt to replace every instance of the given " +"misspelled word in the current file.\n" "\n" " The following other functions are available in Spell Check mode:\n" "\n" msgstr "" "Text de ajutor pentru \"Corector ortografic\"\n" "\n" -" Corectorul ortografic verific ortografierea ntregului text din fiierul curent. Cnd un cuvnt necunoscut este ntlnit, acesta este evideniat i un nlocuitor poate fi introdus/editat. Corectorul v va ntreba dac dorii s nlocuii toate apariiile cu aceeai greeal n fiierul curent.\n" +" Corectorul ortografic verific ortografierea ntregului text din fiierul " +"curent. Cnd un cuvnt necunoscut este ntlnit, acesta este evideniat i " +"un nlocuitor poate fi introdus/editat. Corectorul v va ntreba dac " +"dorii s nlocuii toate apariiile cu aceeai greeal n fiierul " +"curent.\n" "\n" -" Urmtoarele alte funcii sunt disponibile n modul \"Corector ortografic\":\n" +" Urmtoarele alte funcii sunt disponibile n modul \"Corector ortografic" +"\":\n" "\n" #: nano.c:352 msgid "" "External Command Help Text\n" "\n" -" This menu allows you to insert the output of a command run by the shell into the current buffer (or a new buffer in multibuffer mode).\n" +" This menu allows you to insert the output of a command run by the shell " +"into the current buffer (or a new buffer in multibuffer mode).\n" "\n" " The following keys are available in this mode:\n" "\n" msgstr "" "Text de ajutor \"Comand extern\"\n" "\n" -" Acest meniu v permite s inserai ieirea unei comenzi executate de shell n buffer-ul curent (sau ntr-un nou buffer n modul multibuffer).\n" +" Acest meniu v permite s inserai ieirea unei comenzi executate de shell " +"n buffer-ul curent (sau ntr-un nou buffer n modul multibuffer).\n" "\n" " Urmtoarele taste sunt disponibile n acest mod:\n" "\n" @@ -880,16 +936,40 @@ msgstr "" msgid "" " nano help text\n" "\n" -" The nano editor is designed to emulate the functionality and ease-of-use of the UW Pico text editor. There are four main sections of the editor: The top line shows the program version, the current filename being edited, and whether or not the file has been modified. Next is the main editor window showing the file being edited. The status line is the third line from the bottom and shows important messages. The bottom two lines show the most commonly used shortcuts in the editor.\n" +" The nano editor is designed to emulate the functionality and ease-of-use of " +"the UW Pico text editor. There are four main sections of the editor: The " +"top line shows the program version, the current filename being edited, and " +"whether or not the file has been modified. Next is the main editor window " +"showing the file being edited. The status line is the third line from the " +"bottom and shows important messages. The bottom two lines show the most " +"commonly used shortcuts in the editor.\n" "\n" -" The notation for shortcuts is as follows: Control-key sequences are notated with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-key sequences are notated with the Meta (M) symbol and can be entered using either the Esc, Alt or Meta key depending on your keyboard setup. The following keystrokes are available in the main editor window. Alternative keys are shown in parentheses:\n" +" The notation for shortcuts is as follows: Control-key sequences are notated " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " +"following keystrokes are available in the main editor window. Alternative " +"keys are shown in parentheses:\n" "\n" msgstr "" " text ajutor pentru nano\n" "\n" -" Editotul nano este proiectat sa emuleze funionalitatea i uurina de folosire a editorului de texte UW Pico. Exist patru seciuni principale ale editorului: Linia de sus arat versiunea programului, numele fiierului curent ce este editat i dac fiierul a fost sau nu modificat. Urmtoarea seciune principal este fereastra de editare ce arat fiierul ce este editat. Linia de stare este a treia linie de jos i arat mesaje importante. Ultimele dou linii arat cele mai frecvente scurtturi folosite n editor.\n" +" Editotul nano este proiectat sa emuleze funionalitatea i uurina de " +"folosire a editorului de texte UW Pico. Exist patru seciuni principale " +"ale editorului: Linia de sus arat versiunea programului, numele fiierului " +"curent ce este editat i dac fiierul a fost sau nu modificat. Urmtoarea " +"seciune principal este fereastra de editare ce arat fiierul ce este " +"editat. Linia de stare este a treia linie de jos i arat mesaje " +"importante. Ultimele dou linii arat cele mai frecvente scurtturi " +"folosite n editor.\n" "\n" -" Notaia pentru scurtturi este dup cum urmeaz: secvene Control-tast sunt notate cu un simbol (^) i sunt introduse cu tasta Control (Ctrl). Secvenele Escape-tast sunt notate cu sombolul Meta (M) i pot fi introduse folosind oricare din tastele Esc, Alt sau Meta, n funcie de setarea tastaturii d-voastr. Urmtoarele combinaii de taste sunt disponibile n fereastra de editare principal. Tastele alternative sunt artate n paranteze:\n" +" Notaia pentru scurtturi este dup cum urmeaz: secvene Control-tast " +"sunt notate cu un simbol (^) i sunt introduse cu tasta Control (Ctrl). " +"Secvenele Escape-tast sunt notate cu sombolul Meta (M) i pot fi introduse " +"folosind oricare din tastele Esc, Alt sau Meta, n funcie de setarea " +"tastaturii d-voastr. Urmtoarele combinaii de taste sunt disponibile n " +"fereastra de editare principal. Tastele alternative sunt artate n " +"paranteze:\n" "\n" #: nano.c:388 nano.c:458 @@ -1195,7 +1275,8 @@ msgstr "Nu pot De-Alinia!" #: nano.c:2696 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " -msgstr "Salvez buffer-ul modificat (RSPUNSUL \"Nu\" VA DISTRUGE SCHIMBRILE) ?" +msgstr "" +"Salvez buffer-ul modificat (RSPUNSUL \"Nu\" VA DISTRUGE SCHIMBRILE) ?" #: nano.c:2796 msgid "Received SIGHUP or SIGTERM\n" @@ -1205,51 +1286,53 @@ msgstr "Am recep msgid "Use \"fg\" to return to nano" msgstr "Folosii \"fg\" pentru a v ntoarce la nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Nu pot redimensiona fereastra de sus" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Nu pot muta fereastra de sus" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Nu pot redimensiona fereastra de editare" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Nu pot muta fereastra de editare" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Nu pot redimensiona fereastra de jos" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Nu pot muta fereastra de jos" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" -msgstr "Am detectat problema cu NumLock. Keypad-ul va funciona greit cu NumLock deactivat" +msgstr "" +"Am detectat problema cu NumLock. Keypad-ul va funciona greit cu NumLock " +"deactivat" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "activat" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "deactivat" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Dimensiune tab prea mic pentr nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignorat, murmur, murmur." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignorat, murmur, murmur." @@ -1384,46 +1467,46 @@ msgstr "C msgid "This is the only occurrence" msgstr "Aceasta este singura apariie" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "nlocuire Anulat" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "nlocuiete n acest caz?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "nlocuire euat: subexpresie necunoscut!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "nlocuiete cu" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Am nlocuit n %d loc" msgstr[1] "Am nlocuit n %d locuri" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Introducei numrul liniei" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Renunat" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Haidei, fii rezonabil" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Nu este o parantez" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Nici o parantez pereche" @@ -1486,7 +1569,8 @@ msgstr "Nu" #: winio.c:1499 #, c-format msgid "line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)" -msgstr "linia %ld/%ld (%d%%), coloana %lu/%lu (%d%%), caracterul %lu/%ld (%d%%)" +msgstr "" +"linia %ld/%ld (%d%%), coloana %lu/%lu (%d%%), caracterul %lu/%ld (%d%%)" #: winio.c:1838 msgid "The nano text editor" diff --git a/po/ru.po b/po/ru.po index d841b442..1f220631 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-17 15:10+0300\n" "Last-Translator: Sergey A. Ribalchenko \n" "Language-Team: Russian \n" @@ -1285,51 +1285,51 @@ msgstr " msgid "Use \"fg\" to return to nano" msgstr " \"fg\" nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr " " -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr " " -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr " " -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr " " -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr " " -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr " " -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr " NumLock'. (NumLock off)" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr " nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF , --" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON , --" @@ -1465,23 +1465,23 @@ msgstr " msgid "This is the only occurrence" msgstr " " -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr " " -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr " ?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr " : !" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr " " -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" @@ -1489,23 +1489,23 @@ msgstr[0] " msgstr[1] " %d " msgstr[2] " %d " -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr " " -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr ", ?" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr " " -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr " " diff --git a/po/sr.po b/po/sr.po index b51815ef..822d5a71 100644 --- a/po/sr.po +++ b/po/sr.po @@ -5,14 +5,16 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.2\n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-11-05 22:27+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: files.c:317 #, c-format @@ -737,18 +739,26 @@ msgstr "Тастер недозвољен у прегледачком режим msgid "" "Search Command Help Text\n" "\n" -" Enter the words or characters you would like to search for, then hit enter. If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.\n" +" Enter the words or characters you would like to search for, then hit " +"enter. If there is a match for the text you entered, the screen will be " +"updated to the location of the nearest match for the search string.\n" "\n" -" The previous search string will be shown in brackets after the Search: prompt. Hitting Enter without entering any text will perform the previous search.\n" +" The previous search string will be shown in brackets after the Search: " +"prompt. Hitting Enter without entering any text will perform the previous " +"search.\n" "\n" " The following function keys are available in Search mode:\n" "\n" msgstr "" "Помоћ за наредбу претраге\n" "\n" -" Унесите речи или знаке које желите да нађете, и притисните Ентер. Уколико се тражени текст пронађе, на екрану ће се приказати положај најближег резултата претраге.\n" +" Унесите речи или знаке које желите да нађете, и притисните Ентер. Уколико " +"се тражени текст пронађе, на екрану ће се приказати положај најближег " +"резултата претраге.\n" "\n" -" Претходна ниска претраге ће се приказати у угластим заградама након „Тражи:“. Притиском на Ентер уместо уноса новог текста ће извести претходну претрагу.\n" +" Претходна ниска претраге ће се приказати у угластим заградама након " +"„Тражи:“. Притиском на Ентер уместо уноса новог текста ће извести претходну " +"претрагу.\n" "\n" " Наредни тастери обављају неки посао у режиму претраге:\n" "\n" @@ -757,14 +767,18 @@ msgstr "" msgid "" "Go To Line Help Text\n" "\n" -" Enter the line number that you wish to go to and hit Enter. If there are fewer lines of text than the number you entered, you will be brought to the last line of the file.\n" +" Enter the line number that you wish to go to and hit Enter. If there are " +"fewer lines of text than the number you entered, you will be brought to the " +"last line of the file.\n" "\n" " The following function keys are available in Go To Line mode:\n" "\n" msgstr "" "Помоћ за одлазак у ред\n" "\n" -" Унесите број реда у који желите да одете и притисните Ентер. Уколико има мање редова текста од броја који сте унели, поставићу вас на последњи ред датотеке.\n" +" Унесите број реда у који желите да одете и притисните Ентер. Уколико има " +"мање редова текста од броја који сте унели, поставићу вас на последњи ред " +"датотеке.\n" "\n" " Наредни тастери обављају неки посао у режиму одласка у ред:\n" "\n" @@ -773,22 +787,32 @@ msgstr "" msgid "" "Insert File Help Text\n" "\n" -" Type in the name of a file to be inserted into the current file buffer at the current cursor location.\n" +" Type in the name of a file to be inserted into the current file buffer at " +"the current cursor location.\n" "\n" -" If you have compiled nano with multiple file buffer support, and enable multiple buffers with the -F or --multibuffer command line flags, the Meta-F toggle, or a nanorc file, inserting a file will cause it to be loaded into a separate buffer (use Meta-< and > to switch between file buffers).\n" +" If you have compiled nano with multiple file buffer support, and enable " +"multiple buffers with the -F or --multibuffer command line flags, the Meta-F " +"toggle, or a nanorc file, inserting a file will cause it to be loaded into a " +"separate buffer (use Meta-< and > to switch between file buffers).\n" "\n" -" If you need another blank buffer, do not enter any filename, or type in a nonexistent filename at the prompt and press Enter.\n" +" If you need another blank buffer, do not enter any filename, or type in a " +"nonexistent filename at the prompt and press Enter.\n" "\n" " The following function keys are available in Insert File mode:\n" "\n" msgstr "" "Помоћ за уметање датотеке\n" "\n" -" Унесите име датотеке коју желите да уметнете у текући бафер на текућем положају курзора.\n" +" Унесите име датотеке коју желите да уметнете у текући бафер на текућем " +"положају курзора.\n" "\n" -" Уколико сте изградили нана са подршком за вишедатотечне бафере, и укључили више бафера са опцијама „-F“ или „--multibuffer“, Мета-F изменом, или nanorc датотеком, уметање датотеке ће је учитати у одвојеном баферу (користите Мета-< и > за пребацивање између бафера).\n" +" Уколико сте изградили нана са подршком за вишедатотечне бафере, и укључили " +"више бафера са опцијама „-F“ или „--multibuffer“, Мета-F изменом, или nanorc " +"датотеком, уметање датотеке ће је учитати у одвојеном баферу (користите Мета-" +"< и > за пребацивање између бафера).\n" "\n" -" Уколико вам треба још један празан бафер, не уносите име датотеке, или укуцајте име непостојеће датотеке и притисните Ентер.\n" +" Уколико вам треба још један празан бафер, не уносите име датотеке, или " +"укуцајте име непостојеће датотеке и притисните Ентер.\n" "\n" " Наредни тастери обављају неки посао у режиму уметања датотеке:\n" "\n" @@ -797,18 +821,26 @@ msgstr "" msgid "" "Write File Help Text\n" "\n" -" Type the name that you wish to save the current file as and hit Enter to save the file.\n" +" Type the name that you wish to save the current file as and hit Enter to " +"save the file.\n" "\n" -" If you have selected text with Ctrl-^, you will be prompted to save only the selected portion to a separate file. To reduce the chance of overwriting the current file with just a portion of it, the current filename is not the default in this mode.\n" +" If you have selected text with Ctrl-^, you will be prompted to save only " +"the selected portion to a separate file. To reduce the chance of " +"overwriting the current file with just a portion of it, the current filename " +"is not the default in this mode.\n" "\n" " The following function keys are available in Write File mode:\n" "\n" msgstr "" "Помоћ за упис датотеке\n" "\n" -" Унесите име датотеке у коју желите да упишете текући бафер и притисните Ентер да снимите.\n" +" Унесите име датотеке у коју желите да упишете текући бафер и притисните " +"Ентер да снимите.\n" "\n" -" Уколико сте изабрали текст помоћу Ctrl-^, бићете упитани да ли желите да сачувате изабрани део у одвојену датотеку. Да умањите шансе преснимавања постојеће датотеке једним њеним делом, име текуће датотеке се не подразумева у овом режиму.\n" +" Уколико сте изабрали текст помоћу Ctrl-^, бићете упитани да ли желите да " +"сачувате изабрани део у одвојену датотеку. Да умањите шансе преснимавања " +"постојеће датотеке једним њеним делом, име текуће датотеке се не подразумева " +"у овом режиму.\n" "\n" " Наредни тастери обављају неки посао у режиму уписа датотеке:\n" "\n" @@ -817,14 +849,22 @@ msgstr "" msgid "" "File Browser Help Text\n" "\n" -" The file browser is used to visually browse the directory structure to select a file for reading or writing. You may use the arrow keys or Page Up/Down to browse through the files, and S or Enter to choose the selected file or enter the selected directory. To move up one level, select the directory called \"..\" at the top of the file list.\n" +" The file browser is used to visually browse the directory structure to " +"select a file for reading or writing. You may use the arrow keys or Page Up/" +"Down to browse through the files, and S or Enter to choose the selected file " +"or enter the selected directory. To move up one level, select the directory " +"called \"..\" at the top of the file list.\n" "\n" " The following function keys are available in the file browser:\n" "\n" msgstr "" "Помоћ за прегледач датотека\n" "\n" -" Прегледач датотека се користи за визуелно разгледање директоријума за избор датотеке ради читања или уписа. Можете користити стрелице или PageUp/Down тастере за разгледање датотека, а S или Ентер да изаберете означену датотеку или да уђете у означени директоријум. Да одете један ниво изнад, изаберите директоријум са називом „..“ у врху списка датотека.\n" +" Прегледач датотека се користи за визуелно разгледање директоријума за избор " +"датотеке ради читања или уписа. Можете користити стрелице или PageUp/Down " +"тастере за разгледање датотека, а S или Ентер да изаберете означену датотеку " +"или да уђете у означени директоријум. Да одете један ниво изнад, изаберите " +"директоријум са називом „..“ у врху списка датотека.\n" "\n" " Наредни тастери обављају неки посао у режиму прегледача датотека:\n" "\n" @@ -835,7 +875,8 @@ msgid "" "\n" " Enter the name of the directory you would like to browse to.\n" "\n" -" If tab completion has not been disabled, you can use the TAB key to (attempt to) automatically complete the directory name.\n" +" If tab completion has not been disabled, you can use the TAB key to " +"(attempt to) automatically complete the directory name.\n" "\n" " The following function keys are available in Browser Go To Directory mode:\n" "\n" @@ -844,7 +885,8 @@ msgstr "" "\n" " Унесите име директоријума у који желите да одете.\n" "\n" -" Уколико није искључено допуњавање табулатором, можете користити TAB тастер да (покушате да) самодопуните име директоријума.\n" +" Уколико није искључено допуњавање табулатором, можете користити TAB тастер " +"да (покушате да) самодопуните име директоријума.\n" "\n" " Наредни тастери обављају неки посао у режиму одласка у директоријум:\n" "\n" @@ -853,14 +895,20 @@ msgstr "" msgid "" "Spell Check Help Text\n" "\n" -" The spell checker checks the spelling of all text in the current file. When an unknown word is encountered, it is highlighted and a replacement can be edited. It will then prompt to replace every instance of the given misspelled word in the current file.\n" +" The spell checker checks the spelling of all text in the current file. " +"When an unknown word is encountered, it is highlighted and a replacement can " +"be edited. It will then prompt to replace every instance of the given " +"misspelled word in the current file.\n" "\n" " The following other functions are available in Spell Check mode:\n" "\n" msgstr "" "Помоћ за проверу правописа\n" "\n" -" Провера правописа ради на свом тексту текуће датотеке. Када се наиђе на непознату реч, она се истиче и замена се може уредити. Тада ћете бити упитани да замените сваку појаву дате погрешно унете речи у текућој датотеци.\n" +" Провера правописа ради на свом тексту текуће датотеке. Када се наиђе на " +"непознату реч, она се истиче и замена се може уредити. Тада ћете бити " +"упитани да замените сваку појаву дате погрешно унете речи у текућој " +"датотеци.\n" "\n" " Наредни тастери обављају неки посао у режиму провере правописа:\n" "\n" @@ -869,14 +917,16 @@ msgstr "" msgid "" "External Command Help Text\n" "\n" -" This menu allows you to insert the output of a command run by the shell into the current buffer (or a new buffer in multibuffer mode).\n" +" This menu allows you to insert the output of a command run by the shell " +"into the current buffer (or a new buffer in multibuffer mode).\n" "\n" " The following keys are available in this mode:\n" "\n" msgstr "" "Помоћ за спољну наредбу\n" "\n" -" Овај мени вам омогућава да уметнете излаз наредбе коју покреће љуска у текући бафер (или у нови бафер у вишебаферском режиму).\n" +" Овај мени вам омогућава да уметнете излаз наредбе коју покреће љуска у " +"текући бафер (или у нови бафер у вишебаферском режиму).\n" "\n" " Наредни тастери обављају неки посао у овом режиму:\n" "\n" @@ -885,16 +935,38 @@ msgstr "" msgid "" " nano help text\n" "\n" -" The nano editor is designed to emulate the functionality and ease-of-use of the UW Pico text editor. There are four main sections of the editor: The top line shows the program version, the current filename being edited, and whether or not the file has been modified. Next is the main editor window showing the file being edited. The status line is the third line from the bottom and shows important messages. The bottom two lines show the most commonly used shortcuts in the editor.\n" +" The nano editor is designed to emulate the functionality and ease-of-use of " +"the UW Pico text editor. There are four main sections of the editor: The " +"top line shows the program version, the current filename being edited, and " +"whether or not the file has been modified. Next is the main editor window " +"showing the file being edited. The status line is the third line from the " +"bottom and shows important messages. The bottom two lines show the most " +"commonly used shortcuts in the editor.\n" "\n" -" The notation for shortcuts is as follows: Control-key sequences are notated with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-key sequences are notated with the Meta (M) symbol and can be entered using either the Esc, Alt or Meta key depending on your keyboard setup. The following keystrokes are available in the main editor window. Alternative keys are shown in parentheses:\n" +" The notation for shortcuts is as follows: Control-key sequences are notated " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " +"following keystrokes are available in the main editor window. Alternative " +"keys are shown in parentheses:\n" "\n" msgstr "" " Помоћ за нана\n" "\n" -" Уређивач нано је израђен да опонаша могућности и лакоћу употребе уређивача Пико са Универзитета у Вашингтону. Постоји четири главна одељка уређивача: горњи ред приказује издање програма, име датотеке која се управо уређује, и да ли је датотека измењена или не. Следећи део је главни уређивач који приказује датотеку која се уређује. Ред са стањем је трећи ред одоздо и приказује важне поруке. Два доња реда приказују најчешће коришћене пречице у уређивачу.\n" +" Уређивач нано је израђен да опонаша могућности и лакоћу употребе уређивача " +"Пико са Универзитета у Вашингтону. Постоји четири главна одељка уређивача: " +"горњи ред приказује издање програма, име датотеке која се управо уређује, и " +"да ли је датотека измењена или не. Следећи део је главни уређивач који " +"приказује датотеку која се уређује. Ред са стањем је трећи ред одоздо и " +"приказује важне поруке. Два доња реда приказују најчешће коришћене пречице у " +"уређивачу.\n" "\n" -" Запис пречица је овакав: Пречице уз Control тастер су означени помоћу симбола капице (^) и уносе се уз тастер Control (Ctrl). Пречице уз Escape тастер су означене помоћу Мета (М) симбола и уносе се помоћу неког од Esc, Alt или Meta тастера у зависности од подешавања ваше тастатуре. Наредни тастери обављају неки посао у прозору главног уређивача. Допунски тастери су приказани у заградама:\n" +" Запис пречица је овакав: Пречице уз Control тастер су означени помоћу " +"симбола капице (^) и уносе се уз тастер Control (Ctrl). Пречице уз Escape " +"тастер су означене помоћу Мета (М) симбола и уносе се помоћу неког од Esc, " +"Alt или Meta тастера у зависности од подешавања ваше тастатуре. Наредни " +"тастери обављају неки посао у прозору главног уређивача. Допунски тастери су " +"приказани у заградама:\n" "\n" #: nano.c:388 nano.c:458 @@ -1201,7 +1273,8 @@ msgstr "Сада могу да „одравнам“!" #: nano.c:2696 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " -msgstr "Сачувати измењени бафер (ОДГОВАРАЊЕМ СА „Не“ ЋЕТЕ БАЦИТИ СВЕ ИЗМЕНЕ) ? " +msgstr "" +"Сачувати измењени бафер (ОДГОВАРАЊЕМ СА „Не“ ЋЕТЕ БАЦИТИ СВЕ ИЗМЕНЕ) ? " #: nano.c:2796 msgid "Received SIGHUP or SIGTERM\n" @@ -1211,51 +1284,53 @@ msgstr "Примих SIGHUP или SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Користите „fg“ да се вратите у нана" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Не могох да изменим величину горњег прозора" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Не могох да преместим горњи прозор" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Не могох да изменим величину прозора за унос" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Не могох да преместим прозор за унос" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Не могох да изменим величину доњег прозора" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Не могох да преместим доњи прозор" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" -msgstr "Примећена грешка са NumLock-ом. Нумеричка тастатура неће радити када је он искључен" +msgstr "" +"Примећена грешка са NumLock-ом. Нумеричка тастатура неће радити када је он " +"искључен" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "укључено" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "искључено" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Величина табулатора премала за нана...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF занемарен, трт-мрт." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON занемарен, трт-мрт." @@ -1390,23 +1465,23 @@ msgstr "Претрага у круг" msgid "This is the only occurrence" msgstr "Ово је једина појава" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Замена отказана" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Да заменим ову појаву?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Не успех да заменим: непознат подизраз!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Замени са" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" @@ -1414,23 +1489,23 @@ msgstr[0] "Замених %d појаву" msgstr[1] "Замених %d појаве" msgstr[2] "Замених %d појава" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Унесите број реда" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Обустављен" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "'ајде, буди разуман" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Није заграда" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Нема одговарајуће заграде" diff --git a/po/sv.po b/po/sv.po index 8a9e18e8..b4271908 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-15 14:20+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -1280,52 +1280,52 @@ msgstr "Mottog SIGHUP eller SIGTERM\n" msgid "Use \"fg\" to return to nano" msgstr "Anvnd \"fg\" fr att tervnda till nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Kan inte ndra storlek p vre fnstret" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Kan inte flytta vre fnstret" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Kan inte ndra storlek p redigeringsfnstret" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Kan inte flytta redigeringsfnstret" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Kan inte ndra storlek p nedre fnstret" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Kan inte flytta nedre fnstret" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock-problem upptcktes. Tangenterna kommer inte att fungera utan NumLock" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "aktiverad" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "inaktiverad" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Tabulatorstorleken r fr liten fr nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF ignorerades, mummel mummel." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON ignorerades, mummel mummel." @@ -1461,46 +1461,46 @@ msgstr "S msgid "This is the only occurrence" msgstr "Detta r enda frekomsten" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Ersttningen avbrts" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Erstta denna frekomst?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Ersttningen misslyckades: oknt deluttryck!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "Erstt med" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "Ersatte %d frekomst" msgstr[1] "Ersatte %d frekomster" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Ange radnummer" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "Avbruten" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Kom igen, var nu frstndig" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Inte en klammer" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Ingen matchande klammer" diff --git a/po/tr.po b/po/tr.po index 6e8cee42..8d875861 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.2.1\n" -"POT-Creation-Date: 2003-04-19 23:02-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-08-17 18:08+0300\n" "Last-Translator: A. Murat EREN \n" "Language-Team: Turkish \n" @@ -16,15 +17,6 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: KBabel 1.0\n" -#: cut.c:49 -#, c-format -msgid "add_to_cutbuffer() called with inptr->data = %s\n" -msgstr "add_to_cutbuffer(), inptr->data = %s ile çağırıldı\n" - -#: cut.c:213 -msgid "Blew away cutbuffer =)\n" -msgstr "cutbuffer silindi =)\n" - #: files.c:317 #, c-format msgid "Read %d line (Converted from Mac format)" @@ -87,12 +79,6 @@ msgstr "Yeni arabelleğe eklenecek dosya [./ 'den]" msgid "File to insert [from ./] " msgstr "Eklenecek dosya [./ 'den] " -#: files.c:479 files.c:736 files.c:793 files.c:881 files.c:893 files.c:944 -#: files.c:955 files.c:1815 -#, c-format -msgid "filename is %s\n" -msgstr "dosya ismi %s\n" - #: files.c:495 msgid "Command to execute" msgstr "Çalıştırılacak komut" @@ -110,16 +96,6 @@ msgstr "Dosya %s dışından eklenemiyor" msgid "Key illegal in non-multibuffer mode" msgstr "Anahtar çoklu olmayan arabellek kipinde geçersiz" -#: files.c:704 nano.c:565 -#, c-format -msgid "%s: free'd a node, YAY!\n" -msgstr "%s: bir düğüm serbest bırakıldı\n" - -#: files.c:709 nano.c:570 -#, c-format -msgid "%s: free'd last node.\n" -msgstr "%s: son düğüm serbest bırakıldı.\n" - #: files.c:873 files.c:936 msgid "No more open files" msgstr "Başka açık dosya yok" @@ -144,11 +120,6 @@ msgstr "%s yedekleme için okunamadı: %s" msgid "Couldn't write backup: %s" msgstr "Yedek yazılamadı: %s" -#: files.c:1401 -#, c-format -msgid "Backing up %s to %s\n" -msgstr "%s, %s olarak yedekleniyor\n" - #: files.c:1413 #, c-format msgid "Could not set permissions %o on backup %s: %s" @@ -170,11 +141,6 @@ msgstr "%s yedeğinin erişim/değiştirme zamanı ayarlanamadı: %s" msgid "Could not open file for writing: %s" msgstr "Dosya yazmak için açılamadı: %s" -#: files.c:1516 -#, c-format -msgid "Wrote >%s\n" -msgstr "Yazıldı >%s\n" - #: files.c:1572 #, c-format msgid "Could not close %s: %s" @@ -461,7 +427,9 @@ msgstr "İmlecin olduğu yerden satır başı yap" #: global.c:384 msgid "Make the current search or replace case (in)sensitive" -msgstr "Şu anki aramayı ya da değiştirmeyi büyük-küçük harfe duyarlı(duyarsız) gerçekleştir" +msgstr "" +"Şu anki aramayı ya da değiştirmeyi büyük-küçük harfe duyarlı(duyarsız) " +"gerçekleştir" #: global.c:385 msgid "Go to file browser" @@ -527,215 +495,215 @@ msgstr "Sonraki yüklenmiş dosyayı aç" msgid "Toggle insert into new buffer" msgstr "Yeni arabelleğe girişi aç/kapa" -#: global.c:418 global.c:565 global.c:605 global.c:641 global.c:660 -#: global.c:690 global.c:722 global.c:744 global.c:754 global.c:764 -#: global.c:784 +#: global.c:418 global.c:578 global.c:627 global.c:664 global.c:683 +#: global.c:713 global.c:751 global.c:775 global.c:785 global.c:795 +#: global.c:816 msgid "Get Help" msgstr "Yardım Al" -#: global.c:424 +#: global.c:425 msgid "Close" msgstr "Kapat" -#: global.c:430 global.c:683 +#: global.c:432 global.c:706 msgid "Exit" msgstr "Çık" -#: global.c:434 +#: global.c:437 msgid "WriteOut" msgstr "Yaz" -#: global.c:438 +#: global.c:442 msgid "Justify" msgstr "Yasla" -#: global.c:443 +#: global.c:448 msgid "Read File" msgstr "Dosya Oku" -#: global.c:452 +#: global.c:458 msgid "Where Is" msgstr "Ara" -#: global.c:456 global.c:675 global.c:770 +#: global.c:463 global.c:698 global.c:801 msgid "Prev Page" msgstr "Önceki Sayfa" -#: global.c:460 global.c:679 global.c:774 +#: global.c:468 global.c:702 global.c:805 msgid "Next Page" msgstr "Sonraki Sayfa" -#: global.c:464 +#: global.c:473 msgid "Cut Text" msgstr "Metni Kes" -#: global.c:469 +#: global.c:479 msgid "UnJustify" msgstr "Yaslamayı Geri Al" -#: global.c:473 +#: global.c:484 msgid "UnCut Txt" msgstr "Kesmeyi Geri Al" -#: global.c:477 +#: global.c:489 msgid "Cur Pos" msgstr "İmleç Pozisyonu" -#: global.c:481 +#: global.c:494 msgid "To Spell" msgstr "Denetime" -#: global.c:485 nano.c:420 winio.c:604 +#: global.c:498 nano.c:420 winio.c:655 msgid "Up" msgstr "Yukarı" -#: global.c:489 +#: global.c:502 msgid "Down" msgstr "Aşağı" -#: global.c:493 +#: global.c:506 msgid "Forward" msgstr "İleri" -#: global.c:497 +#: global.c:510 msgid "Back" msgstr "Geri" -#: global.c:501 +#: global.c:514 msgid "Home" msgstr "Ev" -#: global.c:505 +#: global.c:518 msgid "End" msgstr "Son" -#: global.c:509 +#: global.c:522 msgid "Refresh" msgstr "Tazele" -#: global.c:513 +#: global.c:526 msgid "Mark Text" msgstr "Metni İşaretle" -#: global.c:517 +#: global.c:530 msgid "Delete" msgstr "Sil" -#: global.c:521 +#: global.c:534 msgid "Backspace" msgstr "Geri tuşu" -#: global.c:525 +#: global.c:538 msgid "Tab" msgstr "Sekme (TAB)" -#: global.c:528 global.c:578 +#: global.c:541 global.c:595 msgid "Replace" msgstr "Değiştir" -#: global.c:532 +#: global.c:545 msgid "Enter" msgstr "Gir Tuşu (Enter)" -#: global.c:536 global.c:581 global.c:620 +#: global.c:549 global.c:599 global.c:643 msgid "Go To Line" msgstr "Satıra Git" -#: global.c:541 +#: global.c:554 msgid "Next Word" msgstr "Sonraki Kelime" -#: global.c:542 +#: global.c:555 msgid "Move forward one word" msgstr "Bir kelime ileri git" -#: global.c:545 +#: global.c:558 msgid "Prev Word" msgstr "Önceki Kelime" -#: global.c:546 +#: global.c:559 msgid "Move backward one word" msgstr "Bir kelime geriye git" -#: global.c:550 +#: global.c:563 msgid "Find Other Bracket" msgstr "Diğer Köşeli Ayracı Bul" -#: global.c:555 +#: global.c:568 msgid "Previous File" msgstr "Önceki Dosya" -#: global.c:558 +#: global.c:571 msgid "Next File" msgstr "Sonraki Dosya" -#: global.c:568 global.c:608 global.c:644 global.c:663 global.c:717 -#: global.c:725 global.c:747 global.c:757 global.c:767 global.c:787 -#: winio.c:1272 +#: global.c:582 global.c:630 global.c:667 global.c:686 global.c:746 +#: global.c:754 global.c:778 global.c:788 global.c:798 global.c:819 +#: winio.c:1323 msgid "Cancel" msgstr "İptal" -#: global.c:571 global.c:611 global.c:647 global.c:666 +#: global.c:586 global.c:633 global.c:670 global.c:689 msgid "First Line" msgstr "İlk Satır" -#: global.c:575 global.c:614 global.c:650 global.c:669 +#: global.c:591 global.c:636 global.c:673 global.c:692 msgid "Last Line" msgstr "Son Satır" -#: global.c:585 global.c:624 +#: global.c:604 global.c:647 msgid "Case Sens" msgstr "Harf Duyarlı" -#: global.c:588 global.c:627 +#: global.c:608 global.c:650 msgid "Direction" msgstr "Yön" -#: global.c:592 global.c:631 +#: global.c:613 global.c:654 msgid "Regexp" msgstr "Düzenli İfade" -#: global.c:597 global.c:635 global.c:654 +#: global.c:619 global.c:658 global.c:677 msgid "History" msgstr "Geçmiş" -#: global.c:617 +#: global.c:640 msgid "No Replace" msgstr "Değiştirme Yok" -#: global.c:694 global.c:729 +#: global.c:718 global.c:758 msgid "To Files" msgstr "Dosyalara" -#: global.c:699 +#: global.c:724 msgid "DOS Format" msgstr "DOS Biçimi" -#: global.c:702 +#: global.c:728 msgid "Mac Format" msgstr "Mac Biçimi" -#: global.c:706 +#: global.c:733 msgid "Append" msgstr "Sonuna Ekle" -#: global.c:709 +#: global.c:737 msgid "Prepend" msgstr "Başına Ekle" -#: global.c:713 +#: global.c:742 msgid "Backup File" msgstr "Yedek Dosyası" -#: global.c:733 +#: global.c:763 msgid "Execute Command" msgstr "Komut Çalıştır" -#: global.c:736 winio.c:545 +#: global.c:767 winio.c:596 msgid "New Buffer" msgstr "Yeni Arabellek" -#: global.c:778 +#: global.c:810 msgid "Go To Dir" msgstr "Dizine Git" @@ -769,18 +737,27 @@ msgstr "GÖSTER kipi için geçersiz anahtar" msgid "" "Search Command Help Text\n" "\n" -" Enter the words or characters you would like to search for, then hit enter. If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.\n" +" Enter the words or characters you would like to search for, then hit " +"enter. If there is a match for the text you entered, the screen will be " +"updated to the location of the nearest match for the search string.\n" "\n" -" The previous search string will be shown in brackets after the Search: prompt. Hitting Enter without entering any text will perform the previous search.\n" +" The previous search string will be shown in brackets after the Search: " +"prompt. Hitting Enter without entering any text will perform the previous " +"search.\n" "\n" " The following function keys are available in Search mode:\n" "\n" msgstr "" "Arama Komutu İçin Yardım Metni\n" "\n" -" Aramak istediğiniz kelimeleri ya da karakterleri girin ve Giriş tuşuna basın. Metin içinde aradığınıza karşı gelen bir kelime ya da karakter bulunursa, ekran tazelenir ve imleç sonucun bulunduğu en yakın noktaya konumlanır.\n" +" Aramak istediğiniz kelimeleri ya da karakterleri girin ve Giriş tuşuna " +"basın. Metin içinde aradığınıza karşı gelen bir kelime ya da karakter " +"bulunursa, ekran tazelenir ve imleç sonucun bulunduğu en yakın noktaya " +"konumlanır.\n" "\n" -" Önceki arama metni, Arama komut satırının sağında köşeli parantezler içerisinde gösterilir. Hiç bir giriş yapmadan Giriş tuşuna basarsanız, arama işlemi köşeli parantezler içindeki kelime için tekrarlanır.\n" +" Önceki arama metni, Arama komut satırının sağında köşeli parantezler " +"içerisinde gösterilir. Hiç bir giriş yapmadan Giriş tuşuna basarsanız, " +"arama işlemi köşeli parantezler içindeki kelime için tekrarlanır.\n" "\n" " Arama kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -789,14 +766,18 @@ msgstr "" msgid "" "Go To Line Help Text\n" "\n" -" Enter the line number that you wish to go to and hit Enter. If there are fewer lines of text than the number you entered, you will be brought to the last line of the file.\n" +" Enter the line number that you wish to go to and hit Enter. If there are " +"fewer lines of text than the number you entered, you will be brought to the " +"last line of the file.\n" "\n" " The following function keys are available in Go To Line mode:\n" "\n" msgstr "" "Satıra Git Yardım Metni\n" "\n" -" Gitmek istediğiniz satır numarasını yazarak Enter tuşuna basınız. Eğer girdiğiniz satır sayısı, metnin sahip olduğu toplam satır sayısından büyük ise, imleç dosyanın en son satırına konumlanır.\n" +" Gitmek istediğiniz satır numarasını yazarak Enter tuşuna basınız. Eğer " +"girdiğiniz satır sayısı, metnin sahip olduğu toplam satır sayısından büyük " +"ise, imleç dosyanın en son satırına konumlanır.\n" "\n" " Satıra Git kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -805,22 +786,34 @@ msgstr "" msgid "" "Insert File Help Text\n" "\n" -" Type in the name of a file to be inserted into the current file buffer at the current cursor location.\n" +" Type in the name of a file to be inserted into the current file buffer at " +"the current cursor location.\n" "\n" -" If you have compiled nano with multiple file buffer support, and enable multiple buffers with the -F or --multibuffer command line flags, the Meta-F toggle, or a nanorc file, inserting a file will cause it to be loaded into a separate buffer (use Meta-< and > to switch between file buffers).\n" +" If you have compiled nano with multiple file buffer support, and enable " +"multiple buffers with the -F or --multibuffer command line flags, the Meta-F " +"toggle, or a nanorc file, inserting a file will cause it to be loaded into a " +"separate buffer (use Meta-< and > to switch between file buffers).\n" "\n" -" If you need another blank buffer, do not enter any filename, or type in a nonexistent filename at the prompt and press Enter.\n" +" If you need another blank buffer, do not enter any filename, or type in a " +"nonexistent filename at the prompt and press Enter.\n" "\n" " The following function keys are available in Insert File mode:\n" "\n" msgstr "" "Dosya Ekle Yardım Metni\n" "\n" -" Yürürlükte olan dosyaya, imlecin bulunduğu noktadan itibaren eklenecek olan dosyanın adını yazın.\n" +" Yürürlükte olan dosyaya, imlecin bulunduğu noktadan itibaren eklenecek olan " +"dosyanın adını yazın.\n" "\n" -" Eğer nano'yu çoklu dosya arabelleği desteği ile beraber derlediyseniz ve çoklu arabelleği, -F ya da --multibuffer komut satırı bayrakları ile kullanılabilir hale getirdiyseniz, ismini yazdığınız dosya ayrı bir arabelleğe yüklenecektir. (Meta < ve > tuşları yardımıyla arabellekler arasında gezebilirsiniz).\n" +" Eğer nano'yu çoklu dosya arabelleği desteği ile beraber derlediyseniz ve " +"çoklu arabelleği, -F ya da --multibuffer komut satırı bayrakları ile " +"kullanılabilir hale getirdiyseniz, ismini yazdığınız dosya ayrı bir " +"arabelleğe yüklenecektir. (Meta < ve > tuşları yardımıyla arabellekler " +"arasında gezebilirsiniz).\n" "\n" -" Eğer boş bir arabelleğe ihtiyacınız varsa, komut satırına herhangi bir dosya adı girmeyin ya da var olmayan bir dosya adı girip Giriş tuşuna basın.\n" +" Eğer boş bir arabelleğe ihtiyacınız varsa, komut satırına herhangi bir " +"dosya adı girmeyin ya da var olmayan bir dosya adı girip Giriş tuşuna " +"basın.\n" "\n" " Dosya Ekle kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -829,18 +822,27 @@ msgstr "" msgid "" "Write File Help Text\n" "\n" -" Type the name that you wish to save the current file as and hit Enter to save the file.\n" +" Type the name that you wish to save the current file as and hit Enter to " +"save the file.\n" "\n" -" If you have selected text with Ctrl-^, you will be prompted to save only the selected portion to a separate file. To reduce the chance of overwriting the current file with just a portion of it, the current filename is not the default in this mode.\n" +" If you have selected text with Ctrl-^, you will be prompted to save only " +"the selected portion to a separate file. To reduce the chance of " +"overwriting the current file with just a portion of it, the current filename " +"is not the default in this mode.\n" "\n" " The following function keys are available in Write File mode:\n" "\n" msgstr "" "Dosyayı Yaz Yardım Metni\n" "\n" -" Dosyayı hangi isimle kaydetmek istiyorsanız o ismi yazıp Giriş tuşuna basınız.\n" +" Dosyayı hangi isimle kaydetmek istiyorsanız o ismi yazıp Giriş tuşuna " +"basınız.\n" "\n" -" Eğer Ctrl-^ ile seçtiğiniz bir metin varsa, size sadece seçili olan kısmı ayrı bir dosyaya kaydedip kaydetmek istemeyeceğiniz sorulacaktır. Yanlışlıkla dosyanızın bir kısmını, tamamının üzerine yazabilmeniz ihtimalini ortadan kaldırmak için, çalıştığınız dosya ismi bu kipte varsayılan dosya ismi olarak komut satırında yazmamaktadır..\n" +" Eğer Ctrl-^ ile seçtiğiniz bir metin varsa, size sadece seçili olan kısmı " +"ayrı bir dosyaya kaydedip kaydetmek istemeyeceğiniz sorulacaktır. " +"Yanlışlıkla dosyanızın bir kısmını, tamamının üzerine yazabilmeniz " +"ihtimalini ortadan kaldırmak için, çalıştığınız dosya ismi bu kipte " +"varsayılan dosya ismi olarak komut satırında yazmamaktadır..\n" "\n" " Dosyayı Yaz kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -849,14 +851,23 @@ msgstr "" msgid "" "File Browser Help Text\n" "\n" -" The file browser is used to visually browse the directory structure to select a file for reading or writing. You may use the arrow keys or Page Up/Down to browse through the files, and S or Enter to choose the selected file or enter the selected directory. To move up one level, select the directory called \"..\" at the top of the file list.\n" +" The file browser is used to visually browse the directory structure to " +"select a file for reading or writing. You may use the arrow keys or Page Up/" +"Down to browse through the files, and S or Enter to choose the selected file " +"or enter the selected directory. To move up one level, select the directory " +"called \"..\" at the top of the file list.\n" "\n" " The following function keys are available in the file browser:\n" "\n" msgstr "" "Dosya Tarayıcısı Yardım Metni\n" "\n" -" Dosya tarayıcısı, okumak ya da yazmak üzere bir dosya seçme işlemi esnasında dizin yapısı içerisinde görsel olarak gezinebilmenizi sağlar. Ok ve Sayfa Aşağı/Yukarı tuşları yardımıyla dosyaları gezebilir, bir dizin veya dosya üzerindeyken S ya da Giriş tuşunuza basarak dizine geçebilir ya da dosyayı seçebilirsiniz. Bir üst dizine geçmek için listenin en üstünde bulunan \"..\" isimli dizini seçmeniz gerekmektedir.\n" +" Dosya tarayıcısı, okumak ya da yazmak üzere bir dosya seçme işlemi " +"esnasında dizin yapısı içerisinde görsel olarak gezinebilmenizi sağlar. Ok " +"ve Sayfa Aşağı/Yukarı tuşları yardımıyla dosyaları gezebilir, bir dizin veya " +"dosya üzerindeyken S ya da Giriş tuşunuza basarak dizine geçebilir ya da " +"dosyayı seçebilirsiniz. Bir üst dizine geçmek için listenin en üstünde " +"bulunan \"..\" isimli dizini seçmeniz gerekmektedir.\n" "\n" " Dosya Tarayıcısı kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -867,7 +878,8 @@ msgid "" "\n" " Enter the name of the directory you would like to browse to.\n" "\n" -" If tab completion has not been disabled, you can use the TAB key to (attempt to) automatically complete the directory name.\n" +" If tab completion has not been disabled, you can use the TAB key to " +"(attempt to) automatically complete the directory name.\n" "\n" " The following function keys are available in Browser Go To Directory mode:\n" "\n" @@ -876,7 +888,8 @@ msgstr "" "\n" " İçine girmek istediğiniz dizinin adını yazıp Giriş tuşuna basınız.\n" "\n" -" Eğer isim tamamlama kullanılır durumda ise, klavyenizin Sekme tuşuna basarak dizinlerin isimlerinin tamamlanmasını sağlayabilirsiniz.\n" +" Eğer isim tamamlama kullanılır durumda ise, klavyenizin Sekme tuşuna " +"basarak dizinlerin isimlerinin tamamlanmasını sağlayabilirsiniz.\n" "\n" " Tarayıcı Dizine Git kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -885,14 +898,20 @@ msgstr "" msgid "" "Spell Check Help Text\n" "\n" -" The spell checker checks the spelling of all text in the current file. When an unknown word is encountered, it is highlighted and a replacement can be edited. It will then prompt to replace every instance of the given misspelled word in the current file.\n" +" The spell checker checks the spelling of all text in the current file. " +"When an unknown word is encountered, it is highlighted and a replacement can " +"be edited. It will then prompt to replace every instance of the given " +"misspelled word in the current file.\n" "\n" " The following other functions are available in Spell Check mode:\n" "\n" msgstr "" "Yazım Denetimi Yardım Metni\n" "\n" -" Yazım denetleyicisi, tüm metin içerisindeki yazımı denetler. Bilinmeyen bir kelime ile karşılaştığında, kelimeyi vurgular ve kelimeyi değiştirebilmeniz için komut satırına yazar. Bu işlem yazım denetiminin metin içinde yanlış kabul ettiği her kelime için tekrarlanır.\n" +" Yazım denetleyicisi, tüm metin içerisindeki yazımı denetler. Bilinmeyen " +"bir kelime ile karşılaştığında, kelimeyi vurgular ve kelimeyi " +"değiştirebilmeniz için komut satırına yazar. Bu işlem yazım denetiminin " +"metin içinde yanlış kabul ettiği her kelime için tekrarlanır.\n" "\n" " Yazım Denetimi kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -901,14 +920,17 @@ msgstr "" msgid "" "External Command Help Text\n" "\n" -" This menu allows you to insert the output of a command run by the shell into the current buffer (or a new buffer in multibuffer mode).\n" +" This menu allows you to insert the output of a command run by the shell " +"into the current buffer (or a new buffer in multibuffer mode).\n" "\n" " The following keys are available in this mode:\n" "\n" msgstr "" "Harici Komut Yardım Metni\n" "\n" -" Bu menü, kabukta çalıştıracağınız bir komutun çıktısını yürürlükteki arabelleğe eklemenizi sağlar. (çoklu arabellek aktif ise diğer bir arabelleğe de ekleyebilirsiniz).\n" +" Bu menü, kabukta çalıştıracağınız bir komutun çıktısını yürürlükteki " +"arabelleğe eklemenizi sağlar. (çoklu arabellek aktif ise diğer bir " +"arabelleğe de ekleyebilirsiniz).\n" "\n" " Harici Komut kipinde aşağıdaki anahtarlardan yararlanabilirsiniz:\n" "\n" @@ -917,16 +939,39 @@ msgstr "" msgid "" " nano help text\n" "\n" -" The nano editor is designed to emulate the functionality and ease-of-use of the UW Pico text editor. There are four main sections of the editor: The top line shows the program version, the current filename being edited, and whether or not the file has been modified. Next is the main editor window showing the file being edited. The status line is the third line from the bottom and shows important messages. The bottom two lines show the most commonly used shortcuts in the editor.\n" +" The nano editor is designed to emulate the functionality and ease-of-use of " +"the UW Pico text editor. There are four main sections of the editor: The " +"top line shows the program version, the current filename being edited, and " +"whether or not the file has been modified. Next is the main editor window " +"showing the file being edited. The status line is the third line from the " +"bottom and shows important messages. The bottom two lines show the most " +"commonly used shortcuts in the editor.\n" "\n" -" The notation for shortcuts is as follows: Control-key sequences are notated with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-key sequences are notated with the Meta (M) symbol and can be entered using either the Esc, Alt or Meta key depending on your keyboard setup. The following keystrokes are available in the main editor window. Alternative keys are shown in parentheses:\n" +" The notation for shortcuts is as follows: Control-key sequences are notated " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " +"following keystrokes are available in the main editor window. Alternative " +"keys are shown in parentheses:\n" "\n" msgstr "" " nano yardım metni\n" "\n" -" nano düzenleyicisi, UW Pico metin düenleyicisinin işlevselliğine ve kolay kullanımına öykünmesi için tasarlandı. Düzenleyicide dört ana bölüm bulunmaktadır: En üst satır programın sürümünü, o an düzenlenmekte olan dosyanın adını ve bu dosyanın değiştirilip değiştirilmediğini gösterir. Bir sonraki kısım ana düzenleyici penceresidir ve burada düzenlenmekte olan dosyanın içeriği gösterilir. Üçüncü kısım olan durum çubuğu, önemli mesajların gösterildiği kısımdır. En alttaki iki satır ise, düzenleyici içerisinde en sık kullanılan kısayolları gösterir.\n" +" nano düzenleyicisi, UW Pico metin düenleyicisinin işlevselliğine ve kolay " +"kullanımına öykünmesi için tasarlandı. Düzenleyicide dört ana bölüm " +"bulunmaktadır: En üst satır programın sürümünü, o an düzenlenmekte olan " +"dosyanın adını ve bu dosyanın değiştirilip değiştirilmediğini gösterir. Bir " +"sonraki kısım ana düzenleyici penceresidir ve burada düzenlenmekte olan " +"dosyanın içeriği gösterilir. Üçüncü kısım olan durum çubuğu, önemli " +"mesajların gösterildiği kısımdır. En alttaki iki satır ise, düzenleyici " +"içerisinde en sık kullanılan kısayolları gösterir.\n" "\n" -" Kısayolların gösterimi ise şöyledir: Kontrol (Ctrl) tuşu ile başlayan ardışıklıklar düzeltme işarteti (^) ile gösterilmiştir. Kaçış tuşu (Esc) ardışıklıkları Meta (M) sembolü ile gösterilmiştir ve Esc, Alt ya da Meta tuşları M sembolü için kullanılabilir; bu sizin klavye yapılandırmanıza bağlıdır. Takip eden tuş birleşimleri düzenleyicinin ana penceresinde kullanılabilir. Alternatif tuşlar parantez içinde gösterilmişlerdir:\n" +" Kısayolların gösterimi ise şöyledir: Kontrol (Ctrl) tuşu ile başlayan " +"ardışıklıklar düzeltme işarteti (^) ile gösterilmiştir. Kaçış tuşu (Esc) " +"ardışıklıkları Meta (M) sembolü ile gösterilmiştir ve Esc, Alt ya da Meta " +"tuşları M sembolü için kullanılabilir; bu sizin klavye yapılandırmanıza " +"bağlıdır. Takip eden tuş birleşimleri düzenleyicinin ana penceresinde " +"kullanılabilir. Alternatif tuşlar parantez içinde gösterilmişlerdir:\n" "\n" #: nano.c:388 nano.c:458 @@ -1059,7 +1104,8 @@ msgstr "Yeni satırlarda otomatik paragraf başı yap" #: nano.c:664 msgid "Let ^K cut from cursor to end of line" -msgstr "^K komutunun, imleç pozisyonundan satırın sonuna dek kesmesine izin ver" +msgstr "" +"^K komutunun, imleç pozisyonundan satırın sonuna dek kesmesine izin ver" #: nano.c:666 msgid "Don't follow symbolic links, overwrite" @@ -1162,16 +1208,6 @@ msgstr "Boru işlemi gerçekleştirilemedi" msgid "Could not fork" msgstr "Fork işlemi gerçekleştirilemedi" -#: nano.c:1032 -#, c-format -msgid "current->data now = \"%s\"\n" -msgstr "current->data now = \"%s\"\n" - -#: nano.c:1092 -#, c-format -msgid "After, data = \"%s\"\n" -msgstr "Sonra, veri = \"%s\"\n" - #: nano.c:1365 msgid "Mark Set" msgstr "İşaretle" @@ -1242,7 +1278,9 @@ msgstr "Şmdi yaslamayı geri alabilirsiniz!" #: nano.c:2696 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " -msgstr "Değiştirilmiş arabellek kaydedilsin mi (\"Hayır\" CEVABI TÜM DEĞİŞİKLİKLERİ YOK EDECEK) ? " +msgstr "" +"Değiştirilmiş arabellek kaydedilsin mi (\"Hayır\" CEVABI TÜM DEĞİŞİKLİKLERİ " +"YOK EDECEK) ? " #: nano.c:2796 msgid "Received SIGHUP or SIGTERM\n" @@ -1252,101 +1290,55 @@ msgstr "SIGHUP ya da SIGTERM sinyali alındı\n" msgid "Use \"fg\" to return to nano" msgstr "nano'ya geri dönmek için \"fg\"'yi kullanın" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr "Üst pencere yeniden boyutlandırılamaz" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr "Üst pencere hareket ettirilemez" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr "Düzenleme penceresi yeniden boyutlandırılamaz" -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr "Düzenleme penceresi hareket ettirilemez" -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr "Alt pencere yeniden boyutlandırılamaz" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr "Alt pencere hareket ettirilemez" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" -msgstr "NumLock hatası bulundu. Sayısal klavye NumLock basılı değil ise hata verecek" +msgstr "" +"NumLock hatası bulundu. Sayısal klavye NumLock basılı değil ise hata verecek" -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "etkin" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "etkisiz" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "Tab boyutu nano için çok küçük...\n" -#: nano.c:3384 -msgid "Main: set up windows\n" -msgstr "Ana: pencereleri ayarla\n" - -#: nano.c:3398 -msgid "Main: bottom win\n" -msgstr "Ana: alt pencere\n" - -#: nano.c:3404 -msgid "Main: open file\n" -msgstr "Ana: dosya aç\n" - -#: nano.c:3461 -#, c-format -msgid "AHA! %c (%d)\n" -msgstr "AHA! %c (%d)\n" - -#: nano.c:3481 -#, c-format -msgid "I got Alt-O-%c! (%d)\n" -msgstr "Alt-O-%c bulundu! (%d)\n" - -#: nano.c:3508 -#, c-format -msgid "I got Alt-[-1-%c! (%d)\n" -msgstr "Alt-[-1-%c bulundu! (%d)\n" - -#: nano.c:3538 -#, c-format -msgid "I got Alt-[-2-%c! (%d)\n" -msgstr "Alt-[-2-%c bulundu! (%d)\n" - -#: nano.c:3607 -#, c-format -msgid "I got Alt-[-%c! (%d)\n" -msgstr "Alt-[-%c bulundu! (%d)\n" - -#: nano.c:3653 -#, c-format -msgid "I got Alt-%c! (%d)\n" -msgstr "Alt-%c bulundu! (%d)\n" - -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF yoksayıldı." -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON yoksayıldı." -#: nano.c:3752 -#, c-format -msgid "I got %c (%d)!\n" -msgstr "%c (%d) bulundu!\n" - #: rcfile.c:103 #, c-format msgid "Error in %s on line %d: " @@ -1391,14 +1383,6 @@ msgstr "Düzenli ifade katarları, \" karakteri ile başlamalı ve bitmeli\n" msgid "Missing syntax name" msgstr "Sözdizim ismi eksik" -#: rcfile.c:298 -msgid "Adding new syntax after 1st\n" -msgstr "Birinciden sonra yeni bir sözdizimi ekleniyor\n" - -#: rcfile.c:306 -msgid "Starting a new syntax type\n" -msgstr "Yeni bir sözdizim tipine başlanıyor\n" - #: rcfile.c:352 msgid "Missing color name" msgstr "Renk ismi eksik" @@ -1407,35 +1391,15 @@ msgstr "Renk ismi eksik" msgid "Cannot add a color directive without a syntax line" msgstr "Sözdizimi satırı olmaksızın renk direktifi eklenemez" -#: rcfile.c:420 -#, c-format -msgid "Starting a new colorstring for fg %d bg %d\n" -msgstr "Yeni bir renkli yazıya %d ön plan rengi ve %d arka plan rengi ile başlanıyor\n" - -#: rcfile.c:428 -#, c-format -msgid "Adding new entry for fg %d bg %d\n" -msgstr "Yeni bir girdi, %d ön plan rengi ve %d arka plan rengi ile ekleniyor\n" - #: rcfile.c:437 msgid "\"start=\" requires a corresponding \"end=\"" msgstr "\"start=\", \"end=\"e ihtiyaç duyar." -#: rcfile.c:486 -#, c-format -msgid "%s: Read a comment\n" -msgstr "%s: Bir açıklama oku\n" - #: rcfile.c:509 #, c-format msgid "command %s not understood" msgstr "%s komutu anlaşılamadı" -#: rcfile.c:521 -#, c-format -msgid "%s: Parsing option %s\n" -msgstr "%s: %s seçeneği ayrıştırılıyor\n" - #: rcfile.c:541 #, c-format msgid "option %s requires an argument" @@ -1451,16 +1415,6 @@ msgstr "istenen doldurma değeri %d geçerli değil" msgid "requested tab size %d invalid" msgstr "istenen Tab değeri %d geçerli değil" -#: rcfile.c:598 -#, c-format -msgid "set flag %d!\n" -msgstr "%d bayrağı atandı!\n" - -#: rcfile.c:604 -#, c-format -msgid "unset flag %d!\n" -msgstr "%d bayrağı boşaltıldı!\n" - #: rcfile.c:614 msgid "Errors found in .nanorc file" msgstr ".nanorc dosyası içerisinde hatalar bulundu" @@ -1516,178 +1470,249 @@ msgstr "Arama Döngülendi" msgid "This is the only occurrence" msgstr "Bu tek bulgu" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "Değiştirme İptal Edildi" -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "Bu bulgu değiştirilsin mi?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "Yerdeğiştirme başarısız oldu: bilinmeyen ifade parçası!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "İle değiştir" -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" msgstr[0] "%d değiştirme yapıldı" msgstr[1] "" -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Satır numarasını girin" -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "İptal edildi" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr "Hadi ama, mantıklı olun" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr "Ayraç değil" -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr "Eşleşen ayraç yok" -#: utils.c:225 utils.c:235 +#: utils.c:257 utils.c:267 msgid "nano is out of memory!" msgstr "nano bellek dışı!" -#: winio.c:90 -#, c-format -msgid "actual_x for xplus=%d returns %d\n" -msgstr "actual_x, xplus=%d değeri için %d döndürdü\n" - -#: winio.c:245 winio.c:473 -#, c-format -msgid "Aha! '%c' (%d)\n" -msgstr "Aha! '%c' (%d)\n" - -#: winio.c:496 -#, c-format -msgid "input '%c' (%d)\n" -msgstr "girdi '%c' (%d)\n" - -#: winio.c:549 +#: winio.c:600 msgid " File: ..." msgstr " Dosya: ..." -#: winio.c:551 +#: winio.c:602 msgid " DIR: ..." msgstr " DİZİN: ..." -#: winio.c:556 +#: winio.c:607 msgid "File: " msgstr "Dosya: " -#: winio.c:559 +#: winio.c:610 msgid " DIR: " msgstr " DİZİN: " -#: winio.c:564 +#: winio.c:615 msgid " Modified " msgstr " Değiştirildi " -#: winio.c:566 +#: winio.c:617 msgid " View " msgstr " Göster " -#: winio.c:752 +#: winio.c:803 msgid "Refusing 0 length regex match" msgstr "0 uzunluktaki düzenli ifade eşi dikkate alınmadı" -#: winio.c:1064 -#, c-format -msgid "Moved to (%d, %d) in edit buffer\n" -msgstr "Düzenleme arabelleği içine (%d, %d) taşındı\n" - -#: winio.c:1215 -#, c-format -msgid "I got \"%s\"\n" -msgstr "\"%s\" bulundu\n" - -#: winio.c:1246 +#: winio.c:1297 msgid "Yy" msgstr "Ee" -#: winio.c:1247 +#: winio.c:1298 msgid "Nn" msgstr "Hh" -#: winio.c:1248 +#: winio.c:1299 msgid "Aa" msgstr "Tt" -#: winio.c:1259 +#: winio.c:1310 msgid "Yes" msgstr "Evet" -#: winio.c:1264 +#: winio.c:1315 msgid "All" msgstr "Tümü" -#: winio.c:1269 +#: winio.c:1320 msgid "No" msgstr "Hayır" -#: winio.c:1448 +#: winio.c:1499 #, c-format msgid "line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)" msgstr "satır %ld/%ld (%d%%), sütun %lu/%lu (%d%%), karakter %lu/%ld (%d%%)" -#: winio.c:1704 -msgid "Dumping file buffer to stderr...\n" -msgstr "Dosya arabelleği stderr'a dökülüyor...\n" - -#: winio.c:1706 -msgid "Dumping cutbuffer to stderr...\n" -msgstr "Kesme arabelleği stderr'a dökülüyor...\n" - -#: winio.c:1708 -msgid "Dumping a buffer to stderr...\n" -msgstr "Arabellek stderr'a dökülüyor...\n" - -#: winio.c:1789 +#: winio.c:1838 msgid "The nano text editor" msgstr "nano metin editörü" -#: winio.c:1790 +#: winio.c:1839 msgid "version " msgstr "sürüm " -#: winio.c:1791 +#: winio.c:1840 msgid "Brought to you by:" msgstr "Size sağlayan: " -#: winio.c:1792 +#: winio.c:1841 msgid "Special thanks to:" msgstr "Özel teşekkürler:" -#: winio.c:1793 +#: winio.c:1842 msgid "The Free Software Foundation" msgstr "The Free Software Foundation" -#: winio.c:1794 +#: winio.c:1843 msgid "For ncurses:" msgstr "ncurses için:" -#: winio.c:1795 +#: winio.c:1844 msgid "and anyone else we forgot..." msgstr "ve unuttuğumuz kişilere..." -#: winio.c:1796 +#: winio.c:1845 msgid "Thank you for using nano!\n" msgstr "nano kullandığınız için teşekkürler!\n" +#~ msgid "add_to_cutbuffer() called with inptr->data = %s\n" +#~ msgstr "add_to_cutbuffer(), inptr->data = %s ile çağırıldı\n" + +#~ msgid "Blew away cutbuffer =)\n" +#~ msgstr "cutbuffer silindi =)\n" + +#~ msgid "filename is %s\n" +#~ msgstr "dosya ismi %s\n" + +#~ msgid "%s: free'd a node, YAY!\n" +#~ msgstr "%s: bir düğüm serbest bırakıldı\n" + +#~ msgid "%s: free'd last node.\n" +#~ msgstr "%s: son düğüm serbest bırakıldı.\n" + +#~ msgid "Backing up %s to %s\n" +#~ msgstr "%s, %s olarak yedekleniyor\n" + +#~ msgid "Wrote >%s\n" +#~ msgstr "Yazıldı >%s\n" + +#~ msgid "current->data now = \"%s\"\n" +#~ msgstr "current->data now = \"%s\"\n" + +#~ msgid "After, data = \"%s\"\n" +#~ msgstr "Sonra, veri = \"%s\"\n" + +#~ msgid "Main: set up windows\n" +#~ msgstr "Ana: pencereleri ayarla\n" + +#~ msgid "Main: bottom win\n" +#~ msgstr "Ana: alt pencere\n" + +#~ msgid "Main: open file\n" +#~ msgstr "Ana: dosya aç\n" + +#~ msgid "AHA! %c (%d)\n" +#~ msgstr "AHA! %c (%d)\n" + +#~ msgid "I got Alt-O-%c! (%d)\n" +#~ msgstr "Alt-O-%c bulundu! (%d)\n" + +#~ msgid "I got Alt-[-1-%c! (%d)\n" +#~ msgstr "Alt-[-1-%c bulundu! (%d)\n" + +#~ msgid "I got Alt-[-2-%c! (%d)\n" +#~ msgstr "Alt-[-2-%c bulundu! (%d)\n" + +#~ msgid "I got Alt-[-%c! (%d)\n" +#~ msgstr "Alt-[-%c bulundu! (%d)\n" + +#~ msgid "I got Alt-%c! (%d)\n" +#~ msgstr "Alt-%c bulundu! (%d)\n" + +#~ msgid "I got %c (%d)!\n" +#~ msgstr "%c (%d) bulundu!\n" + +#~ msgid "Adding new syntax after 1st\n" +#~ msgstr "Birinciden sonra yeni bir sözdizimi ekleniyor\n" + +#~ msgid "Starting a new syntax type\n" +#~ msgstr "Yeni bir sözdizim tipine başlanıyor\n" + +#~ msgid "Starting a new colorstring for fg %d bg %d\n" +#~ msgstr "" +#~ "Yeni bir renkli yazıya %d ön plan rengi ve %d arka plan rengi ile " +#~ "başlanıyor\n" + +#~ msgid "Adding new entry for fg %d bg %d\n" +#~ msgstr "" +#~ "Yeni bir girdi, %d ön plan rengi ve %d arka plan rengi ile ekleniyor\n" + +#~ msgid "%s: Read a comment\n" +#~ msgstr "%s: Bir açıklama oku\n" + +#~ msgid "%s: Parsing option %s\n" +#~ msgstr "%s: %s seçeneği ayrıştırılıyor\n" + +#~ msgid "set flag %d!\n" +#~ msgstr "%d bayrağı atandı!\n" + +#~ msgid "unset flag %d!\n" +#~ msgstr "%d bayrağı boşaltıldı!\n" + +#~ msgid "actual_x for xplus=%d returns %d\n" +#~ msgstr "actual_x, xplus=%d değeri için %d döndürdü\n" + +#~ msgid "Aha! '%c' (%d)\n" +#~ msgstr "Aha! '%c' (%d)\n" + +#~ msgid "input '%c' (%d)\n" +#~ msgstr "girdi '%c' (%d)\n" + +#~ msgid "Moved to (%d, %d) in edit buffer\n" +#~ msgstr "Düzenleme arabelleği içine (%d, %d) taşındı\n" + +#~ msgid "I got \"%s\"\n" +#~ msgstr "\"%s\" bulundu\n" + +#~ msgid "Dumping file buffer to stderr...\n" +#~ msgstr "Dosya arabelleği stderr'a dökülüyor...\n" + +#~ msgid "Dumping cutbuffer to stderr...\n" +#~ msgstr "Kesme arabelleği stderr'a dökülüyor...\n" + +#~ msgid "Dumping a buffer to stderr...\n" +#~ msgstr "Arabellek stderr'a dökülüyor...\n" + #~ msgid "Pico mode" #~ msgstr "Pico kipi" diff --git a/po/uk.po b/po/uk.po index bae8d69c..d50cdd0a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.1.99pre3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-08-11 21:49-0400\n" +"POT-Creation-Date: 2003-12-27 11:17-0500\n" "PO-Revision-Date: 2003-02-17 10:51+0300\n" "Last-Translator: Sergey A. Ribalchenko \n" "Language-Team: Ukrainian \n" @@ -1286,51 +1286,51 @@ msgstr " msgid "Use \"fg\" to return to nano" msgstr " \"fg\" , nano" -#: nano.c:2876 +#: nano.c:2882 msgid "Cannot resize top win" msgstr " ͦ ͦ צ" -#: nano.c:2878 +#: nano.c:2884 msgid "Cannot move top win" msgstr " ͦ צ" -#: nano.c:2880 +#: nano.c:2886 msgid "Cannot resize edit win" msgstr " ͦ ͦ צ " -#: nano.c:2882 +#: nano.c:2888 msgid "Cannot move edit win" msgstr " ͦ צ " -#: nano.c:2884 +#: nano.c:2890 msgid "Cannot resize bottom win" msgstr " ͦ ͦ צ" -#: nano.c:2886 +#: nano.c:2892 msgid "Cannot move bottom win" msgstr " ͦ Τ צ" -#: nano.c:2919 +#: nano.c:2925 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "ͦ NumLock'. צ " -#: nano.c:2968 +#: nano.c:2974 msgid "enabled" msgstr "" -#: nano.c:2968 +#: nano.c:2974 msgid "disabled" msgstr "" -#: nano.c:3160 +#: nano.c:3166 msgid "Tab size is too small for nano...\n" msgstr "ͦ æ nano...\n" -#: nano.c:3711 +#: nano.c:3717 msgid "XOFF ignored, mumble mumble." msgstr "XOFF , -Ц-Ц" -#: nano.c:3713 +#: nano.c:3719 msgid "XON ignored, mumble mumble." msgstr "XON , --" @@ -1467,23 +1467,23 @@ msgstr " msgid "This is the only occurrence" msgstr " ЦĦ" -#: search.c:574 search.c:703 +#: search.c:577 search.c:735 msgid "Replace Cancelled" msgstr "ͦ " -#: search.c:614 +#: search.c:617 msgid "Replace this instance?" msgstr "ͦ ͦ?" -#: search.c:629 +#: search.c:632 msgid "Replace failed: unknown subexpression!" msgstr "ͦ : Ц!" -#: search.c:740 +#: search.c:772 msgid "Replace with" msgstr "ͦ " -#: search.c:760 +#: search.c:792 #, c-format msgid "Replaced %d occurrence" msgid_plural "Replaced %d occurrences" @@ -1491,23 +1491,23 @@ msgstr[0] " msgstr[1] "ͦΦ %d " msgstr[2] "ͦ %d " -#: search.c:777 +#: search.c:809 msgid "Enter line number" msgstr "Ħ " -#: search.c:781 +#: search.c:813 msgid "Aborted" msgstr "" -#: search.c:791 +#: search.c:823 msgid "Come on, be reasonable" msgstr ", Φ" -#: search.c:851 +#: search.c:883 msgid "Not a bracket" msgstr " " -#: search.c:902 +#: search.c:934 msgid "No matching bracket" msgstr " צצϧ " diff --git a/proto.h b/proto.h index 9ad6a42b..eeafe73c 100644 --- a/proto.h +++ b/proto.h @@ -275,8 +275,10 @@ int do_backspace(void); int do_delete(void); int do_tab(void); int do_enter(void); +#ifndef NANO_SMALL int do_next_word(void); int do_prev_word(void); +#endif int do_mark(void); void wrap_reset(void); #ifndef DISABLE_WRAPPING @@ -356,7 +358,7 @@ int search_init(int replacing); int is_whole_word(int curr_pos, const char *datastr, const char *searchword); filestruct *findnextstr(int quiet, int bracket_mode, const filestruct *begin, int beginx, - const char *needle); + const char *needle, int no_sameline); int do_search(void); void replace_abort(void); #ifdef HAVE_REGEX_H diff --git a/rcfile.c b/rcfile.c index cbdd52b6..8698db36 100644 --- a/rcfile.c +++ b/rcfile.c @@ -84,7 +84,9 @@ const static rcoption rcopts[] = { {"tabsize", 0}, {"tempfile", TEMP_OPT}, {"view", VIEW_MODE}, +#ifndef NANO_SMALL {"historylog", HISTORYLOG}, +#endif {NULL, 0} }; diff --git a/search.c b/search.c index 39798c6f..e73d741e 100644 --- a/search.c +++ b/search.c @@ -246,7 +246,7 @@ int is_whole_word(int curr_pos, const char *datastr, const char *searchword) filestruct *findnextstr(int quiet, int bracket_mode, const filestruct *begin, int beginx, - const char *needle) + const char *needle, int no_sameline) { filestruct *fileptr = current; const char *searchstr, *rev_start = NULL, *found = NULL; @@ -264,8 +264,12 @@ filestruct *findnextstr(int quiet, int bracket_mode, searchstr = &fileptr->data[current_x_find]; - /* Look for needle in searchstr */ - while ((found = strstrwrapper(searchstr, needle, rev_start, current_x_find)) == NULL) { + /* Look for needle in searchstr. Keep going until we find it + * and, if no_sameline is set, until it isn't on the current + * line. If we don't find it, we'll end up at + * current[current_x] regardless of whether no_sameline is + * set. */ + while ((found = strstrwrapper(searchstr, needle, rev_start, current_x_find)) == NULL || (no_sameline && fileptr == current)) { /* finished processing file, get out */ if (search_last_line) { @@ -319,8 +323,13 @@ filestruct *findnextstr(int quiet, int bracket_mode, rev_start = &fileptr->data[current_x_find]; searchstr = fileptr->data; - /* Look for needle in searchstr */ - while ((found = strstrwrapper(searchstr, needle, rev_start, current_x_find)) == NULL) { + /* Look for needle in searchstr. Keep going until we find it + * and, if no_sameline is set, until it isn't on the current + * line. If we don't find it, we'll end up at + * current[current_x] regardless of whether no_sameline is + * set. */ + while ((found = strstrwrapper(searchstr, needle, rev_start, current_x_find)) == NULL || (no_sameline && fileptr == current)) { + /* finished processing file, get out */ if (search_last_line) { if (!quiet) @@ -417,7 +426,7 @@ int do_search(void) #endif /* !NANO_SMALL */ search_last_line = 0; - didfind = findnextstr(FALSE, FALSE, current, current_x, answer); + didfind = findnextstr(FALSE, FALSE, current, current_x, answer, 0); if (fileptr == current && fileptr_x == current_x && didfind != NULL) statusbar(_("This is the only occurrence")); @@ -564,8 +573,8 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, { int replaceall = 0, numreplaced = -1; #ifdef HAVE_REGEX_H - int dollarreplace = 0; - /* Whether we're doing a forward regex replace of "$". */ + /* The starting-line match and zero-length regex flags. */ + int beginline = 0, caretdollar = 0; #endif filestruct *fileptr = NULL; char *copy; @@ -590,9 +599,39 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, last_replace = mallocstrcpy(last_replace, answer); while (1) { + size_t match_len; + /* Sweet optimization by Rocco here. */ fileptr = findnextstr(fileptr || replaceall || search_last_line, - FALSE, begin, *beginx, prevanswer); + FALSE, begin, *beginx, prevanswer, +#ifdef HAVE_REGEX_H + /* We should find a zero-length regex only once per + * line. If the caretdollar flag is set, it means that + * the last search found one on the beginning line, so we + * should skip over the beginning line when doing this + * search. */ + caretdollar +#else + 0 +#endif + ); + +#ifdef HAVE_REGEX_H + /* If the caretdollar flag is set, we've found a match on the + * beginning line already, and we're still on the beginning line + * after the search, it means that we've wrapped around, so + * we're done. */ + if (caretdollar && beginline && fileptr == begin) + fileptr = NULL; + /* Otherwise, set the beginline flag if we've found a match on + * the beginning line, reset the caretdollar flag, and + * continue. */ + else { + if (fileptr == begin) + beginline = 1; + caretdollar = 0; + } +#endif if (current->lineno <= edittop->lineno || current->lineno >= editbot->lineno) @@ -610,6 +649,13 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, if (numreplaced == -1) numreplaced = 0; +#ifdef HAVE_REGEX_H + if (ISSET(USE_REGEXP)) + match_len = regmatches[0].rm_eo - regmatches[0].rm_so; + else +#endif + match_len = strlen(prevanswer); + if (!replaceall) { curs_set(0); do_replace_highlight(TRUE, prevanswer); @@ -620,6 +666,13 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, curs_set(1); } +#ifdef HAVE_REGEX_H + /* Set the caretdollar flag if we're doing a zero-length regex + * replace (such as "^", "$", or "^$"). */ + if (ISSET(USE_REGEXP) && match_len == 0) + caretdollar = 1; +#endif + if (*i > 0 || replaceall) { /* Yes, replace it!!!! */ long length_change; size_t match_len; @@ -637,18 +690,9 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, length_change = strlen(copy) - strlen(current->data); #ifdef HAVE_REGEX_H - if (ISSET(USE_REGEXP)) { + if (ISSET(USE_REGEXP)) match_len = regmatches[0].rm_eo - regmatches[0].rm_so; - /* If we're on the line we started the replace on, the - * match length is 0, and current_x is at the end of the - * the line, we're doing a forward regex replace of "$". - * We have to handle this as a special case so that we - * don't end up infinitely tacking the replace string - * onto the end of the line. */ - if (current == begin && match_len == 0 && current_x == - strlen(current->data)) - dollarreplace = 1; - } else + else #endif match_len = strlen(prevanswer); @@ -669,8 +713,8 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, } /* Set the cursor at the last character of the replacement - * text, so searching will resume after the replacement text. - * Note that current_x might be set to -1 here. */ + * text, so searching will resume after the replacement + * text. Note that current_x might be set to -1 here. */ #ifndef NANO_SMALL if (!ISSET(REVERSE_SEARCH)) #endif @@ -685,25 +729,6 @@ int do_replace_loop(const char *prevanswer, const filestruct *begin, set_modified(); numreplaced++; -#ifdef HAVE_REGEX_H - if (dollarreplace == 1) { - /* If we're here, we're doing a forward regex replace of - * "$", and the replacement's just been made. Avoid - * infinite replacement by manually moving the search to - * the next line, wrapping to the first line if we're on - * the last line of the file. Afterwards, if we're back - * on the line where we started, manually break out of - * the loop. */ - current_x = 0; - if (current->next != NULL) - current = current->next; - else - current = fileage; - if (current == begin) - break; - } -#endif - } else if (*i == -1) /* Break out of the loop, else do * nothing and continue loop. */ break; @@ -909,7 +934,7 @@ int do_find_bracket(void) while (1) { search_last_line = 0; - if (findnextstr(1, 1, current, current_x, regexp_pat) != NULL) { + if (findnextstr(1, 1, current, current_x, regexp_pat, 0) != NULL) { have_search_offscreen |= search_offscreen; /* found identical bracket */