Commit 6724a7ed authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Add -T tab width option

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@35 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 77b35cee
Showing with 659 additions and 520 deletions
+659 -520
...@@ -21,3 +21,6 @@ ...@@ -21,3 +21,6 @@
/* Define to use the slang wrappers for curses instead of native curses */ /* Define to use the slang wrappers for curses instead of native curses */
#undef USE_SLANG #undef USE_SLANG
/* Define this if you have the TABSIZE global in your curses lib */
#undef HAVE_TABSIZE
...@@ -76,6 +76,9 @@ ...@@ -76,6 +76,9 @@
/* Define to use the slang wrappers for curses instead of native curses */ /* Define to use the slang wrappers for curses instead of native curses */
#undef USE_SLANG #undef USE_SLANG
/* Define this if you have the TABSIZE global in your curses lib */
#undef HAVE_TABSIZE
/* Define if you have the __argz_count function. */ /* Define if you have the __argz_count function. */
#undef HAVE___ARGZ_COUNT #undef HAVE___ARGZ_COUNT
......
This diff is collapsed.
...@@ -126,10 +126,12 @@ fi ...@@ -126,10 +126,12 @@ fi
AC_CHECK_LIB($CURSES_LIB_NAME, wresize, AC_DEFINE(HAVE_WRESIZE)) AC_CHECK_LIB($CURSES_LIB_NAME, wresize, AC_DEFINE(HAVE_WRESIZE))
AC_CHECK_LIB($CURSES_LIB_NAME, TABSIZE, AC_DEFINE(HAVE_TABSIZE))
dnl Parse any configure options dnl Parse any configure options
LIBS="$LIBS $CURSES_LIB" LIBS="$LIBS $CURSES_LIB"
AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging (def disabled)],) AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging (def disabled)],)
AC_SUBST(CURSES_LIB) AC_SUBST(CURSES_LIB)
......
...@@ -310,6 +310,10 @@ void usage(void) ...@@ -310,6 +310,10 @@ void usage(void)
#ifdef HAVE_GETOPT_LONG #ifdef HAVE_GETOPT_LONG
printf(_("Usage: nano [GNU long option] [option] +LINE <file>\n\n")); printf(_("Usage: nano [GNU long option] [option] +LINE <file>\n\n"));
printf(_("Option Long option Meaning\n")); printf(_("Option Long option Meaning\n"));
#ifdef HAVE_TABSIZE
printf(_
(" -T --tabsize=[num] Set width of a tab to num\n"));
#endif
printf printf
(_ (_
(" -V --version Print version information and exit\n")); (" -V --version Print version information and exit\n"));
...@@ -348,6 +352,10 @@ void usage(void) ...@@ -348,6 +352,10 @@ void usage(void)
#else #else
printf(_("Usage: nano [option] +LINE <file>\n\n")); printf(_("Usage: nano [option] +LINE <file>\n\n"));
printf(_("Option Meaning\n")); printf(_("Option Meaning\n"));
#ifdef HAVE_TABSIZE
printf(_
(" -T [num] Set width of a tab to num\n"));
#endif
printf(_(" -V Print version information and exit\n")); printf(_(" -V Print version information and exit\n"));
printf(_(" -c Constantly show cursor position\n")); printf(_(" -c Constantly show cursor position\n"));
printf(_(" -h Show this message\n")); printf(_(" -h Show this message\n"));
...@@ -601,8 +609,8 @@ assert (strlenpt(inptr->data) >= fill); ...@@ -601,8 +609,8 @@ assert (strlenpt(inptr->data) >= fill);
} }
if (inptr->data[i] == NANO_CONTROL_I) { if (inptr->data[i] == NANO_CONTROL_I) {
if (i_tabs % 8 != 0); if (i_tabs % TABSIZE != 0);
i_tabs += 8 - (i_tabs % 8); i_tabs += TABSIZE - (i_tabs % TABSIZE);
} }
if (current_word_end_t >= fill) if (current_word_end_t >= fill)
...@@ -1552,6 +1560,9 @@ int main(int argc, char *argv[]) ...@@ -1552,6 +1560,9 @@ int main(int argc, char *argv[])
struct sigaction act; /* For our lovely signals */ struct sigaction act; /* For our lovely signals */
int keyhandled = 0; /* Have we handled the keystroke yet? */ int keyhandled = 0; /* Have we handled the keystroke yet? */
int tmpkey = 0, i; int tmpkey = 0, i;
#ifdef HAVE_TABSIZE
int usrtabsize = 0; /* User defined tab size */
#endif
char *argv0; char *argv0;
struct termios term; struct termios term;
...@@ -1571,6 +1582,9 @@ int main(int argc, char *argv[]) ...@@ -1571,6 +1582,9 @@ int main(int argc, char *argv[])
{"mouse", 0, 0, 'm'}, {"mouse", 0, 0, 'm'},
{"pico", 0, 0, 'p'}, {"pico", 0, 0, 'p'},
{"nofollow", 0, 0, 'l'}, {"nofollow", 0, 0, 'l'},
#ifdef HAVE_TABSIZE
{"tabsize", 0, 0, 'T'},
#endif
{0, 0, 0, 0} {0, 0, 0, 0}
}; };
#endif #endif
...@@ -1585,13 +1599,26 @@ int main(int argc, char *argv[]) ...@@ -1585,13 +1599,26 @@ int main(int argc, char *argv[])
#endif #endif
#ifdef HAVE_GETOPT_LONG #ifdef HAVE_GETOPT_LONG
while ((optchr = getopt_long(argc, argv, "?Vchilmpr:s:tvwxz", while ((optchr = getopt_long(argc, argv, "?T:Vchilmpr:s:tvwxz",
long_options, &option_index)) != EOF) { long_options, &option_index)) != EOF) {
#else #else
while ((optchr = getopt(argc, argv, "h?Vcilmpr:s:tvwxz")) != EOF) { while ((optchr = getopt(argc, argv, "h?T:Vcilmpr:s:tvwxz")) != EOF) {
#endif #endif
switch (optchr) { switch (optchr) {
#ifdef HAVE_TABSIZE
case 'T':
usrtabsize = atoi(optarg);
if (usrtabsize <= 0) {
usage(); /* To stop bogus data for tab width */
finish(1);
}
break;
#else
case 'T':
usage(); /* Oops! You dont really have that option */
finish(1);
#endif
case 'V': case 'V':
version(); version();
exit(0); exit(0);
...@@ -1761,6 +1788,11 @@ int main(int argc, char *argv[]) ...@@ -1761,6 +1788,11 @@ int main(int argc, char *argv[])
edit_refresh(); edit_refresh();
reset_cursor(); reset_cursor();
#ifdef HAVE_TABSIZE
if (usrtabsize > 0)
TABSIZE = usrtabsize;
#endif
while (1) { while (1) {
kbinput = wgetch(edit); kbinput = wgetch(edit);
if (kbinput == 27) { /* Grab Alt-key stuff first */ if (kbinput == 27) { /* Grab Alt-key stuff first */
......
...@@ -44,6 +44,11 @@ ...@@ -44,6 +44,11 @@
#include <curses.h> #include <curses.h>
#endif /* CURSES_H */ #endif /* CURSES_H */
#ifndef HAVE_TABSIZE
static int TABSIZE = 8;
#endif
#ifdef HAVE_LIBINTL_H #ifdef HAVE_LIBINTL_H
#include <libintl.h> #include <libintl.h>
#endif #endif
......
...@@ -116,99 +116,101 @@ Optional keys are shown in parentheses:\n\ ...@@ -116,99 +116,101 @@ Optional keys are shown in parentheses:\n\
Usage: nano [GNU long option] [option] +LINE <file>\n\ Usage: nano [GNU long option] [option] +LINE <file>\n\
\n", 89}, \n", 89},
{"Option\t\tLong option\t\tMeaning\n", 90}, {"Option\t\tLong option\t\tMeaning\n", 90},
{" -V \t\t--version\t\tPrint version information and exit\n", 91}, {" -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n", 91},
{" -c \t\t--const\t\t\tConstantly show cursor position\n", 92}, {" -V \t\t--version\t\tPrint version information and exit\n", 92},
{" -h \t\t--help\t\t\tShow this message\n", 93}, {" -c \t\t--const\t\t\tConstantly show cursor position\n", 93},
{" -i \t\t--autoindent\t\tAutomatically indent new lines\n", 94}, {" -h \t\t--help\t\t\tShow this message\n", 94},
{" -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n", 95}, {" -i \t\t--autoindent\t\tAutomatically indent new lines\n", 95},
{" -m \t\t--mouse\t\t\tEnable mouse\n", 96}, {" -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n", 96},
{" -m \t\t--mouse\t\t\tEnable mouse\n", 97},
{"\ {"\
-r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n", 97}, -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n", 98},
{" -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n", 98}, {" -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n", 99},
{" -s [prog] \t--speller=[prog]\tEnable alternate speller\n", 99}, {" -s [prog] \t--speller=[prog]\tEnable alternate speller\n", 100},
{" -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n", 100}, {" -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n", 101},
{" -v \t\t--view\t\t\tView (read only) mode\n", 101}, {" -v \t\t--view\t\t\tView (read only) mode\n", 102},
{" -w \t\t--nowrap\t\tDon't wrap long lines\n", 102}, {" -w \t\t--nowrap\t\tDon't wrap long lines\n", 103},
{" -x \t\t--nohelp\t\tDon't show help window\n", 103}, {" -x \t\t--nohelp\t\tDon't show help window\n", 104},
{" -z \t\t--suspend\t\tEnable suspend\n", 104}, {" -z \t\t--suspend\t\tEnable suspend\n", 105},
{" +LINE\t\t\t\t\tStart at line number LINE\n", 105}, {" +LINE\t\t\t\t\tStart at line number LINE\n", 106},
{"\ {"\
Usage: nano [option] +LINE <file>\n\ Usage: nano [option] +LINE <file>\n\
\n", 106}, \n", 107},
{"Option\t\tMeaning\n", 107}, {"Option\t\tMeaning\n", 108},
{" -V \t\tPrint version information and exit\n", 108}, {" -T [num]\tSet width of a tab to num\n", 109},
{" -c \t\tConstantly show cursor position\n", 109}, {" -V \t\tPrint version information and exit\n", 110},
{" -h \t\tShow this message\n", 110}, {" -c \t\tConstantly show cursor position\n", 111},
{" -i \t\tAutomatically indent new lines\n", 111}, {" -h \t\tShow this message\n", 112},
{" -l \t\tDon't follow symbolic links, overwrite.\n", 112}, {" -i \t\tAutomatically indent new lines\n", 113},
{" -m \t\tEnable mouse\n", 113}, {" -l \t\tDon't follow symbolic links, overwrite.\n", 114},
{" -r [#cols] \tSet fill cols to (wrap lines at) #cols\n", 114}, {" -m \t\tEnable mouse\n", 115},
{" -s [prog] \tEnable alternate speller\n", 115}, {" -r [#cols] \tSet fill cols to (wrap lines at) #cols\n", 116},
{" -p \t\tMake bottom 2 lines more Pico-like\n", 116}, {" -s [prog] \tEnable alternate speller\n", 117},
{" -t \t\tAuto save on exit, don't prompt\n", 117}, {" -p \t\tMake bottom 2 lines more Pico-like\n", 118},
{" -v \t\tView (read only) mode\n", 118}, {" -t \t\tAuto save on exit, don't prompt\n", 119},
{" -w \t\tDon't wrap long lines\n", 119}, {" -v \t\tView (read only) mode\n", 120},
{" -x \t\tDon't show help window\n", 120}, {" -w \t\tDon't wrap long lines\n", 121},
{" -z \t\tEnable suspend\n", 121}, {" -x \t\tDon't show help window\n", 122},
{" +LINE\t\tStart at line number LINE\n", 122}, {" -z \t\tEnable suspend\n", 123},
{" nano version %s by Chris Allegretta (compiled %s, %s)\n", 123}, {" +LINE\t\tStart at line number LINE\n", 124},
{" Email: nano@asty.org\tWeb: http://www.asty.org/nano\n", 124}, {" nano version %s by Chris Allegretta (compiled %s, %s)\n", 125},
{"Mark Set", 125}, {" Email: nano@asty.org\tWeb: http://www.asty.org/nano\n", 126},
{"Mark UNset", 126}, {"Mark Set", 127},
{"check_wrap called with inptr->data=\"%s\"\n", 127}, {"Mark UNset", 128},
{"current->data now = \"%s\"\n", 128}, {"check_wrap called with inptr->data=\"%s\"\n", 129},
{"After, data = \"%s\"\n", 129}, {"current->data now = \"%s\"\n", 130},
{"Error deleting tempfile, ack!", 130}, {"After, data = \"%s\"\n", 131},
{"Could not create a temporary filename: %s", 131}, {"Error deleting tempfile, ack!", 132},
{"Could not invoke spell program \"%s\"", 132}, {"Could not create a temporary filename: %s", 133},
{"Could not invoke \"ispell\"", 133}, {"Could not invoke spell program \"%s\"", 134},
{"Finished checking spelling", 134}, {"Could not invoke \"ispell\"", 135},
{"Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? ", 135}, {"Finished checking spelling", 136},
{"Cannot resize top win", 136}, {"Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? ", 137},
{"Cannot move top win", 137}, {"Cannot resize top win", 138},
{"Cannot resize edit win", 138}, {"Cannot move top win", 139},
{"Cannot move edit win", 139}, {"Cannot resize edit win", 140},
{"Cannot resize bottom win", 140}, {"Cannot move edit win", 141},
{"Cannot move bottom win", 141}, {"Cannot resize bottom win", 142},
{"Main: set up windows\n", 142}, {"Cannot move bottom win", 143},
{"Main: bottom win\n", 143}, {"Main: set up windows\n", 144},
{"Main: open file\n", 144}, {"Main: bottom win\n", 145},
{"I got Alt-[-%c! (%d)\n", 145}, {"Main: open file\n", 146},
{"I got Alt-%c! (%d)\n", 146}, {"I got Alt-[-%c! (%d)\n", 147},
{"Case Sensitive Search%s", 147}, {"I got Alt-%c! (%d)\n", 148},
{"Search%s", 148}, {"Case Sensitive Search%s", 149},
{"Search Cancelled", 149}, {"Search%s", 150},
{"Search Wrapped", 150}, {"Search Cancelled", 151},
{"Replaced %d occurences", 151}, {"Search Wrapped", 152},
{"Replaced 1 occurence", 152}, {"Replaced %d occurences", 153},
{"Replace Cancelled", 153}, {"Replaced 1 occurence", 154},
{"Replace with [%s]", 154}, {"Replace Cancelled", 155},
{"Replace with", 155}, {"Replace with [%s]", 156},
{"Replace this instance?", 156}, {"Replace with", 157},
{"Enter line number", 157}, {"Replace this instance?", 158},
{"Aborted", 158}, {"Enter line number", 159},
{"Come on, be reasonable", 159}, {"Aborted", 160},
{"Only %d lines available, skipping to last line", 160}, {"Come on, be reasonable", 161},
{"actual_x_from_start for xplus=%d returned %d\n", 161}, {"Only %d lines available, skipping to last line", 162},
{"input '%c' (%d)\n", 162}, {"actual_x_from_start for xplus=%d returned %d\n", 163},
{"New Buffer", 163}, {"input '%c' (%d)\n", 164},
{" File: ...", 164}, {"New Buffer", 165},
{"Modified", 165}, {" File: ...", 166},
{"Moved to (%d, %d) in edit buffer\n", 166}, {"Modified", 167},
{"current->data = \"%s\"\n", 167}, {"Moved to (%d, %d) in edit buffer\n", 168},
{"I got \"%s\"\n", 168}, {"current->data = \"%s\"\n", 169},
{" Y", 169}, {"I got \"%s\"\n", 170},
{"Yes", 170}, {" Y", 171},
{" A", 171}, {"Yes", 172},
{"All", 172}, {" A", 173},
{" N", 173}, {"All", 174},
{"No", 174}, {" N", 175},
{"^C", 175}, {"No", 176},
{"do_cursorpos: linepct = %f, bytepct = %f\n", 176}, {"^C", 177},
{"line %d of %d (%.0f%%), character %d of %d (%.0f%%)", 177}, {"do_cursorpos: linepct = %f, bytepct = %f\n", 178},
{"Dumping file buffer to stderr...\n", 178}, {"line %d of %d (%.0f%%), character %d of %d (%.0f%%)", 179},
{"Dumping cutbuffer to stderr...\n", 179}, {"Dumping file buffer to stderr...\n", 180},
{"Dumping a buffer to stderr...\n", 180}, {"Dumping cutbuffer to stderr...\n", 181},
{"Dumping a buffer to stderr...\n", 182},
}; };
int _msg_tbl_length = 180; int _msg_tbl_length = 182;
No preview for this file type
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-06-19 01:59-0400\n" "POT-Creation-Date: 2000-06-19 18:16-0400\n"
"PO-Revision-Date: 2000-03-30 20:50+0100\n" "PO-Revision-Date: 2000-03-30 20:50+0100\n"
"Last-Translator: Florian Knig <floki@bigfoot.com>\n" "Last-Translator: Florian Knig <floki@bigfoot.com>\n"
"Language-Team: German <floki@bigfoot.com>\n" "Language-Team: German <floki@bigfoot.com>\n"
...@@ -55,7 +55,7 @@ msgstr "Lese Datei" ...@@ -55,7 +55,7 @@ msgstr "Lese Datei"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Datei zum Einfgen [von ./] " msgstr "Datei zum Einfgen [von ./] "
#: files.c:271 files.c:295 files.c:459 nano.c:1171 #: files.c:271 files.c:295 files.c:459 nano.c:1167
msgid "Cancelled" msgid "Cancelled"
msgstr "Abgebrochen" msgstr "Abgebrochen"
...@@ -425,73 +425,77 @@ msgstr "" ...@@ -425,73 +425,77 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Option\t\tlange Option\t\tBedeutung\n" msgstr "Option\t\tlange Option\t\tBedeutung\n"
#: nano.c:315 #: nano.c:314
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr ""
#: nano.c:317
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tVersionsinfo ausgeben und beenden\n" msgstr " -V \t\t--version\t\tVersionsinfo ausgeben und beenden\n"
#: nano.c:317 #: nano.c:319
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tCursorposition stndig anzeigen\n" msgstr " -c \t\t--const\t\t\tCursorposition stndig anzeigen\n"
#: nano.c:319 #: nano.c:321
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tDiese Meldung anzeigen\n" msgstr " -h \t\t--help\t\t\tDiese Meldung anzeigen\n"
#: nano.c:321 #: nano.c:323
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tNeue Zeilen automatisch einrcken\n" msgstr " -i \t\t--autoindent\t\tNeue Zeilen automatisch einrcken\n"
#: nano.c:323 #: nano.c:325
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:326 #: nano.c:328
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tMaus aktivieren\n" msgstr " -m \t\t--mouse\t\t\tMaus aktivieren\n"
#: nano.c:331 #: nano.c:333
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
" -r [#Spalten] \t--fill=[#Spalten]\t\tSpalten auffllen (Zeilenumbruch bei) " " -r [#Spalten] \t--fill=[#Spalten]\t\tSpalten auffllen (Zeilenumbruch bei) "
"#Spalten\n" "#Spalten\n"
#: nano.c:333 #: nano.c:335
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tErscheinungsbild von Pico strker imitieren\n" msgstr " -p\t \t--pico\t\t\tErscheinungsbild von Pico strker imitieren\n"
#: nano.c:335 #: nano.c:337
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "" msgstr ""
" -s [Programm] \t--speller=[Programm]\tAlternative Rechtschreibprfung\n" " -s [Programm] \t--speller=[Programm]\tAlternative Rechtschreibprfung\n"
#: nano.c:337 #: nano.c:339
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\t--tempfile\t\tBeim Beenden ohne Rckfrage speichern\n" msgstr " -t \t\t--tempfile\t\tBeim Beenden ohne Rckfrage speichern\n"
#: nano.c:339 #: nano.c:341
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr "" msgstr ""
" -v \t\t--view\t\t\tNur zum Lesen ffnen (keine Vernderungen mglich)\n" " -v \t\t--view\t\t\tNur zum Lesen ffnen (keine Vernderungen mglich)\n"
#: nano.c:341 #: nano.c:343
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tLange Zeilen nicht in neue Zeilen umbrechen\n" msgstr " -w \t\t--nowrap\t\tLange Zeilen nicht in neue Zeilen umbrechen\n"
#: nano.c:343 #: nano.c:345
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tHilfe-Fenster nicht anzeigen\n" msgstr " -x \t\t--nohelp\t\tHilfe-Fenster nicht anzeigen\n"
#: nano.c:345 #: nano.c:347
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr "" msgstr ""
" -z \t\t--suspend\t\tSuspend (anhalten und zurck zur Shell) aktivieren\n" " -z \t\t--suspend\t\tSuspend (anhalten und zurck zur Shell) aktivieren\n"
#: nano.c:347 #: nano.c:349
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +ZEILE\t\t\t\t\tBei Zeile ZEILE beginnen\n" msgstr " +ZEILE\t\t\t\t\tBei Zeile ZEILE beginnen\n"
#: nano.c:349 #: nano.c:351
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
...@@ -499,171 +503,175 @@ msgstr "" ...@@ -499,171 +503,175 @@ msgstr ""
"Aufruf: nano [Option] +ZEILE <Datei>\n" "Aufruf: nano [Option] +ZEILE <Datei>\n"
"\n" "\n"
#: nano.c:350 #: nano.c:352
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Option\t\tBedeutung\n" msgstr "Option\t\tBedeutung\n"
#: nano.c:351 #: nano.c:354
msgid " -T [num]\tSet width of a tab to num\n"
msgstr ""
#: nano.c:355
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tVersionsinfo ausgeben und beenden\n" msgstr " -V \t\tVersionsinfo ausgeben und beenden\n"
#: nano.c:352 #: nano.c:356
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tCursorposition stndig anzeigen\n" msgstr " -c \t\tCursorposition stndig anzeigen\n"
#: nano.c:353 #: nano.c:357
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tDiese Meldung anzeigen\n" msgstr " -h \t\tDiese Meldung anzeigen\n"
#: nano.c:354 #: nano.c:358
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -i \t\tNeue Zeilen automatisch einrcken\n" msgstr " -i \t\tNeue Zeilen automatisch einrcken\n"
#: nano.c:356 #: nano.c:360
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:359 #: nano.c:363
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tMaus aktivieren\n" msgstr " -m \t\tMaus aktivieren\n"
#: nano.c:363 #: nano.c:367
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#Spalten] \tSpalten auffllen (Zeilenumbruch bei) #Spalten\n" msgstr " -r [#Spalten] \tSpalten auffllen (Zeilenumbruch bei) #Spalten\n"
#: nano.c:364 #: nano.c:368
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [Programm] \tAlternative Rechtschreibprfung\n" msgstr " -s [Programm] \tAlternative Rechtschreibprfung\n"
#: nano.c:365 #: nano.c:369
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tErscheinungsbild von Pico strker imitieren\n" msgstr " -p \t\tErscheinungsbild von Pico strker imitieren\n"
#: nano.c:366 #: nano.c:370
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tBeim Beenden ohne Rckfrage speichern\n" msgstr " -t \t\tBeim Beenden ohne Rckfrage speichern\n"
#: nano.c:367 #: nano.c:371
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tNur zum Lesen ffnen (keine Vernderungen mglich)\n" msgstr " -v \t\tNur zum Lesen ffnen (keine Vernderungen mglich)\n"
#: nano.c:368 #: nano.c:372
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tLange Zeilen nicht in neue Zeilen umbrechen\n" msgstr " -w \t\tLange Zeilen nicht in neue Zeilen umbrechen\n"
#: nano.c:369 #: nano.c:373
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tHilfe-Fenster nicht anzeigen\n" msgstr " -x \t\tHilfe-Fenster nicht anzeigen\n"
#: nano.c:370 #: nano.c:374
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tSuspend (anhalten und zurck zur Shell) aktivieren\n" msgstr " -z \t\tSuspend (anhalten und zurck zur Shell) aktivieren\n"
#: nano.c:371 #: nano.c:375
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +ZEILE\t\tBei Zeile ZEILE beginnen\n" msgstr " +ZEILE\t\tBei Zeile ZEILE beginnen\n"
#: nano.c:378 #: nano.c:382
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano Version %s von Chris Allegretta (compiliert um %s, %s)\n" msgstr " nano Version %s von Chris Allegretta (compiliert um %s, %s)\n"
#: nano.c:380 #: nano.c:384
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Email: nano@asty.org\tWWW: http://www.asty.org/nano\n" msgstr " Email: nano@asty.org\tWWW: http://www.asty.org/nano\n"
#: nano.c:405 #: nano.c:409
msgid "Mark Set" msgid "Mark Set"
msgstr "Markierung gesetzt" msgstr "Markierung gesetzt"
#: nano.c:410 #: nano.c:414
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Markierung gelscht" msgstr "Markierung gelscht"
#: nano.c:845 #: nano.c:841
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap aufgerufen mit inptr->data=\"%s\"\n" msgstr "check_wrap aufgerufen mit inptr->data=\"%s\"\n"
#: nano.c:929 #: nano.c:925
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data jetzt = \"%s\"\n" msgstr "current->data jetzt = \"%s\"\n"
#: nano.c:974 #: nano.c:970
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Nachher, data = \"%s\"\n" msgstr "Nachher, data = \"%s\"\n"
#: nano.c:1038 #: nano.c:1034
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Konnte temporre Datei nicht lschen" msgstr "Konnte temporre Datei nicht lschen"
#: nano.c:1051 nano.c:1101 #: nano.c:1047 nano.c:1097
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Konnte keine temporre Datei erzeugen: %s" msgstr "Konnte keine temporre Datei erzeugen: %s"
#: nano.c:1073 nano.c:1123 #: nano.c:1069 nano.c:1119
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen" msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen"
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1079 nano.c:1129 #: nano.c:1075 nano.c:1125
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Konnte \"ispell\" nicht aufrufen" msgstr "Konnte \"ispell\" nicht aufrufen"
#: nano.c:1091 nano.c:1141 #: nano.c:1087 nano.c:1137
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Rechtschreibprfung abgeschlossen" msgstr "Rechtschreibprfung abgeschlossen"
#: nano.c:1158 #: nano.c:1154
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Vernderten Puffer speichern (\"Nein\" verwirft die nderungen) ? " msgstr "Vernderten Puffer speichern (\"Nein\" verwirft die nderungen) ? "
#: nano.c:1281 #: nano.c:1277
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Kann die Gre des oberen Fensters nicht verndern" msgstr "Kann die Gre des oberen Fensters nicht verndern"
#: nano.c:1283 #: nano.c:1279
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Kann oberes Fenster nicht verschieben" msgstr "Kann oberes Fenster nicht verschieben"
#: nano.c:1285 #: nano.c:1281
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Kann Gre des Bearbeitungsfensters nicht verndern" msgstr "Kann Gre des Bearbeitungsfensters nicht verndern"
#: nano.c:1287 #: nano.c:1283
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Kann Bearbeitungsfenster nicht verschieben" msgstr "Kann Bearbeitungsfenster nicht verschieben"
#: nano.c:1289 #: nano.c:1285
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Kann Gre des unteren Fensters nicht verndern" msgstr "Kann Gre des unteren Fensters nicht verndern"
#: nano.c:1291 #: nano.c:1287
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Kann unteres Fenster nicht verschieben" msgstr "Kann unteres Fenster nicht verschieben"
#: nano.c:1727 #: nano.c:1732
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Hauptprogramm: Fenster konfigurieren\n" msgstr "Hauptprogramm: Fenster konfigurieren\n"
#: nano.c:1749 #: nano.c:1754
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Hauptprogramm: unteres Fenster\n" msgstr "Hauptprogramm: unteres Fenster\n"
#: nano.c:1755 #: nano.c:1760
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Hauptprogramm: Datei ffnen\n" msgstr "Hauptprogramm: Datei ffnen\n"
#: nano.c:1823 #: nano.c:1831
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:1839 #: nano.c:1847
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Erhielt Alt-%c! (%d)\n" msgstr "Erhielt Alt-%c! (%d)\n"
......
No preview for this file type
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.9\n" "Project-Id-Version: 0.9.9\n"
"POT-Creation-Date: 2000-06-19 01:59-0400\n" "POT-Creation-Date: 2000-06-19 18:16-0400\n"
"PO-Revision-Date: 2000-06-04 20:21+0200\n" "PO-Revision-Date: 2000-06-04 20:21+0200\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n" "Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <jordi@sindominio.net>\n" "Language-Team: Spanish <jordi@sindominio.net>\n"
...@@ -55,7 +55,7 @@ msgstr "Leyendo Fichero" ...@@ -55,7 +55,7 @@ msgstr "Leyendo Fichero"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichero a insertar [desde ./] " msgstr "Fichero a insertar [desde ./] "
#: files.c:271 files.c:295 files.c:459 nano.c:1171 #: files.c:271 files.c:295 files.c:459 nano.c:1167
msgid "Cancelled" msgid "Cancelled"
msgstr "Cancelado" msgstr "Cancelado"
...@@ -425,69 +425,73 @@ msgstr "" ...@@ -425,69 +425,73 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Opcion\t\tOpcion larga\t\tSignificado\n" msgstr "Opcion\t\tOpcion larga\t\tSignificado\n"
#: nano.c:315 #: nano.c:314
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr ""
#: nano.c:317
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tImprimir versin y salir\n" msgstr " -V \t\t--version\t\tImprimir versin y salir\n"
#: nano.c:317 #: nano.c:319
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tMostrar siempre la posicin del cursor\n" msgstr " -c \t\t--const\t\t\tMostrar siempre la posicin del cursor\n"
#: nano.c:319 #: nano.c:321
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tMostrar este mensaje\n" msgstr " -h \t\t--help\t\t\tMostrar este mensaje\n"
#: nano.c:321 #: nano.c:323
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tIndentar automticamente nuevas lneas\n" msgstr " -i \t\t--autoindent\t\tIndentar automticamente nuevas lneas\n"
#: nano.c:323 #: nano.c:325
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
" -l \t\t--nofollow\t\tNo seguir enlaces simblicos, sobreescribirlos.\n" " -l \t\t--nofollow\t\tNo seguir enlaces simblicos, sobreescribirlos.\n"
#: nano.c:326 #: nano.c:328
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tHabilitar ratn\n" msgstr " -m \t\t--mouse\t\t\tHabilitar ratn\n"
#: nano.c:331 #: nano.c:333
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \t--fill=[#cols]\t\tRellenar columnas (wrapear en) #cols\n" msgstr " -r [#cols] \t--fill=[#cols]\t\tRellenar columnas (wrapear en) #cols\n"
#: nano.c:333 #: nano.c:335
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tHacer el men ms parecido a Pico\n" msgstr " -p\t \t--pico\t\t\tHacer el men ms parecido a Pico\n"
#: nano.c:335 #: nano.c:337
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr " -s [prog] \t--speller=[prog]\tHabilitar corrector alternativo\n" msgstr " -s [prog] \t--speller=[prog]\tHabilitar corrector alternativo\n"
#: nano.c:337 #: nano.c:339
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\t--tempfile\t\tAutosalvar al salir, sin preguntar\n" msgstr " -t \t\t--tempfile\t\tAutosalvar al salir, sin preguntar\n"
#: nano.c:339 #: nano.c:341
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tModo visualizacin (slo lectura)\n" msgstr " -v \t\t--view\t\t\tModo visualizacin (slo lectura)\n"
#: nano.c:341 #: nano.c:343
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tNo wrapear lneas largas\n" msgstr " -w \t\t--nowrap\t\tNo wrapear lneas largas\n"
#: nano.c:343 #: nano.c:345
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tNo mostrar la ventana de ayuda\n" msgstr " -x \t\t--nohelp\t\tNo mostrar la ventana de ayuda\n"
#: nano.c:345 #: nano.c:347
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tHabilitar suspensin\n" msgstr " -z \t\t--suspend\t\tHabilitar suspensin\n"
#: nano.c:347 #: nano.c:349
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +LINE\t\t\t\t\tComenzar en la lnea nmero LNEA\n" msgstr " +LINE\t\t\t\t\tComenzar en la lnea nmero LNEA\n"
#: nano.c:349 #: nano.c:351
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
...@@ -495,171 +499,175 @@ msgstr "" ...@@ -495,171 +499,175 @@ msgstr ""
"Uso: nano [opcin] +LNEA <fichero>\n" "Uso: nano [opcin] +LNEA <fichero>\n"
"\n" "\n"
#: nano.c:350 #: nano.c:352
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Opcin\t\tSignificado\n" msgstr "Opcin\t\tSignificado\n"
#: nano.c:351 #: nano.c:354
msgid " -T [num]\tSet width of a tab to num\n"
msgstr ""
#: nano.c:355
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tImprimir informacin sobre la versin y salir\n" msgstr " -V \t\tImprimir informacin sobre la versin y salir\n"
#: nano.c:352 #: nano.c:356
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tMostrar constantemente la posicin del cursor\n" msgstr " -c \t\tMostrar constantemente la posicin del cursor\n"
#: nano.c:353 #: nano.c:357
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tMostrar este mensaje\n" msgstr " -h \t\tMostrar este mensaje\n"
#: nano.c:354 #: nano.c:358
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -v \t\tIndentar automticamente nuevas lneas\n" msgstr " -v \t\tIndentar automticamente nuevas lneas\n"
#: nano.c:356 #: nano.c:360
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr " -l \t\tNo seguir enlaces simblicos, sobreescribirlos.\n" msgstr " -l \t\tNo seguir enlaces simblicos, sobreescribirlos.\n"
#: nano.c:359 #: nano.c:363
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tHabilitar ratn\n" msgstr " -m \t\tHabilitar ratn\n"
#: nano.c:363 #: nano.c:367
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \tRellenar columnas (wrapear lneas en) #cols\n" msgstr " -r [#cols] \tRellenar columnas (wrapear lneas en) #cols\n"
#: nano.c:364 #: nano.c:368
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [prog] \tHabilitar corrector alternativo\n" msgstr " -s [prog] \tHabilitar corrector alternativo\n"
#: nano.c:365 #: nano.c:369
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tHacer el men ms parecido a Pico\n" msgstr " -p \t\tHacer el men ms parecido a Pico\n"
#: nano.c:366 #: nano.c:370
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tAutosalvar al salir, no preguntar\n" msgstr " -t \t\tAutosalvar al salir, no preguntar\n"
#: nano.c:367 #: nano.c:371
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tModo visualizacin (slo lectura)\n" msgstr " -v \t\tModo visualizacin (slo lectura)\n"
#: nano.c:368 #: nano.c:372
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tNo wrapear lneas largas\n" msgstr " -w \t\tNo wrapear lneas largas\n"
#: nano.c:369 #: nano.c:373
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tNo mostrar la ventana de ayuda\n" msgstr " -x \t\tNo mostrar la ventana de ayuda\n"
#: nano.c:370 #: nano.c:374
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tHabilitar suspensin\n" msgstr " -z \t\tHabilitar suspensin\n"
#: nano.c:371 #: nano.c:375
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +LNEA\t\tComenzar en la lnea nmero LNEA\n" msgstr " +LNEA\t\tComenzar en la lnea nmero LNEA\n"
#: nano.c:378 #: nano.c:382
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano versin %s por Chris Allegretta (compilado %s, %s)\n" msgstr " nano versin %s por Chris Allegretta (compilado %s, %s)\n"
#: nano.c:380 #: nano.c:384
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Correo-e: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgstr " Correo-e: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:405 #: nano.c:409
msgid "Mark Set" msgid "Mark Set"
msgstr "Marca Establecida" msgstr "Marca Establecida"
#: nano.c:410 #: nano.c:414
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Marca Borrada" msgstr "Marca Borrada"
#: nano.c:845 #: nano.c:841
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap llamada con inptr->data=\"%s\"\n" msgstr "check_wrap llamada con inptr->data=\"%s\"\n"
#: nano.c:929 #: nano.c:925
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data ahora = \"%d\"\n" msgstr "current->data ahora = \"%d\"\n"
#: nano.c:974 #: nano.c:970
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Despus, data = \"%s\"\n" msgstr "Despus, data = \"%s\"\n"
#: nano.c:1038 #: nano.c:1034
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Error borrando el fichero temporal, ouch!" msgstr "Error borrando el fichero temporal, ouch!"
#: nano.c:1051 nano.c:1101 #: nano.c:1047 nano.c:1097
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "No pude crear un fichero temporal: %s" msgstr "No pude crear un fichero temporal: %s"
#: nano.c:1073 nano.c:1123 #: nano.c:1069 nano.c:1119
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "No se pudo llamar al corrector \"%s\"" msgstr "No se pudo llamar al corrector \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1079 nano.c:1129 #: nano.c:1075 nano.c:1125
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "No pude llamar a \"ispell\"" msgstr "No pude llamar a \"ispell\""
#: nano.c:1091 nano.c:1141 #: nano.c:1087 nano.c:1137
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Revisin de ortografa finalizada" msgstr "Revisin de ortografa finalizada"
#: nano.c:1158 #: nano.c:1154
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIR LOS CAMBIOS) ?" msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIR LOS CAMBIOS) ?"
#: nano.c:1281 #: nano.c:1277
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "No se puede cambiar el tamao de la ventana superior" msgstr "No se puede cambiar el tamao de la ventana superior"
#: nano.c:1283 #: nano.c:1279
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "No se puede mover la ventana superior" msgstr "No se puede mover la ventana superior"
#: nano.c:1285 #: nano.c:1281
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "No se puede cambiar el tamao de la ventana de edicin" msgstr "No se puede cambiar el tamao de la ventana de edicin"
#: nano.c:1287 #: nano.c:1283
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "No se puede mover la ventana de edicin" msgstr "No se puede mover la ventana de edicin"
#: nano.c:1289 #: nano.c:1285
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "No se puede cambiar el tamao de la ventana inferior" msgstr "No se puede cambiar el tamao de la ventana inferior"
#: nano.c:1291 #: nano.c:1287
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "No se puede mover la ventana inferior" msgstr "No se puede mover la ventana inferior"
#: nano.c:1727 #: nano.c:1732
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configurar las ventanas\n" msgstr "Main: configurar las ventanas\n"
#: nano.c:1749 #: nano.c:1754
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: ventana inferior\n" msgstr "Main: ventana inferior\n"
#: nano.c:1755 #: nano.c:1760
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: abrir fichero\n" msgstr "Main: abrir fichero\n"
#: nano.c:1823 #: nano.c:1831
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Pill Alt-[-%c! (%d)\n" msgstr "Pill Alt-[-%c! (%d)\n"
#: nano.c:1839 #: nano.c:1847
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Pill Alt-%c! (%d)\n" msgstr "Pill Alt-%c! (%d)\n"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.9\n" "Project-Id-Version: 0.8.9\n"
"POT-Creation-Date: 2000-06-19 01:59-0400\n" "POT-Creation-Date: 2000-06-19 18:16-0400\n"
"PO-Revision-Date: 2000-03-24 01:32+0100\n" "PO-Revision-Date: 2000-03-24 01:32+0100\n"
"Last-Translator: Pierre Tane <tanep@bigfoot.com>\n" "Last-Translator: Pierre Tane <tanep@bigfoot.com>\n"
"Language-Team: French <LL@li.org>\n" "Language-Team: French <LL@li.org>\n"
...@@ -57,7 +57,7 @@ msgstr "Lecture du fichier" ...@@ -57,7 +57,7 @@ msgstr "Lecture du fichier"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichier insrer [depuis ./] " msgstr "Fichier insrer [depuis ./] "
#: files.c:271 files.c:295 files.c:459 nano.c:1171 #: files.c:271 files.c:295 files.c:459 nano.c:1167
msgid "Cancelled" msgid "Cancelled"
msgstr "Annul" msgstr "Annul"
...@@ -414,75 +414,79 @@ msgstr "" ...@@ -414,75 +414,79 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Option\t\tOption Longue\t\tSignification\n" msgstr "Option\t\tOption Longue\t\tSignification\n"
#: nano.c:315 #: nano.c:314
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr ""
#: nano.c:317
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tAfficher les informations de version et sortir\n" msgstr " -V \t\t--version\t\tAfficher les informations de version et sortir\n"
#: nano.c:317 #: nano.c:319
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tAfficher constamment la position du curseur\n" msgstr " -c \t\t--const\t\t\tAfficher constamment la position du curseur\n"
#: nano.c:319 #: nano.c:321
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tAfficher ce message\n" msgstr " -h \t\t--help\t\t\tAfficher ce message\n"
#: nano.c:321 #: nano.c:323
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr "" msgstr ""
" -i \t\t--autoindent\t\tIndenter automatiquement les nouvelles lignes\n" " -i \t\t--autoindent\t\tIndenter automatiquement les nouvelles lignes\n"
#: nano.c:323 #: nano.c:325
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:326 #: nano.c:328
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tActiver le support souris\n" msgstr " -m \t\t--mouse\t\t\tActiver le support souris\n"
#: nano.c:331 #: nano.c:333
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
" -r [#cols] \t--fill=[#cols]\t\tMettre la colonne de fin de ligne (couper " " -r [#cols] \t--fill=[#cols]\t\tMettre la colonne de fin de ligne (couper "
"les lignes ) #cols\n" "les lignes ) #cols\n"
#: nano.c:333 #: nano.c:335
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr "" msgstr ""
" -p\t \t--pico\t\t\tRendre les deux lignes du bas plus semblables Pico\n" " -p\t \t--pico\t\t\tRendre les deux lignes du bas plus semblables Pico\n"
#: nano.c:335 #: nano.c:337
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "" msgstr ""
" -s [prog] \t--speller=[prog]\tActiver un vrificateur orthographique " " -s [prog] \t--speller=[prog]\tActiver un vrificateur orthographique "
"alternatif\n" "alternatif\n"
#: nano.c:337 #: nano.c:339
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
" -t \t\t--tempfile\t\tSauver automatiquement la sortie, sans demander\n" " -t \t\t--tempfile\t\tSauver automatiquement la sortie, sans demander\n"
#: nano.c:339 #: nano.c:341
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tMode Visualisation (lecture seule)\n" msgstr " -v \t\t--view\t\t\tMode Visualisation (lecture seule)\n"
#: nano.c:341 #: nano.c:343
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tNe pas couper les lignes trop longues\n" msgstr " -w \t\t--nowrap\t\tNe pas couper les lignes trop longues\n"
#: nano.c:343 #: nano.c:345
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tNe pas afficher la fentre d'aide\n" msgstr " -x \t\t--nohelp\t\tNe pas afficher la fentre d'aide\n"
#: nano.c:345 #: nano.c:347
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tAutoriser la suspension\n" msgstr " -z \t\t--suspend\t\tAutoriser la suspension\n"
#: nano.c:347 #: nano.c:349
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +LIGNE\t\t\t\t\tCommencer la ligne LIGNE\n" msgstr " +LIGNE\t\t\t\t\tCommencer la ligne LIGNE\n"
#: nano.c:349 #: nano.c:351
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
...@@ -490,173 +494,177 @@ msgstr "" ...@@ -490,173 +494,177 @@ msgstr ""
"Utilisation: nano [option] +LIGNE <fichier>\n" "Utilisation: nano [option] +LIGNE <fichier>\n"
"\n" "\n"
#: nano.c:350 #: nano.c:352
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Option\t\tSignification\n" msgstr "Option\t\tSignification\n"
#: nano.c:351 #: nano.c:354
msgid " -T [num]\tSet width of a tab to num\n"
msgstr ""
#: nano.c:355
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tAfficher les informations de version et sortir\n" msgstr " -V \t\tAfficher les informations de version et sortir\n"
#: nano.c:352 #: nano.c:356
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tAfficher constamment la position du curseur\n" msgstr " -c \t\tAfficher constamment la position du curseur\n"
#: nano.c:353 #: nano.c:357
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tAfficher ce message\n" msgstr " -h \t\tAfficher ce message\n"
#: nano.c:354 #: nano.c:358
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -i \t\tIndenter automatiquement les nouvelles lignes\n" msgstr " -i \t\tIndenter automatiquement les nouvelles lignes\n"
#: nano.c:356 #: nano.c:360
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:359 #: nano.c:363
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tActiver la souris\n" msgstr " -m \t\tActiver la souris\n"
#: nano.c:363 #: nano.c:367
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
" -r [#cols] \tMettre la colonne de fin de ligne (couper les lignes ) " " -r [#cols] \tMettre la colonne de fin de ligne (couper les lignes ) "
"#cols\n" "#cols\n"
#: nano.c:364 #: nano.c:368
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [prog] \tActiver un vrificateur orthographique alternatif\n" msgstr " -s [prog] \tActiver un vrificateur orthographique alternatif\n"
#: nano.c:365 #: nano.c:369
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tRendre les 2 lignes du bas plus semblables Pico\n" msgstr " -p \t\tRendre les 2 lignes du bas plus semblables Pico\n"
#: nano.c:366 #: nano.c:370
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tSauver automatiquement la sortie, sans demander\n" msgstr " -t \t\tSauver automatiquement la sortie, sans demander\n"
#: nano.c:367 #: nano.c:371
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tMode Visualisation seule (lecture seule)\n" msgstr " -v \t\tMode Visualisation seule (lecture seule)\n"
#: nano.c:368 #: nano.c:372
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tNe pas couper les lignes longues\n" msgstr " -w \t\tNe pas couper les lignes longues\n"
#: nano.c:369 #: nano.c:373
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tNe pas afficher la fentre d'aide\n" msgstr " -x \t\tNe pas afficher la fentre d'aide\n"
#: nano.c:370 #: nano.c:374
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tAutoriser la suspension\n" msgstr " -z \t\tAutoriser la suspension\n"
#: nano.c:371 #: nano.c:375
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +LIGNE\t\tDmarrer la ligne LIGNE\n" msgstr " +LIGNE\t\tDmarrer la ligne LIGNE\n"
#: nano.c:378 #: nano.c:382
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano version %s de Chris Allegretta (compile %s, %s)\n" msgstr " nano version %s de Chris Allegretta (compile %s, %s)\n"
#: nano.c:380 #: nano.c:384
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:405 #: nano.c:409
msgid "Mark Set" msgid "Mark Set"
msgstr "Marque enregistre" msgstr "Marque enregistre"
#: nano.c:410 #: nano.c:414
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Marque efface" msgstr "Marque efface"
#: nano.c:845 #: nano.c:841
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap appele avec inptr->data=\"%s\"\n" msgstr "check_wrap appele avec inptr->data=\"%s\"\n"
#: nano.c:929 #: nano.c:925
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data vaut maintenant \"%s\"\n" msgstr "current->data vaut maintenant \"%s\"\n"
#: nano.c:974 #: nano.c:970
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Aprs, data = \"%s\"\n" msgstr "Aprs, data = \"%s\"\n"
#: nano.c:1038 #: nano.c:1034
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Erreur lors de l'effacement du fichier temporaire, zut!" msgstr "Erreur lors de l'effacement du fichier temporaire, zut!"
#: nano.c:1051 nano.c:1101 #: nano.c:1047 nano.c:1097
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Impossible de crer un nom de fichier temporaire: %s" msgstr "Impossible de crer un nom de fichier temporaire: %s"
#: nano.c:1073 nano.c:1123 #: nano.c:1069 nano.c:1119
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Impossible d'invoquer le programme spell \"%s\"" msgstr "Impossible d'invoquer le programme spell \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1079 nano.c:1129 #: nano.c:1075 nano.c:1125
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Impossible d'invoquer \"ispell\"" msgstr "Impossible d'invoquer \"ispell\""
#: nano.c:1091 nano.c:1141 #: nano.c:1087 nano.c:1137
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Vrification orthographique termine" msgstr "Vrification orthographique termine"
#: nano.c:1158 #: nano.c:1154
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Sauver le buffer modifi (RPONDRE \"No\" EFFACERA LES CHANGEMENTS" msgstr "Sauver le buffer modifi (RPONDRE \"No\" EFFACERA LES CHANGEMENTS"
#: nano.c:1281 #: nano.c:1277
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Impossible de redimensionner la fentre du haut" msgstr "Impossible de redimensionner la fentre du haut"
#: nano.c:1283 #: nano.c:1279
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossible de bouger la fentre du haut" msgstr "Impossible de bouger la fentre du haut"
#: nano.c:1285 #: nano.c:1281
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossible de redimensionner la fentre d'dition" msgstr "Impossible de redimensionner la fentre d'dition"
#: nano.c:1287 #: nano.c:1283
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossible de bouger la fentre d'dition" msgstr "Impossible de bouger la fentre d'dition"
#: nano.c:1289 #: nano.c:1285
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossible de redimensionner la fentre du bas" msgstr "Impossible de redimensionner la fentre du bas"
#: nano.c:1291 #: nano.c:1287
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossible de bouger la fentre du bas" msgstr "Impossible de bouger la fentre du bas"
#: nano.c:1727 #: nano.c:1732
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configuration des fentres\n" msgstr "Main: configuration des fentres\n"
#: nano.c:1749 #: nano.c:1754
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: fentre du bas\n" msgstr "Main: fentre du bas\n"
#: nano.c:1755 #: nano.c:1760
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: ouvrir fichier\n" msgstr "Main: ouvrir fichier\n"
#: nano.c:1823 #: nano.c:1831
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "J'ai reu Alt-[-%c! (%d)\n" msgstr "J'ai reu Alt-[-%c! (%d)\n"
#: nano.c:1839 #: nano.c:1847
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "J'ai reu Alt-%c! (%d)\n" msgstr "J'ai reu Alt-%c! (%d)\n"
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano-0.9.10\n" "Project-Id-Version: nano-0.9.10\n"
"POT-Creation-Date: 2000-06-19 01:59-0400\n" "POT-Creation-Date: 2000-06-19 18:16-0400\n"
"PO-Revision-Date: 2000-06-08 20:56+07:00\n" "PO-Revision-Date: 2000-06-08 20:56+07:00\n"
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n" "Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
"Language-Team: Indonesian <id@li.org>\n" "Language-Team: Indonesian <id@li.org>\n"
...@@ -54,7 +54,7 @@ msgstr "Membaca File" ...@@ -54,7 +54,7 @@ msgstr "Membaca File"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File untuk disisipkan " msgstr "File untuk disisipkan "
#: files.c:271 files.c:295 files.c:459 nano.c:1171 #: files.c:271 files.c:295 files.c:459 nano.c:1167
msgid "Cancelled" msgid "Cancelled"
msgstr "Dibatalkan" msgstr "Dibatalkan"
...@@ -421,69 +421,73 @@ msgstr "Pemakaian: nano [GNU long option] [option] +LINE <file>\n" ...@@ -421,69 +421,73 @@ msgstr "Pemakaian: nano [GNU long option] [option] +LINE <file>\n"
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Option: Long option Arti\n" msgstr "Option: Long option Arti\n"
#: nano.c:315 #: nano.c:314
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr ""
#: nano.c:317
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr "-V --version Tampilkan versi dan keluar\n" msgstr "-V --version Tampilkan versi dan keluar\n"
#: nano.c:317 #: nano.c:319
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr "-c --const Menampilkan posisi kursor secara konstan\n" msgstr "-c --const Menampilkan posisi kursor secara konstan\n"
#: nano.c:319 #: nano.c:321
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr "-h --help Tampilkan pesan ini\n" msgstr "-h --help Tampilkan pesan ini\n"
#: nano.c:321 #: nano.c:323
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr "-i --autoindent Indent baris barus secara otomatis\n" msgstr "-i --autoindent Indent baris barus secara otomatis\n"
#: nano.c:323 #: nano.c:325
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "-l --nofollow Jangan ikuti link simbolik, timpa.\n" msgstr "-l --nofollow Jangan ikuti link simbolik, timpa.\n"
#: nano.c:326 #: nano.c:328
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr "-m --mouse Aktifkan mouse\n" msgstr "-m --mouse Aktifkan mouse\n"
#: nano.c:331 #: nano.c:333
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "-r [#cols] --fill=[#cols] Set fill col ke (wrap line di) #cols\n" msgstr "-r [#cols] --fill=[#cols] Set fill col ke (wrap line di) #cols\n"
#: nano.c:333 #: nano.c:335
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr "-p --pico Buat dua baris terbawah seperti Pico\n" msgstr "-p --pico Buat dua baris terbawah seperti Pico\n"
#: nano.c:335 #: nano.c:337
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "-s [prog] --speller=[prog] Aktifkan speller alternatif\n" msgstr "-s [prog] --speller=[prog] Aktifkan speller alternatif\n"
#: nano.c:337 #: nano.c:339
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
"-t --tempfile Autosave saat keluar, jangan minta konfirmasi\n" "-t --tempfile Autosave saat keluar, jangan minta konfirmasi\n"
#: nano.c:339 #: nano.c:341
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr "-v --view View mode (read only)\n" msgstr "-v --view View mode (read only)\n"
#: nano.c:341 #: nano.c:343
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr "-w --nowrap Jangan wrap baris panjang\n" msgstr "-w --nowrap Jangan wrap baris panjang\n"
#: nano.c:343 #: nano.c:345
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr "-x --nohelp Jangan tampilkan jendela bantuan\n" msgstr "-x --nohelp Jangan tampilkan jendela bantuan\n"
#: nano.c:345 #: nano.c:347
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr "-z --suspend Aktifkan suspend\n" msgstr "-z --suspend Aktifkan suspend\n"
#: nano.c:347 #: nano.c:349
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr "+LINE Mulai pada nomor baris LINE\n" msgstr "+LINE Mulai pada nomor baris LINE\n"
#: nano.c:349 #: nano.c:351
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
...@@ -491,172 +495,176 @@ msgstr "" ...@@ -491,172 +495,176 @@ msgstr ""
"Pemakaian: nano [option] +LINE <file>\n" "Pemakaian: nano [option] +LINE <file>\n"
"\n" "\n"
#: nano.c:350 #: nano.c:352
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Option Arti\n" msgstr "Option Arti\n"
#: nano.c:351 #: nano.c:354
msgid " -T [num]\tSet width of a tab to num\n"
msgstr ""
#: nano.c:355
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr "-V Tampilkan informasi versi dan keluar\n" msgstr "-V Tampilkan informasi versi dan keluar\n"
#: nano.c:352 #: nano.c:356
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr "-c Menampilkan posisi kursor secara konstan\n" msgstr "-c Menampilkan posisi kursor secara konstan\n"
#: nano.c:353 #: nano.c:357
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr "-h Tampilkan pesan ini\n" msgstr "-h Tampilkan pesan ini\n"
#: nano.c:354 #: nano.c:358
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr "-i Indent baris barus secara otomatis\n" msgstr "-i Indent baris barus secara otomatis\n"
#: nano.c:356 #: nano.c:360
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "-l Jangan ikuti link simbolik, timpa.\n" msgstr "-l Jangan ikuti link simbolik, timpa.\n"
#: nano.c:359 #: nano.c:363
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr "-m Aktifkan mouse\n" msgstr "-m Aktifkan mouse\n"
#: nano.c:363 #: nano.c:367
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr "-r [#cols] Set fill col ke (wrap line di) #cols\n" msgstr "-r [#cols] Set fill col ke (wrap line di) #cols\n"
#: nano.c:364 #: nano.c:368
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr "-s [prog] Aktifkan speller alternatif\n" msgstr "-s [prog] Aktifkan speller alternatif\n"
#: nano.c:365 #: nano.c:369
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr "-p Buat dua baris terbawah seperti Pico\n" msgstr "-p Buat dua baris terbawah seperti Pico\n"
#: nano.c:366 #: nano.c:370
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr "-t Autosave saat keluar, jangan minta konfirmasi.\n" msgstr "-t Autosave saat keluar, jangan minta konfirmasi.\n"
#: nano.c:367 #: nano.c:371
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr "-v View mode (read only)\n" msgstr "-v View mode (read only)\n"
#: nano.c:368 #: nano.c:372
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr "-w Jangan wrap baris panjang\n" msgstr "-w Jangan wrap baris panjang\n"
#: nano.c:369 #: nano.c:373
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr "-x Jangan tampilkan jendela bantuan\n" msgstr "-x Jangan tampilkan jendela bantuan\n"
#: nano.c:370 #: nano.c:374
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr "-z Aktifkan suspend\n" msgstr "-z Aktifkan suspend\n"
#: nano.c:371 #: nano.c:375
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr "+LINE Mulai pada nomor baris LINE\n" msgstr "+LINE Mulai pada nomor baris LINE\n"
#: nano.c:378 #: nano.c:382
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr "nano versi %s oleh Chris Allegretta (compiled %s, %s)\n" msgstr "nano versi %s oleh Chris Allegretta (compiled %s, %s)\n"
#: nano.c:380 #: nano.c:384
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr "Email: nano@asty.org Web: http://www.asty.org/nano\n" msgstr "Email: nano@asty.org Web: http://www.asty.org/nano\n"
#: nano.c:405 #: nano.c:409
msgid "Mark Set" msgid "Mark Set"
msgstr "Set Tanda" msgstr "Set Tanda"
#: nano.c:410 #: nano.c:414
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Unset Tanda" msgstr "Unset Tanda"
#: nano.c:845 #: nano.c:841
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap dipanggil dengan inptr->data=\"%s\"\n" msgstr "check_wrap dipanggil dengan inptr->data=\"%s\"\n"
#: nano.c:929 #: nano.c:925
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data sekarang =\"%s\"\n" msgstr "current->data sekarang =\"%s\"\n"
#: nano.c:974 #: nano.c:970
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Setelah, data= \"%s\"\n" msgstr "Setelah, data= \"%s\"\n"
#: nano.c:1038 #: nano.c:1034
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Kesalahan menghapus tempfile, ack!" msgstr "Kesalahan menghapus tempfile, ack!"
#: nano.c:1051 nano.c:1101 #: nano.c:1047 nano.c:1097
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Tidak dapat membuat nama file temporer: %s" msgstr "Tidak dapat membuat nama file temporer: %s"
#: nano.c:1073 nano.c:1123 #: nano.c:1069 nano.c:1119
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Tidak dapat memanggil program spell \"%s\"" msgstr "Tidak dapat memanggil program spell \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1079 nano.c:1129 #: nano.c:1075 nano.c:1125
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Tidak dapat memanggil \"ispell\"" msgstr "Tidak dapat memanggil \"ispell\""
#: nano.c:1091 nano.c:1141 #: nano.c:1087 nano.c:1137
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Selesai memeriksa ejaan" msgstr "Selesai memeriksa ejaan"
#: nano.c:1158 #: nano.c:1154
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "" msgstr ""
"Simpan buffer termodifikasi (JAWABAN \"No\" AKAN MENGHAPUS PERUBAHAN) ?" "Simpan buffer termodifikasi (JAWABAN \"No\" AKAN MENGHAPUS PERUBAHAN) ?"
#: nano.c:1281 #: nano.c:1277
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Tidak dapat resize jendela atas" msgstr "Tidak dapat resize jendela atas"
#: nano.c:1283 #: nano.c:1279
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Tidak memindahkan jendela atas" msgstr "Tidak memindahkan jendela atas"
#: nano.c:1285 #: nano.c:1281
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Tidak dapat resize jendela edit" msgstr "Tidak dapat resize jendela edit"
#: nano.c:1287 #: nano.c:1283
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Tidak dapat memindah jendela edit" msgstr "Tidak dapat memindah jendela edit"
#: nano.c:1289 #: nano.c:1285
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Tidak dapat meresize jendela bawah" msgstr "Tidak dapat meresize jendela bawah"
#: nano.c:1291 #: nano.c:1287
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Tidak dapat memindah jendela bawah" msgstr "Tidak dapat memindah jendela bawah"
#: nano.c:1727 #: nano.c:1732
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: menset jendelan\n" msgstr "Main: menset jendelan\n"
#: nano.c:1749 #: nano.c:1754
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: jendela bawah\n" msgstr "Main: jendela bawah\n"
#: nano.c:1755 #: nano.c:1760
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: membuka file\n" msgstr "Main: membuka file\n"
#: nano.c:1823 #: nano.c:1831
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:1839 #: nano.c:1847
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
......
No preview for this file type
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.7\n" "Project-Id-Version: 0.8.7\n"
"POT-Creation-Date: 2000-06-19 01:59-0400\n" "POT-Creation-Date: 2000-06-19 18:16-0400\n"
"PO-Revision-Date: 2000-03-03 04:57+0100\n" "PO-Revision-Date: 2000-03-03 04:57+0100\n"
"Last-Translator: Daniele Medri <madrid@linux.it>\n" "Last-Translator: Daniele Medri <madrid@linux.it>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
...@@ -54,7 +54,7 @@ msgstr "Lettura file" ...@@ -54,7 +54,7 @@ msgstr "Lettura file"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File da inserire [da ./] " msgstr "File da inserire [da ./] "
#: files.c:271 files.c:295 files.c:459 nano.c:1171 #: files.c:271 files.c:295 files.c:459 nano.c:1167
msgid "Cancelled" msgid "Cancelled"
msgstr "Cancellato" msgstr "Cancellato"
...@@ -408,69 +408,73 @@ msgstr "" ...@@ -408,69 +408,73 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Opzioni\t\tLunghe opzioni\t\tSignificato\n" msgstr "Opzioni\t\tLunghe opzioni\t\tSignificato\n"
#: nano.c:315 #: nano.c:314
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr ""
#: nano.c:317
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--versione\t\tStampa informazioni sulla versione ed esci\n" msgstr " -V \t\t--versione\t\tStampa informazioni sulla versione ed esci\n"
#: nano.c:317 #: nano.c:319
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tMostra sempre la posizione del cursore\n" msgstr " -c \t\t--const\t\t\tMostra sempre la posizione del cursore\n"
#: nano.c:319 #: nano.c:321
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tMostra questo messaggio\n" msgstr " -h \t\t--help\t\t\tMostra questo messaggio\n"
#: nano.c:321 #: nano.c:323
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tIndentar automticamente nuevas lneas\n" msgstr " -i \t\t--autoindent\t\tIndentar automticamente nuevas lneas\n"
#: nano.c:323 #: nano.c:325
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:326 #: nano.c:328
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tAttiva mouse\n" msgstr " -m \t\t--mouse\t\t\tAttiva mouse\n"
#: nano.c:331 #: nano.c:333
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \t--fill=[#cols]\t\tConfigura riempimento colonne\n" msgstr " -r [#cols] \t--fill=[#cols]\t\tConfigura riempimento colonne\n"
#: nano.c:333 #: nano.c:335
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tCrea in basso 2 linee come l'aspetto di Pico\n" msgstr " -p\t \t--pico\t\t\tCrea in basso 2 linee come l'aspetto di Pico\n"
#: nano.c:335 #: nano.c:337
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr " -s [prog] \t--speller=[prog]\tAttiva correttore alternativo\n" msgstr " -s [prog] \t--speller=[prog]\tAttiva correttore alternativo\n"
#: nano.c:337 #: nano.c:339
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
" -t \t\t--tempfile\t\tSalvataggio automatico in uscita senza richiesta\n" " -t \t\t--tempfile\t\tSalvataggio automatico in uscita senza richiesta\n"
#: nano.c:339 #: nano.c:341
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tVisualizzazione (sola lettura)\n" msgstr " -v \t\t--view\t\t\tVisualizzazione (sola lettura)\n"
#: nano.c:341 #: nano.c:343
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tNon interrompere linee lunghe\n" msgstr " -w \t\t--nowrap\t\tNon interrompere linee lunghe\n"
#: nano.c:343 #: nano.c:345
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tNon mostrare finestra aiuti\n" msgstr " -x \t\t--nohelp\t\tNon mostrare finestra aiuti\n"
#: nano.c:345 #: nano.c:347
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tAbilita sospensione\n" msgstr " -z \t\t--suspend\t\tAbilita sospensione\n"
#: nano.c:347 #: nano.c:349
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +LINE\t\t\t\t\tInizia alla linea numero\n" msgstr " +LINE\t\t\t\t\tInizia alla linea numero\n"
#: nano.c:349 #: nano.c:351
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
...@@ -478,173 +482,177 @@ msgstr "" ...@@ -478,173 +482,177 @@ msgstr ""
"Uso: nano [opzioni] +LINEA <file>\n" "Uso: nano [opzioni] +LINEA <file>\n"
"\n" "\n"
#: nano.c:350 #: nano.c:352
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Opzioni\t\tSignificato\n" msgstr "Opzioni\t\tSignificato\n"
#: nano.c:351 #: nano.c:354
msgid " -T [num]\tSet width of a tab to num\n"
msgstr ""
#: nano.c:355
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tStampa informazioni sulla versione ed esci\n" msgstr " -V \t\tStampa informazioni sulla versione ed esci\n"
#: nano.c:352 #: nano.c:356
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tMostra sempre la posizione del cursore\n" msgstr " -c \t\tMostra sempre la posizione del cursore\n"
#: nano.c:353 #: nano.c:357
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tMostra questo messaggio\n" msgstr " -h \t\tMostra questo messaggio\n"
#: nano.c:354 #: nano.c:358
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -v \t\tIndentazione automatica nuove linee\n" msgstr " -v \t\tIndentazione automatica nuove linee\n"
#: nano.c:356 #: nano.c:360
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr " -l \t\tNon seguire i link simbolici, sovrascrivi.\n" msgstr " -l \t\tNon seguire i link simbolici, sovrascrivi.\n"
#: nano.c:359 #: nano.c:363
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tAttiva mouse\n" msgstr " -m \t\tAttiva mouse\n"
#: nano.c:363 #: nano.c:367
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \tRiempimento colonne (interrompi linee a) #cols\n" msgstr " -r [#cols] \tRiempimento colonne (interrompi linee a) #cols\n"
#: nano.c:364 #: nano.c:368
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [prog] \tAttiva correttore alternativo\n" msgstr " -s [prog] \tAttiva correttore alternativo\n"
#: nano.c:365 #: nano.c:369
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tCrea in basso 2 linee sullo stile di Pico\n" msgstr " -p \t\tCrea in basso 2 linee sullo stile di Pico\n"
#: nano.c:366 #: nano.c:370
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tSalvataggio automatico in uscita senza avviso\n" msgstr " -t \t\tSalvataggio automatico in uscita senza avviso\n"
#: nano.c:367 #: nano.c:371
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tVisualizza (sola lettura)\n" msgstr " -v \t\tVisualizza (sola lettura)\n"
#: nano.c:368 #: nano.c:372
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tNon interrompere linee lunghe\n" msgstr " -w \t\tNon interrompere linee lunghe\n"
#: nano.c:369 #: nano.c:373
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tNon mostrare la finestra Aiuti\n" msgstr " -x \t\tNon mostrare la finestra Aiuti\n"
#: nano.c:370 #: nano.c:374
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tAttiva sospensione\n" msgstr " -z \t\tAttiva sospensione\n"
#: nano.c:371 #: nano.c:375
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +LINEA\t\tInizia alla LINEA numero\n" msgstr " +LINEA\t\tInizia alla LINEA numero\n"
#: nano.c:378 #: nano.c:382
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano versione %s di Chris Allegretta (compilato %s, %s\n" msgstr " nano versione %s di Chris Allegretta (compilato %s, %s\n"
#: nano.c:380 #: nano.c:384
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr "Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgstr "Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:405 #: nano.c:409
msgid "Mark Set" msgid "Mark Set"
msgstr "" msgstr ""
#: nano.c:410 #: nano.c:414
msgid "Mark UNset" msgid "Mark UNset"
msgstr "" msgstr ""
#: nano.c:845 #: nano.c:841
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap chiamata con inptr->data=\"%s\"\n" msgstr "check_wrap chiamata con inptr->data=\"%s\"\n"
#: nano.c:929 #: nano.c:925
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data ora = \"%d\"\n" msgstr "current->data ora = \"%d\"\n"
#: nano.c:974 #: nano.c:970
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Dopo, data = \"%s\"\n" msgstr "Dopo, data = \"%s\"\n"
#: nano.c:1038 #: nano.c:1034
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "" msgstr ""
#: nano.c:1051 nano.c:1101 #: nano.c:1047 nano.c:1097
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Impossibile creare un nome file temporaneo: %s" msgstr "Impossibile creare un nome file temporaneo: %s"
#: nano.c:1073 nano.c:1123 #: nano.c:1069 nano.c:1119
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Impossibile invocare correttore ortografico \"%s\"" msgstr "Impossibile invocare correttore ortografico \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1079 nano.c:1129 #: nano.c:1075 nano.c:1125
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Impossibile invocare \"ispell\"" msgstr "Impossibile invocare \"ispell\""
#: nano.c:1091 nano.c:1141 #: nano.c:1087 nano.c:1137
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Controllo ortografico terminato" msgstr "Controllo ortografico terminato"
#: nano.c:1158 #: nano.c:1154
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "" msgstr ""
"Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI " "Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI "
"AVVENUTI) ?" "AVVENUTI) ?"
#: nano.c:1281 #: nano.c:1277
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Impossibile ridimensionare la finestra superiore" msgstr "Impossibile ridimensionare la finestra superiore"
#: nano.c:1283 #: nano.c:1279
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossibile spostare la finestra superiore" msgstr "Impossibile spostare la finestra superiore"
#: nano.c:1285 #: nano.c:1281
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossibile ridimensionare la finestra di modifica" msgstr "Impossibile ridimensionare la finestra di modifica"
#: nano.c:1287 #: nano.c:1283
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossibile spostare finestra di modifica" msgstr "Impossibile spostare finestra di modifica"
#: nano.c:1289 #: nano.c:1285
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossibile ridimensionare la finestra inferiore" msgstr "Impossibile ridimensionare la finestra inferiore"
#: nano.c:1291 #: nano.c:1287
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossibile spostare la finestra inferiore" msgstr "Impossibile spostare la finestra inferiore"
#: nano.c:1727 #: nano.c:1732
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configura finestre\n" msgstr "Main: configura finestre\n"
#: nano.c:1749 #: nano.c:1754
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: finestra inferiore\n" msgstr "Main: finestra inferiore\n"
#: nano.c:1755 #: nano.c:1760
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: apri file\n" msgstr "Main: apri file\n"
#: nano.c:1823 #: nano.c:1831
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:1839 #: nano.c:1847
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Premuto Alt-%c! (%d)\n" msgstr "Premuto Alt-%c! (%d)\n"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-06-19 01:59-0400\n" "POT-Creation-Date: 2000-06-19 19:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -404,150 +404,158 @@ msgid "Option\t\tLong option\t\tMeaning\n" ...@@ -404,150 +404,158 @@ msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "" msgstr ""
#: nano.c:315 #: nano.c:315
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr ""
#: nano.c:319
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr "" msgstr ""
#: nano.c:317 #: nano.c:321
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr "" msgstr ""
#: nano.c:319 #: nano.c:323
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr "" msgstr ""
#: nano.c:321 #: nano.c:325
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr "" msgstr ""
#: nano.c:323 #: nano.c:327
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:326 #: nano.c:330
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr "" msgstr ""
#: nano.c:331 #: nano.c:335
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
#: nano.c:333 #: nano.c:337
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr "" msgstr ""
#: nano.c:335 #: nano.c:339
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "" msgstr ""
#: nano.c:337 #: nano.c:341
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
#: nano.c:339 #: nano.c:343
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr "" msgstr ""
#: nano.c:341 #: nano.c:345
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr "" msgstr ""
#: nano.c:343 #: nano.c:347
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr "" msgstr ""
#: nano.c:345 #: nano.c:349
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr "" msgstr ""
#: nano.c:347 #: nano.c:351
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr "" msgstr ""
#: nano.c:349 #: nano.c:353
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
msgstr "" msgstr ""
#: nano.c:350 #: nano.c:354
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "" msgstr ""
#: nano.c:351 #: nano.c:357
msgid " -T [num]\tSet width of a tab to num\n"
msgstr ""
#: nano.c:359
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr "" msgstr ""
#: nano.c:352 #: nano.c:360
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr "" msgstr ""
#: nano.c:353 #: nano.c:361
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr "" msgstr ""
#: nano.c:354 #: nano.c:362
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr "" msgstr ""
#: nano.c:356 #: nano.c:364
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:359 #: nano.c:367
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr "" msgstr ""
#: nano.c:363 #: nano.c:371
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
#: nano.c:364 #: nano.c:372
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr "" msgstr ""
#: nano.c:365 #: nano.c:373
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr "" msgstr ""
#: nano.c:366 #: nano.c:374
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
#: nano.c:367 #: nano.c:375
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr "" msgstr ""
#: nano.c:368 #: nano.c:376
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr "" msgstr ""
#: nano.c:369 #: nano.c:377
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr "" msgstr ""
#: nano.c:370 #: nano.c:378
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr "" msgstr ""
#: nano.c:371 #: nano.c:379
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr "" msgstr ""
#: nano.c:378 #: nano.c:386
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr "" msgstr ""
#: nano.c:380 #: nano.c:388
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr "" msgstr ""
#: nano.c:405 #: nano.c:413
msgid "Mark Set" msgid "Mark Set"
msgstr "" msgstr ""
#: nano.c:410 #: nano.c:418
msgid "Mark UNset" msgid "Mark UNset"
msgstr "" msgstr ""
...@@ -617,24 +625,24 @@ msgstr "" ...@@ -617,24 +625,24 @@ msgstr ""
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "" msgstr ""
#: nano.c:1727 #: nano.c:1746
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "" msgstr ""
#: nano.c:1749 #: nano.c:1768
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "" msgstr ""
#: nano.c:1755 #: nano.c:1774
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "" msgstr ""
#: nano.c:1823 #: nano.c:1847
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "" msgstr ""
#: nano.c:1839 #: nano.c:1863
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "" msgstr ""
......
...@@ -72,9 +72,9 @@ int xpt(filestruct * fileptr, int index) ...@@ -72,9 +72,9 @@ int xpt(filestruct * fileptr, int index)
tabs++; tabs++;
if (fileptr->data[i] == NANO_CONTROL_I) { if (fileptr->data[i] == NANO_CONTROL_I) {
if (tabs % 8 == 0); if (tabs % TABSIZE == 0);
else else
tabs += 8 - (tabs % 8); tabs += TABSIZE - (tabs % TABSIZE);
} else if (fileptr->data[i] & 0x80) } else if (fileptr->data[i] & 0x80)
/* Make 8 bit chars only 1 collumn! */ /* Make 8 bit chars only 1 collumn! */
; ;
...@@ -105,8 +105,8 @@ int actual_x_from_start(filestruct * fileptr, int xplus, int start) ...@@ -105,8 +105,8 @@ int actual_x_from_start(filestruct * fileptr, int xplus, int start)
for (i = start; tot <= xplus && fileptr->data[i] != 0; i++,tot++) for (i = start; tot <= xplus && fileptr->data[i] != 0; i++,tot++)
if (fileptr->data[i] == NANO_CONTROL_I) { if (fileptr->data[i] == NANO_CONTROL_I) {
if (tot % 8 == 0) tot++; if (tot % TABSIZE == 0) tot++;
else tot += 8 - (tot % 8); else tot += TABSIZE - (tot % TABSIZE);
} else if (fileptr->data[i] & 0x80) } else if (fileptr->data[i] & 0x80)
tot++; /* Make 8 bit chars only 1 column (again) */ tot++; /* Make 8 bit chars only 1 column (again) */
else if (fileptr->data[i] < 32) else if (fileptr->data[i] < 32)
...@@ -136,9 +136,9 @@ int strlenpt(char *buf) ...@@ -136,9 +136,9 @@ int strlenpt(char *buf)
tabs++; tabs++;
if (buf[i] == NANO_CONTROL_I) { if (buf[i] == NANO_CONTROL_I) {
if (tabs % 8 == 0); if (tabs % TABSIZE == 0);
else else
tabs += 8 - (tabs % 8); tabs += TABSIZE - (tabs % TABSIZE);
} else if (buf[i] & 0x80) } else if (buf[i] & 0x80)
/* Make 8 bit chars only 1 collumn! */ /* Make 8 bit chars only 1 collumn! */
; ;
...@@ -732,7 +732,7 @@ void update_line(filestruct * fileptr, int index) ...@@ -732,7 +732,7 @@ void update_line(filestruct * fileptr, int index)
fileptr->data[pos++] = ' '; fileptr->data[pos++] = ' ';
if(i < current_x) virt_cur_x++; if(i < current_x) virt_cur_x++;
if(i < mark_beginx) virt_mark_beginx++; if(i < mark_beginx) virt_mark_beginx++;
} while(pos % 8); } while(pos % TABSIZE);
/* must decrement once to account for tab-is-one-character */ /* must decrement once to account for tab-is-one-character */
if(i < current_x) virt_cur_x--; if(i < current_x) virt_cur_x--;
if(i < mark_beginx) virt_mark_beginx--; if(i < mark_beginx) virt_mark_beginx--;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment