Compare commits
36 Commits
v0.9.99pre
...
v1.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
38068cd152 | ||
|
|
60c65424c3 | ||
|
|
90d307413b | ||
|
|
b2c4cbebab | ||
|
|
cef7fbb41a | ||
|
|
a0238ed022 | ||
|
|
1c9d7f9f5d | ||
|
|
1bacd2f8c7 | ||
|
|
0876dc9860 | ||
|
|
49805175e3 | ||
|
|
4bf831ff39 | ||
|
|
3948bae1e1 | ||
|
|
2071207e84 | ||
|
|
2bfbda0fd7 | ||
|
|
7ab3e8fed7 | ||
|
|
0a24b595a6 | ||
|
|
35dac58a61 | ||
|
|
10ae4f11e0 | ||
|
|
55493c2052 | ||
|
|
4aa302fe4a | ||
|
|
e31677362b | ||
|
|
a0323de1f7 | ||
|
|
0d471de448 | ||
|
|
e76f06ba1c | ||
|
|
565f7d5558 | ||
|
|
2af3904099 | ||
|
|
0b33d8864a | ||
|
|
74bb31b15a | ||
|
|
94a78b8fb3 | ||
|
|
1e9183fe31 | ||
|
|
46055b2543 | ||
|
|
53712748ec | ||
|
|
67b14b1467 | ||
|
|
203ce15247 | ||
|
|
5b387d7527 | ||
|
|
9c9c5dab4c |
12
BUGS
12
BUGS
@@ -97,11 +97,15 @@
|
||||
- Cut to end cutting (-k) causes segfaults (try cutting "- Backup making
|
||||
(filename~)?" line in TODO file) (discovered by
|
||||
higuita@cadernoverde.com) (54) [FIXED].
|
||||
|
||||
- When using autoindent (-i), wrapped text does not get auto-indented
|
||||
(55, discovered by Mark Senior) [FIXED].
|
||||
- When using -R (regex) and -p (pico mode), subsequent searches after
|
||||
the first fail if no string is entered (56) [FIXED].
|
||||
- Page down on a file of editwinrows fails (again). Reported by Ryan
|
||||
Krebs (57) [FIXED].
|
||||
- File browser aborts on Solaris in qsort() call. (Reported by
|
||||
Matthias Andree) (58) [FIXED].
|
||||
|
||||
** Open BUGS **
|
||||
|
||||
$Id$
|
||||
|
||||
- When using autoindent (-i), wrapped text does not get auto-indented
|
||||
(55, discovered by Mark Senior).
|
||||
|
||||
71
ChangeLog
71
ChangeLog
@@ -1,3 +1,74 @@
|
||||
nano 1.0.1 - 04/06/2001
|
||||
- General:
|
||||
- added configure option --disable-wrapping. Does what it says,
|
||||
no wrapping or checks are done. Separate from --enable-tiny,
|
||||
some may want a barebones Pico clone that does wrap text.
|
||||
Affects configure, nano.c:do_char() and check_wrap() obviously,
|
||||
version(), and do_char().
|
||||
- aclocal.m4:
|
||||
- Minor patch for intl check (really this time) (Albert Chin)
|
||||
- faq.html:
|
||||
- Fixed typo in section 6.1 (discovered by Bob Farmer).
|
||||
- files.c:
|
||||
- fix two typos in comments, one in ChangeLog (Matthias Andree)
|
||||
diralphasort()
|
||||
- Stop abort on symlinks (Matthias Andree)
|
||||
- use strcasecmp to sort directory if available, pilot does that
|
||||
as well (Matthias Andree)
|
||||
filestat(), do_browse()
|
||||
- Changed lstat calls to stat, which fixes the browser not
|
||||
following links to directories. We only use lstat() when
|
||||
printing the details of the file, and if it is a link, then
|
||||
check via lstat() for link to a directory. If it is
|
||||
a directory, display (dir), else use the normal "--".
|
||||
do_browser()
|
||||
- Fix broken size suffix off-by-one errors (Matthias Andree)
|
||||
cwd_tab_completion(), do_browse_from()
|
||||
- Use PATH_MAX instead of 0 arg to getcwd (Matthias Andree).
|
||||
- Changed above to use PATH_MAX only when defined on the
|
||||
system, as the HURD e.g. does not support it.
|
||||
- intl/Makefile.in:
|
||||
distclean
|
||||
- added intl/libintl.h to the rm -f rule, should fix the unresolved
|
||||
gettext symbols problem (Jordi).
|
||||
|
||||
nano-1.0.0 - 03/22/2001
|
||||
- General
|
||||
- Added void to functions declared as () args, nano.c:do_mark()
|
||||
and search.c:regexp_cleanup(). (Christian Weisgerber).
|
||||
- Changed internal variables called "new" to "newnode" to avoid
|
||||
the "new" C++ reserved word, even though there is likely no way
|
||||
nano will EVER be compilable with a C++ compiler. (suggested by
|
||||
Rocco Corsi).
|
||||
- ca.po, es.po:
|
||||
- Final tweaks for Nano 1.0.
|
||||
- cs.po:
|
||||
- Czech translation from Vaclav Haisman.
|
||||
- nano.info:
|
||||
- Added dir entry (Albert Chin).
|
||||
- winio.c:
|
||||
statusq()
|
||||
- Added NANO_BACK_KEY and NANO_FORWARD_KEY cases for left and right.
|
||||
|
||||
1.0-test prerelease - 03/17/2001
|
||||
- nano.c:
|
||||
do_wrap()
|
||||
- Added case for autoindenting text causing new line (Adam).
|
||||
- Added SAMELINE case to above. Added checks to cases 1b and
|
||||
2b for placement of cursor.
|
||||
- move.c:
|
||||
page_down()
|
||||
- Check for totlines < editwinrows in check for superflous
|
||||
edit update (fixed BUG #57).
|
||||
- search.c:
|
||||
print_replaced()
|
||||
- s/occurence/occurrence typos (Jordi).
|
||||
search_init()
|
||||
- If using Pico mode and regex and same answer is entered, use
|
||||
last_search string instead of answer (fixes BUG #56).
|
||||
- nano.texi:
|
||||
- Meta-Z correction and grammar in --enable-tiny desc (Neil Parks).
|
||||
|
||||
nano-0.9.99pre3 - 02/19/2001
|
||||
- General
|
||||
GNU compliance issues:
|
||||
|
||||
19
NEWS
19
NEWS
@@ -1,3 +1,22 @@
|
||||
04/06/2001 - GNU nano 1.0.1 is out there. The only new feature is a
|
||||
configure option for those who want to disable all
|
||||
word wrapping from nano, --disable-wrapping. Bug fixes
|
||||
this release include some bugs with autoconf and i18n,
|
||||
and several fixes in the file browser including a
|
||||
segfault on Solaris, symlinks to directories now work
|
||||
properly, and nano now sorts files case insensitively
|
||||
like pilot. Have fun with it.
|
||||
|
||||
03/22/2001 - GNU Nano 1.0 is released! The autoindent wrapping bug
|
||||
has been fixed, as well as strange bug when using Pico
|
||||
mode and regex search. There have also been some minor
|
||||
spelling and documentation updates. As stated on the
|
||||
website, there are currently no known bugs with nano, but
|
||||
some will pop up eventually and they will be addressed in
|
||||
subsequent releases. We hope you enjoy this first stable
|
||||
release of nano, and as always, feedback is welcome!
|
||||
nano@nano-editor.org.
|
||||
|
||||
02/19/2001 - Nano 0.9.99pre3 brings a lot of changes! The most important
|
||||
being that nano is now officially a GNU program. Some
|
||||
changes have been made for GNU compatibility (like the
|
||||
|
||||
21
README
21
README
@@ -53,21 +53,12 @@ Mailing List and Bug Reports
|
||||
|
||||
Current Status
|
||||
|
||||
nano is currently at the 1.0 prerelease level. This mean it has all
|
||||
features that the 1.0 version will have and only bug fixes and updates
|
||||
will be added before the official 1.0 is released. There are still a
|
||||
few lingering bugs, but for the most part your data should be safe.
|
||||
Backups are still your friend though.
|
||||
|
||||
Note that the primary aim of nano is to emulate Pico while adding a
|
||||
few key "missing" features. I do NOT want just a GPL'ed Pico clone,
|
||||
nor do I want something that strays too far from the Pico design
|
||||
(simple and straightforward). If you don't like this, feel free to
|
||||
fork my code at any time, but please call your editor something
|
||||
else, believe it or not I struggled awhile before coming up with
|
||||
the name nano (and before that TIP), and it would be much easier for
|
||||
everyone if there weren't five versions of the same program.
|
||||
|
||||
GNU nano has finally reached its first stable release (1.0).
|
||||
The development tree will fork soon and it will be called 1.1.x,
|
||||
in the Linux kernel naming style. Many thanks to all of our
|
||||
bug reporters and contributors of code to get nano where it is
|
||||
today.
|
||||
|
||||
Chris Allegretta (chrisa@asty.org)
|
||||
|
||||
$Id$
|
||||
|
||||
6
TODO
6
TODO
@@ -24,5 +24,11 @@ For Next Version:
|
||||
- Color syntax highlighting? (certainly seems like there's a demand for it.)
|
||||
- .nanorc ?????
|
||||
- Backup making (filename~)?
|
||||
- Search (etc) string history [1.1]
|
||||
- Implent Pico's -j and -g flags, as they are pretty easy to do.
|
||||
- Make mouse support work with clicking on the shortcuts (-m). Must
|
||||
make global variable pointing to current shortcut list to determine what
|
||||
keystroke to ungetch().
|
||||
- Implement -o (chroot of sorts)
|
||||
|
||||
$Id$
|
||||
|
||||
@@ -47,3 +47,7 @@
|
||||
|
||||
/* Define this to disable the built-in (crappy) file browser */
|
||||
#undef DISABLE_BROWSER
|
||||
|
||||
/* Define this to disable any and all text wrapping */
|
||||
#undef DISABLE_WRAPPING
|
||||
|
||||
|
||||
@@ -100,6 +100,9 @@
|
||||
/* Define this to disable the built-in (crappy) file browser */
|
||||
#undef DISABLE_BROWSER
|
||||
|
||||
/* Define this to disable any and all text wrapping */
|
||||
#undef DISABLE_WRAPPING
|
||||
|
||||
/* Define if you have the __argz_count function. */
|
||||
#undef HAVE___ARGZ_COUNT
|
||||
|
||||
|
||||
10
configure.in
10
configure.in
@@ -1,9 +1,9 @@
|
||||
# $Id$
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(nano.c)
|
||||
AM_INIT_AUTOMAKE(nano, 0.9.99pre3)
|
||||
AM_INIT_AUTOMAKE(nano, 1.0.1)
|
||||
AM_CONFIG_HEADER(config.h:config.h.in)
|
||||
ALL_LINGUAS="es de fr it id fi hu ca"
|
||||
ALL_LINGUAS="es de fr it id fi hu ca cs"
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
@@ -62,6 +62,12 @@ AC_ARG_ENABLE(browser,
|
||||
AC_DEFINE(DISABLE_BROWSER)
|
||||
fi])
|
||||
|
||||
AC_ARG_ENABLE(wrapping,
|
||||
[ --disable-wrapping Disables all wrapping of text (and -w flag)],
|
||||
[if test x$enableval != xyes; then
|
||||
AC_DEFINE(DISABLE_WRAPPING)
|
||||
fi])
|
||||
|
||||
AC_MSG_CHECKING([whether to use slang])
|
||||
CURSES_LIB_NAME=""
|
||||
AC_ARG_WITH(slang,
|
||||
|
||||
6
faq.html
6
faq.html
@@ -167,7 +167,7 @@ sense of the word.</font>
|
||||
<p><b><font color="#330000">The event...</font></b>
|
||||
<p><font color="#330000">It was in late 1999 when Chris Allegretta (our
|
||||
hero) was yet again complaining to himself about the less-than-perfect
|
||||
license Pico was distributed under, the 10000 makefiles that came with
|
||||
license Pico was distributed under, the 1.0.1 makefiles that came with
|
||||
it and how just a few small improvements could make it the Best Editor
|
||||
in the World (TM). Having been a convert from Slackware to debian,
|
||||
he missed having a simple binary package that included Pine and Pico, and
|
||||
@@ -200,7 +200,7 @@ nano was developed).</font></blockquote>
|
||||
of nano?</font></h2>
|
||||
|
||||
<blockquote><font color="#330000">The current version of nano *should*
|
||||
be 0.9.99pre3. Of course you should always check the nano hompage to
|
||||
be 1.0.1. Of course you should always check the nano hompage to
|
||||
see what the latest and greatest version is.</font></blockquote>
|
||||
|
||||
<h2>
|
||||
@@ -508,7 +508,7 @@ or the devel list.</font></blockquote>
|
||||
of Pico?</font></h2>
|
||||
|
||||
<blockquote><font color="#330000">There are many reasons to use nano instead
|
||||
of Pico, a more complete list can be found at the <a href="http://www.nano-edior.org">nano
|
||||
of Pico, a more complete list can be found at the <a href="http://www.nano-editor.org">nano
|
||||
homepage</a>.</font></blockquote>
|
||||
|
||||
<h2>
|
||||
|
||||
84
files.c
84
files.c
@@ -318,7 +318,7 @@ int do_insertfile(void)
|
||||
* we don't set the global variable filename to it's name, and don't
|
||||
* print out how many lines we wrote on the statusbar.
|
||||
*
|
||||
* tmp means we are writing a tmp file in a secute fashion. We use
|
||||
* tmp means we are writing a tmp file in a secure fashion. We use
|
||||
* it when spell checking or dumping the file on an error.
|
||||
*/
|
||||
int write_file(char *name, int tmp)
|
||||
@@ -736,7 +736,13 @@ char **cwd_tab_completion(char *buf, int *num_matches)
|
||||
dirName[tmp - buf] = 0;
|
||||
|
||||
} else {
|
||||
|
||||
#ifdef PATH_MAX
|
||||
if ((dirName = getcwd(NULL, PATH_MAX+1)) == NULL)
|
||||
#else
|
||||
/* The better, but aparently segfault-causing way */
|
||||
if ((dirName = getcwd(NULL, 0)) == NULL)
|
||||
#endif /* PATH_MAX */
|
||||
return matches;
|
||||
else
|
||||
tmp = buf;
|
||||
@@ -993,7 +999,7 @@ char *input_tab(char *buf, int place, int *lastWasTab, int *newplace)
|
||||
struct stat filestat(const char *path) {
|
||||
struct stat st;
|
||||
|
||||
lstat(path, &st);
|
||||
stat(path, &st);
|
||||
return st;
|
||||
}
|
||||
|
||||
@@ -1003,26 +1009,20 @@ struct stat filestat(const char *path) {
|
||||
int diralphasort(const void *va, const void *vb) {
|
||||
struct stat file1info, file2info;
|
||||
char *a = *(char **)va, *b = *(char **)vb;
|
||||
int answer = 0;
|
||||
int aisdir, bisdir;
|
||||
|
||||
if (stat(a, &file1info) == -1)
|
||||
answer = 1;
|
||||
else if (stat(b, &file2info) == -1)
|
||||
answer = 1;
|
||||
else {
|
||||
/* If is a is a dir and b isn't, return -1.
|
||||
Else if b is a dir and a isn't, return 0.
|
||||
Else return a < b */
|
||||
aisdir = (stat(a, &file1info) != -1) && S_ISDIR(file1info.st_mode);
|
||||
bisdir = (stat(b, &file2info) != -1) && S_ISDIR(file2info.st_mode);
|
||||
|
||||
if (S_ISDIR(file1info.st_mode) && !S_ISDIR(file2info.st_mode))
|
||||
return -1;
|
||||
else if (!S_ISDIR(file1info.st_mode) && S_ISDIR(file2info.st_mode))
|
||||
return 1;
|
||||
else
|
||||
answer = strcmp(a, b);
|
||||
}
|
||||
if (aisdir && !bisdir) return -1;
|
||||
if (!aisdir && bisdir) return 1;
|
||||
|
||||
#ifdef HAVE_STRCASECMP
|
||||
return(strcasecmp(a,b));
|
||||
#else
|
||||
return(strcmp(a,b));
|
||||
#endif
|
||||
|
||||
return(answer);
|
||||
}
|
||||
|
||||
|
||||
@@ -1289,20 +1289,33 @@ char *do_browser(char *inpath)
|
||||
col += strlen(foo);
|
||||
|
||||
/* Put file info in the string also */
|
||||
st = filestat(filelist[j]);
|
||||
/* We use lstat here to detect links, then if we find a
|
||||
symlink we examine it via stat() to see if it is a
|
||||
directory or just a file symlink */
|
||||
lstat(filelist[j], &st);
|
||||
if (S_ISDIR(st.st_mode))
|
||||
strcpy(foo + longest - 5, "(dir)");
|
||||
else {
|
||||
if (S_ISLNK(st.st_mode))
|
||||
strcpy(foo + longest - 2, "--");
|
||||
else if (st.st_size < 1024) /* less than 1 K */
|
||||
sprintf(foo + longest - 7, "%4d B", (int) st.st_size);
|
||||
else if (st.st_size > 1073741824) /* at least 1 gig */
|
||||
sprintf(foo + longest - 7, "%4d GB", (int) st.st_size / 1073741824);
|
||||
else if (st.st_size > 1048576) /* at least 1 meg */
|
||||
sprintf(foo + longest - 7, "%4d MB", (int) st.st_size / 1048576);
|
||||
if (S_ISLNK(st.st_mode)) {
|
||||
/* Aha! It's a symlink! Now, is it a dir? If so,
|
||||
mark it as such */
|
||||
st = filestat(filelist[j]);
|
||||
if (S_ISDIR(st.st_mode))
|
||||
strcpy(foo + longest - 5, "(dir)");
|
||||
else
|
||||
strcpy(foo + longest - 2, "--");
|
||||
} else if (st.st_size < (1 << 10)) /* less than 1 K */
|
||||
sprintf(foo + longest - 7, "%4d B",
|
||||
(int) st.st_size >> 10);
|
||||
else if (st.st_size >= (1 << 30)) /* at least 1 gig */
|
||||
sprintf(foo + longest - 7, "%4d GB",
|
||||
(int) st.st_size >> 30);
|
||||
else if (st.st_size >= (1 << 20)) /* at least 1 meg */
|
||||
sprintf(foo + longest - 7, "%4d MB",
|
||||
(int) st.st_size >> 20);
|
||||
else /* Its more than 1 k and less than a meg */
|
||||
sprintf(foo + longest - 7, "%4d KB", (int) st.st_size / 1024);
|
||||
sprintf(foo + longest - 7, "%4d KB",
|
||||
(int) st.st_size >> 10);
|
||||
}
|
||||
|
||||
/* Hilight the currently selected file/dir */
|
||||
@@ -1340,7 +1353,7 @@ char *do_browser(char *inpath)
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* Browser fron't end, checks to see if inpath has a dir in it and if so
|
||||
/* Browser front end, checks to see if inpath has a dir in it and if so
|
||||
starts do_browser from there, else from the current dir */
|
||||
char *do_browse_from(char *inpath)
|
||||
{
|
||||
@@ -1349,9 +1362,16 @@ char *do_browse_from(char *inpath)
|
||||
|
||||
tmp = mallocstrcpy(tmp, inpath);
|
||||
|
||||
|
||||
/* If there's no / in the string, we may was well start from . */
|
||||
if (tmp == NULL || !strstr(tmp, "/"))
|
||||
return do_browser(getcwd(NULL, 0));
|
||||
if (tmp == NULL || *tmp == '\0' || !strstr(tmp, "/")) {
|
||||
#ifdef PATH_MAX
|
||||
char *from = getcwd(NULL, PATH_MAX+1);
|
||||
#else
|
||||
char *from = getcwd(NULL, 0);
|
||||
#endif /* PATH_MAX */
|
||||
return do_browser(from ? from : "./");
|
||||
}
|
||||
|
||||
/* If the string is a directory, pass do_browser that */
|
||||
st = filestat(tmp);
|
||||
|
||||
@@ -171,7 +171,7 @@ mostlyclean:
|
||||
clean: mostlyclean
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile ID TAGS po2msg.sed po2tbl.sed
|
||||
rm -f Makefile ID TAGS po2msg.sed po2tbl.sed libintl.h
|
||||
|
||||
maintainer-clean: distclean
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
|
||||
2
move.c
2
move.c
@@ -57,7 +57,7 @@ int page_down(void)
|
||||
|
||||
/* AHEM, if we only have a screen or less of text, DONT do an
|
||||
edit_update, just move the cursor to editbot! */
|
||||
if (edittop == fileage && editbot == filebot) {
|
||||
if (edittop == fileage && editbot == filebot && totlines < editwinrows) {
|
||||
current = editbot;
|
||||
reset_cursor();
|
||||
} else if (editbot != filebot || edittop == fileage) {
|
||||
|
||||
123
nano.c
123
nano.c
@@ -395,8 +395,10 @@ void usage(void)
|
||||
(" -t --tempfile Auto save on exit, don't prompt\n"));
|
||||
printf(_
|
||||
(" -v --view View (read only) mode\n"));
|
||||
#ifndef DISABLE_WRAPPING
|
||||
printf(_
|
||||
(" -w --nowrap Don't wrap long lines\n"));
|
||||
#endif
|
||||
printf(_
|
||||
(" -x --nohelp Don't show help window\n"));
|
||||
printf(_
|
||||
@@ -429,7 +431,9 @@ void usage(void)
|
||||
#endif
|
||||
printf(_(" -t Auto save on exit, don't prompt\n"));
|
||||
printf(_(" -v View (read only) mode\n"));
|
||||
#ifndef DISABLE_WRAPPING
|
||||
printf(_(" -w Don't wrap long lines\n"));
|
||||
#endif
|
||||
printf(_(" -x Don't show help window\n"));
|
||||
printf(_(" -z Enable suspend\n"));
|
||||
printf(_(" +LINE Start at line number LINE\n"));
|
||||
@@ -469,6 +473,9 @@ void version(void)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef DISABLE_WRAPPING
|
||||
printf(" --disable-wrapping");
|
||||
#endif
|
||||
#ifdef USE_SLANG
|
||||
printf(" --with-slang");
|
||||
#endif
|
||||
@@ -493,16 +500,16 @@ filestruct *make_new_node(filestruct * prevnode)
|
||||
}
|
||||
|
||||
/* Splice a node into an existing filestruct */
|
||||
void splice_node(filestruct * begin, filestruct * new, filestruct * end)
|
||||
void splice_node(filestruct * begin, filestruct * newnode, filestruct * end)
|
||||
{
|
||||
new->next = end;
|
||||
new->prev = begin;
|
||||
begin->next = new;
|
||||
newnode->next = end;
|
||||
newnode->prev = begin;
|
||||
begin->next = newnode;
|
||||
if (end != NULL)
|
||||
end->prev = new;
|
||||
end->prev = newnode;
|
||||
}
|
||||
|
||||
int do_mark()
|
||||
int do_mark(void)
|
||||
{
|
||||
#ifdef NANO_SMALL
|
||||
nano_disabled_msg();
|
||||
@@ -558,8 +565,11 @@ void do_char(char ch)
|
||||
current->data[current_x] = ch;
|
||||
do_right();
|
||||
|
||||
#ifndef DISABLE_WRAPPING
|
||||
if (!ISSET(NO_WRAP) && (ch != '\t'))
|
||||
check_wrap(current, ch);
|
||||
#endif
|
||||
|
||||
set_modified();
|
||||
check_statblank();
|
||||
UNSET(KEEP_CUTBUFFER);
|
||||
@@ -570,11 +580,11 @@ void do_char(char ch)
|
||||
/* Someone hits return *gasp!* */
|
||||
int do_enter(filestruct * inptr)
|
||||
{
|
||||
filestruct *new;
|
||||
filestruct *newnode;
|
||||
char *tmp, *spc;
|
||||
int extra = 0;
|
||||
|
||||
new = make_new_node(inptr);
|
||||
newnode = make_new_node(inptr);
|
||||
tmp = ¤t->data[current_x];
|
||||
current_x = 0;
|
||||
|
||||
@@ -586,26 +596,27 @@ int do_enter(filestruct * inptr)
|
||||
extra++;
|
||||
spc++;
|
||||
current_x++;
|
||||
totsize++;
|
||||
}
|
||||
new->data = nmalloc(strlen(tmp) + extra + 1);
|
||||
strncpy(new->data, current->data, extra);
|
||||
strcpy(&new->data[extra], tmp);
|
||||
newnode->data = nmalloc(strlen(tmp) + extra + 1);
|
||||
strncpy(newnode->data, current->data, extra);
|
||||
strcpy(&newnode->data[extra], tmp);
|
||||
}
|
||||
} else {
|
||||
new->data = nmalloc(strlen(tmp) + 1);
|
||||
strcpy(new->data, tmp);
|
||||
newnode->data = nmalloc(strlen(tmp) + 1);
|
||||
strcpy(newnode->data, tmp);
|
||||
}
|
||||
*tmp = 0;
|
||||
|
||||
if (inptr->next == NULL) {
|
||||
filebot = new;
|
||||
editbot = new;
|
||||
filebot = newnode;
|
||||
editbot = newnode;
|
||||
}
|
||||
splice_node(inptr, new, inptr->next);
|
||||
splice_node(inptr, newnode, inptr->next);
|
||||
|
||||
totsize++;
|
||||
renumber(current);
|
||||
current = new;
|
||||
current = newnode;
|
||||
align(¤t->data);
|
||||
|
||||
/* The logic here is as follows:
|
||||
@@ -687,6 +698,7 @@ void do_next_word(void)
|
||||
|
||||
}
|
||||
|
||||
#ifndef DISABLE_WRAPPING
|
||||
void do_wrap(filestruct * inptr, char input_char)
|
||||
{
|
||||
int i = 0; /* Index into ->data for line. */
|
||||
@@ -804,6 +816,14 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
if (current_x >= current_word_start) {
|
||||
right = current_x - current_word_start;
|
||||
current_x = 0;
|
||||
if (ISSET(AUTOINDENT)) {
|
||||
int i = 0;
|
||||
while ((inptr->next->data[i] == ' '
|
||||
|| inptr->next->data[i] == '\t')) {
|
||||
i++;
|
||||
right++;
|
||||
}
|
||||
}
|
||||
down = 1;
|
||||
}
|
||||
|
||||
@@ -817,7 +837,6 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
|
||||
/* Category 2: two or more words on the line. */
|
||||
else {
|
||||
|
||||
/* Case 2a: cursor before word at wrap point. */
|
||||
if (current_x < current_word_start) {
|
||||
temp->data =
|
||||
@@ -850,6 +869,15 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
down = 1;
|
||||
|
||||
right = current_x - current_word_start;
|
||||
if (ISSET(AUTOINDENT)) {
|
||||
int i = 0;
|
||||
while ((inptr->next->data[i] == ' '
|
||||
|| inptr->next->data[i] == '\t')) {
|
||||
i++;
|
||||
right++;
|
||||
}
|
||||
}
|
||||
|
||||
i = current_word_start - 1;
|
||||
if (isspace((int) input_char)
|
||||
&& (current_x == current_word_start)) {
|
||||
@@ -891,14 +919,34 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
|
||||
/* We pre-pend wrapped part to next line. */
|
||||
if (ISSET(SAMELINEWRAP) && inptr->next) {
|
||||
/* Plus one for the space which concatenates the two lines together plus 1 for \0. */
|
||||
char *p =
|
||||
nmalloc(strlen(temp->data) + strlen(inptr->next->data) + 2);
|
||||
int old_x = current_x, old_y = current_y;
|
||||
|
||||
strcpy(p, temp->data);
|
||||
strcat(p, " ");
|
||||
strcat(p, inptr->next->data);
|
||||
/* Plus one for the space which concatenates the two lines together plus 1 for \0. */
|
||||
char *p = nmalloc((strlen(temp->data) + strlen(inptr->next->data) + 2)
|
||||
* sizeof(char));
|
||||
|
||||
if (ISSET(AUTOINDENT)) {
|
||||
int non = 0;
|
||||
|
||||
/* Grab the beginning of the next line until it's not a
|
||||
space or tab, then null terminate it so we can strcat it
|
||||
to hell */
|
||||
while ((inptr->next->data[non] == ' '
|
||||
|| inptr->next->data[non] == '\t'))
|
||||
p[non] = inptr->next->data[non++];
|
||||
|
||||
p[non] = 0;
|
||||
strcat(p, temp->data);
|
||||
strcat(p, " ");
|
||||
|
||||
/* Now tack on the rest of the next line after the spaces and
|
||||
tabs */
|
||||
strcat(p, &inptr->next->data[non]);
|
||||
} else {
|
||||
strcpy(p, temp->data);
|
||||
strcat(p, " ");
|
||||
strcat(p, inptr->next->data);
|
||||
}
|
||||
|
||||
free(inptr->next->data);
|
||||
inptr->next->data = p;
|
||||
@@ -911,6 +959,7 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
}
|
||||
/* Else we start a new line. */
|
||||
else {
|
||||
|
||||
temp->prev = inptr;
|
||||
temp->next = inptr->next;
|
||||
|
||||
@@ -922,6 +971,24 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
filebot = temp;
|
||||
|
||||
SET(SAMELINEWRAP);
|
||||
|
||||
if (ISSET(AUTOINDENT)) {
|
||||
char *spc = inptr->data;
|
||||
char *t = NULL;
|
||||
int extra = 0;
|
||||
if (spc) {
|
||||
while ((*spc == ' ') || (*spc == '\t')) {
|
||||
extra++;
|
||||
spc++;
|
||||
totsize++;
|
||||
}
|
||||
t = nmalloc(strlen(temp->data) + extra + 1);
|
||||
strncpy(t, inptr->data, extra);
|
||||
strcpy(t + extra, temp->data);
|
||||
free(temp->data);
|
||||
temp->data = t;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -929,7 +996,7 @@ void do_wrap(filestruct * inptr, char input_char)
|
||||
/* Everything about it makes me want this line here but it causes
|
||||
* totsize to be high by one for some reason. Sigh. (Rob) */
|
||||
/* totsize++; */
|
||||
|
||||
|
||||
renumber(inptr);
|
||||
edit_update(edittop, TOP);
|
||||
|
||||
@@ -987,6 +1054,7 @@ void check_wrap(filestruct * inptr, char ch)
|
||||
do_wrap(inptr, ch);
|
||||
}
|
||||
}
|
||||
#endif /* DISABLE_WRAPPING */
|
||||
|
||||
/* Stuff we do when we abort from programs and want to clean up the
|
||||
* screen. This doesnt do much right now.
|
||||
@@ -2223,8 +2291,13 @@ int main(int argc, char *argv[])
|
||||
SET(VIEW_MODE);
|
||||
break;
|
||||
case 'w':
|
||||
#ifdef DISABLE_WRAPPING
|
||||
usage();
|
||||
exit(0);
|
||||
#else
|
||||
SET(NO_WRAP);
|
||||
break;
|
||||
#endif /* DISABLE_WRAPPING */
|
||||
case 'x':
|
||||
SET(NO_HELP);
|
||||
break;
|
||||
|
||||
47
nano.info
47
nano.info
@@ -1,5 +1,10 @@
|
||||
This is nano.info, produced by makeinfo version 4.0 from nano.texi.
|
||||
|
||||
INFO-DIR-SECTION Editors
|
||||
START-INFO-DIR-ENTRY
|
||||
* Nano: (nano). Small and friendly text editor.
|
||||
END-INFO-DIR-ENTRY
|
||||
|
||||
|
||||
File: nano.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir)
|
||||
|
||||
@@ -265,7 +270,7 @@ following toggles are available:
|
||||
toggles the -x (-nohelp) command line flag.
|
||||
|
||||
`Suspend Toggle (Meta-Z)'
|
||||
toggles the -i (-autoindent) command line flag.
|
||||
toggles the -z (-suspend) command line flag.
|
||||
|
||||
|
||||
File: nano.info, Node: The File Browser, Next: Pico Compatibility, Prev: Feature Toggles, Up: Top
|
||||
@@ -370,27 +375,31 @@ consider the following command line options:
|
||||
`--enable-tiny'
|
||||
This options disables all the above. It also disables some of the
|
||||
larger internals of the editor, like the marker code (^^) and the
|
||||
cut to line (-k) option which depends on the it to work properly.
|
||||
It also disables the function toggles and mouse support.
|
||||
cut to line (-k) option which it depends on to work properly. It
|
||||
also disables the function toggles and mouse support.
|
||||
|
||||
`--disable-wrapping'
|
||||
Disables all word wrapping in the editor. This also eliminates the
|
||||
-w command line flag, as nonwrapping is then the default behavior.
|
||||
|
||||
|
||||
|
||||
Tag Table:
|
||||
Node: Top69
|
||||
Node: Introduction377
|
||||
Node: Overview803
|
||||
Node: Command Line Options1383
|
||||
Ref: Expert Mode3106
|
||||
Node: Editor Basics3948
|
||||
Node: Entering Text4173
|
||||
Node: Special Functions4513
|
||||
Node: The Titlebar5367
|
||||
Node: The Statusbar6064
|
||||
Node: Shortcut Lists6644
|
||||
Node: Online Help7036
|
||||
Node: Feature Toggles7412
|
||||
Node: The File Browser8558
|
||||
Node: Pico Compatibility9267
|
||||
Node: Building and Configure Options11309
|
||||
Node: Top199
|
||||
Node: Introduction507
|
||||
Node: Overview933
|
||||
Node: Command Line Options1513
|
||||
Ref: Expert Mode3236
|
||||
Node: Editor Basics4078
|
||||
Node: Entering Text4303
|
||||
Node: Special Functions4643
|
||||
Node: The Titlebar5497
|
||||
Node: The Statusbar6194
|
||||
Node: Shortcut Lists6774
|
||||
Node: Online Help7166
|
||||
Node: Feature Toggles7542
|
||||
Node: The File Browser8685
|
||||
Node: Pico Compatibility9394
|
||||
Node: Building and Configure Options11436
|
||||
|
||||
End Tag Table
|
||||
|
||||
17
nano.texi
17
nano.texi
@@ -8,9 +8,13 @@
|
||||
@c Run `makeinfo' rather than `texinfo-format-buffer'.
|
||||
@smallbook
|
||||
@set EDITION 0.1
|
||||
@set VERSION 0.9.99pre3
|
||||
@set VERSION 1.0.1
|
||||
@set UPDATED 12 Feb 2001
|
||||
|
||||
@dircategory Editors
|
||||
@direntry
|
||||
* Nano: (nano). Small and friendly text editor.
|
||||
@end direntry
|
||||
|
||||
@c tex
|
||||
@c \overfullrule=0pt
|
||||
@@ -19,7 +23,7 @@
|
||||
@titlepage
|
||||
@title GNU @code{nano}
|
||||
@subtitle a small and friendly text editor.
|
||||
@subtitle version 0.9.99pre3
|
||||
@subtitle version 1.0.1
|
||||
|
||||
@author Chris Allegretta
|
||||
@page
|
||||
@@ -297,7 +301,7 @@ toggles the -w (--nowrap) command line flag.
|
||||
toggles the -x (--nohelp) command line flag.
|
||||
|
||||
@item Suspend Toggle (Meta-Z)
|
||||
toggles the -i (--autoindent) command line flag.
|
||||
toggles the -z (--suspend) command line flag.
|
||||
|
||||
@end table
|
||||
|
||||
@@ -398,8 +402,13 @@ Disables the mini file browser (^O) when reading or writing files.
|
||||
@item --enable-tiny
|
||||
This options disables all the above. It also disables some of
|
||||
the larger internals of the editor, like the marker code (^^) and
|
||||
the cut to line (-k) option which depends on the it to work properly.
|
||||
the cut to line (-k) option which it depends on to work properly.
|
||||
It also disables the function toggles and mouse support.
|
||||
|
||||
@item --disable-wrapping
|
||||
Disables all word wrapping in the editor. This also eliminates the
|
||||
-w command line flag, as nonwrapping is then the default behavior.
|
||||
|
||||
@end table
|
||||
|
||||
@contents
|
||||
|
||||
226
po/ca.po
226
po/ca.po
@@ -6,9 +6,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.9.99pre2-CVS\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"PO-Revision-Date: 2001-02-20 00:45+0100\n"
|
||||
"Project-Id-Version: 1.0\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2001-03-21 23:45+0100\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>, Miquel Vidal "
|
||||
"<miquel@sindominio.net>\n"
|
||||
"Language-Team: Catalan <jordi@sindominio.net>\n"
|
||||
@@ -34,7 +34,7 @@ msgstr "read_line: no som a la primera l
|
||||
msgid "Read %d lines"
|
||||
msgstr "%d línies llegides"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" no trobat"
|
||||
@@ -63,7 +63,7 @@ msgstr "S'est
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "Fitxer a inserir [des de ./] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancel·lat"
|
||||
|
||||
@@ -111,7 +111,7 @@ msgstr "filename
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "El fitxer existeix, SOBREESCRIURE ?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr "(més)"
|
||||
|
||||
@@ -411,7 +411,7 @@ msgid "Case Sens"
|
||||
msgstr "Maj/Min"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·lar"
|
||||
|
||||
@@ -566,23 +566,23 @@ msgstr " -t \t\t--tempfile\t\tAutodesar en sortir, sense preguntar\n"
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr " -v \t\t--view\t\t\tMode visualització (sols lectura)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\t--nowrap\t\tNo ajustar línies llargues\n"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr " -x \t\t--nohelp\t\tNo mostrar la finestra d'ajuda\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr " -z \t\t--suspend\t\tHabilitar suspensió\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +LINE\t\t\t\t\tIniciar a la línia número LÍNIA\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -590,92 +590,92 @@ msgstr ""
|
||||
"Sintaxi: nano [opció] +LÍNIA <fitxer>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Opción\t\tSignificat\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr " -T [num]\tFixar l'amplada de tab a num\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr " -R\t\tFer servir expressions regulars per a les recerques\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tImprimir informació sobre la versió i sortir\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tMostrar constantment la posició del cursor\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tMostrar aquest missatge\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -v \t\tSagnar automàticament noves línies\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr " -k \t\t^K talla des del cursor al final de línia\n"
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr " -l \t\tNo seguir enllaços simbòlics, sobreescriure'ls\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tHabilitar ratolí\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr " -p \t\tEmular a Pico tant com sigui possible\n"
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr " -r [#cols] \tOmplir columnes (wrapear línies en) #cols\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [prog] \tHabilitar corrector alternatiu\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tAutodesar en sortir, no preguntar\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tMode visualització (només de lectura)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tNo ajustar línies llargues\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tNo mostrar la finestra d'ajuda\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tHabilitar suspensió\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +LÍNEA\t\tComençar en la línia número LÍNIA\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU nano versió %s (compilat %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr " Correu-e: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
@@ -683,222 +683,222 @@ msgstr ""
|
||||
"\n"
|
||||
" Opcions compilades:"
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Marca Establida"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Marca Esborrada"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap cridat amb inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data ara = \"%d\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Després, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr "Editar un reemplaçament"
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "No s'ha pogut crear un fitxer temporal: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr "Revisió d'ortografia fallida: no s'ha pogut escriure fitxer temporal!"
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Revisió d'ortografia finalitzada"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr "Revisió d'ortografia fallida"
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Desar el buffer modificat (RESPONDRE \"No\" DESTRUIRÀ ELS CAMVIS) ?"
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr "SIGHUP rebut"
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "No es pot canviar la mida de la finestra superior"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "No es pot moure la finestra superior"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "No es pot canviar la mida de la finestra d'edició"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "No es pot moure la finestra d'edició"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "No es pot canviar la mida de la finestra inferior"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "No es pot moure la finestra inferior"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr "Ara pots desjustificar!"
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s habilitar/inhabilitar"
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr "habilitat"
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr "inhabilitat"
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
"Detectat NumLock trencat. El tecl. numèric funcionarà amb NumLock activat"
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configurar les finestres\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: finestra inferior\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: obrir fitxer\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "He agafat Alt-O-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "He agafat Alt-[-1-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "He agafat Alt-[-2-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "He agafat Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "He agafat Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Recerca amb Regexp i Majúscules/Minúscules%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Recerca amb Regexp%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Recerca amb Regexp i Majúscules/Minúscules%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Cercar%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
msgid " (to replace)"
|
||||
msgstr " (a reemplaçar)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Recerca Cancel·lada"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s...\" no trobat"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "Recerca Recomençada"
|
||||
|
||||
#: search.c:343
|
||||
#: search.c:348
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d ocurrències reemplaçadas"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "1 ocurrència reemplaçada"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Reemplaçar Cancel·lat"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "Reemplaçar aquesta instància?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr "Impossible de reemplaçar: subexpressió desconeguda!"
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Reemplaçar amb [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Reemplaçar amb"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Introdueix número de línia"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Avortat"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Au vinga, sigues assenyat"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Només hi ha %d línies, ometent fins al final"
|
||||
@@ -908,38 +908,38 @@ msgstr "Nom
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x_from_start per a xplus=%d ha retornat %d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "entrada '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Nou Buffer"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr "Fitxer: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
msgid " DIR: ..."
|
||||
msgstr " DIR: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Modificat"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Mogut a (%d, %d) a buffer d'edició\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "He aconseguit \"%s\"\n"
|
||||
@@ -951,79 +951,79 @@ msgstr "He aconseguit \"%s\"\n"
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Ss"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Nn"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Tt"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Sí"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Totes"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "línia %d de %d (%.0f%%), caràcter %d de %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Abocant buffer de fitxer a stderr...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Abocant el cutbuffer a stderr...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Abocant un buffer a stderr...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr "L'editor de textos GNU nano"
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr "versió "
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr "Per cortesia de:"
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr "Agraïments especials per a:"
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr "La Fundació per al Software Lliure (FSF)"
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr "Pavel Curtis, Zeyd Ben-Halim i Eric S. Raymond per ncurses"
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr "i per qualsevol dels qui ens hem oblidat esmentar..."
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr "Gràcies per fer servir nano!\n"
|
||||
|
||||
225
po/de.po
225
po/de.po
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano 1.0.0\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2001-02-08 17:56+0200\n"
|
||||
"Last-Translator: Florian König <floki@bigfoot.com>\n"
|
||||
"Language-Team: German <floki@bigfoot.com>\n"
|
||||
@@ -33,7 +33,7 @@ msgstr "read_line: nicht in der ersten Zeile und prev ist NULL"
|
||||
msgid "Read %d lines"
|
||||
msgstr "%d Zeilen gelesen"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" nicht gefunden"
|
||||
@@ -62,7 +62,7 @@ msgstr "Lese Datei"
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "Datei einfügen [von ./] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Abgebrochen"
|
||||
|
||||
@@ -110,7 +110,7 @@ msgstr "Dateiname ist %s"
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Datei exisitiert, ÜBERSCHREIBEN ?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr "(mehr)"
|
||||
|
||||
@@ -410,7 +410,7 @@ msgid "Case Sens"
|
||||
msgstr "GROSZ/klein"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
@@ -570,24 +570,24 @@ msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr ""
|
||||
" -v \t\t--view\t\t\tNur zum Lesen öffnen (keine Veränderungen m÷glich)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
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"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr " -x \t\t--nohelp\t\tHilfe-Fenster nicht anzeigen\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr ""
|
||||
" -z \t\t--suspend\t\tSuspend (anhalten und zurück zur Shell) aktivieren\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +ZEILE\t\t\t\t\tBei Zeile ZEILE beginnen\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -595,93 +595,93 @@ msgstr ""
|
||||
"Aufruf: nano [Option] +ZEILE <Datei>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Option\t\tBedeutung\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr " -T [Anzahl]\tTabulator-Größe auf Anzahl setzen\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr " -R\t\tRegulären Ausdruck zur Suche verwenden\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tVersionsinfo ausgeben und beenden\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tCursorposition ständig anzeigen\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tDiese Meldung anzeigen\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -i \t\tNeue Zeilen automatisch einrücken\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr " -k \t\t^K schneidet vom Cursor bis zum Zeilenende aus\n"
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr " -l \t\tSymbolischen Links nicht folgen, sondern überschreiben\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tMaus aktivieren\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr "i -p \t\tPico so genau wie möglich imitieren\n"
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr " -r [#Spalten] \tSpalten auffüllen (Zeilenumbruch bei) #Spalten\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
#, fuzzy
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [Programm] |\tAlternative Rechtschreibprüfung\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tBeim Beenden ohne Rückfrage speichern\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tNur zum Lesen öffnen (keine Veränderungen möglich)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tLange Zeilen nicht in neue Zeilen umbrechen\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tHilfe-Fenster nicht anzeigen\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tSuspend (anhalten und zurück zur Shell) aktivieren\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +ZEILE\t\tBei Zeile ZEILE beginnen\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU nano Version %s (compiliert um %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr " Email: nano@nano-editor.org\tWWW: http://www.nano-editor.org"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
@@ -689,227 +689,228 @@ msgstr ""
|
||||
"\n"
|
||||
" Kompilierte Optionen:"
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Markierung gesetzt"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Markierung gelöscht"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap aufgerufen mit inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data jetzt = \"%s\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Nachher, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr "Ersetzung editieren"
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Konnte keine temporäre Datei erzeugen: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr ""
|
||||
"Rechtschreibprüfung fehlgeschlagen: konnte nicht in temporäre Datei schreiben"
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Rechtschreibprüfung abgeschlossen"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr "Rechtschreibprüfung fehlgeschlagen"
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Veränderten Puffer speichern (\"Nein\" VERWIRFT DIE ÄNDERUGNEN) ? "
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr "SIGHUP empfangen"
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Kann die Größe des oberen Fensters nicht verändern"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Kann oberes Fenster nicht verschieben"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Kann Größe des Bearbeitungsfensters nicht verändern"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Kann Bearbeitungsfenster nicht verschieben"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Kann Größe des unteren Fensters nicht verändern"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Kann unteres Fenster nicht verschieben"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr "Kann Absatzausrichtung nicht rückgängig machen"
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s aktivieren/deaktivieren"
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr "aktiviert"
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr "deaktiviert"
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
#, fuzzy
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
"NumLock Problem entdeckt. | Tastenblock funktioniert nicht, wenn NumLock "
|
||||
"ausgeschaltet ist"
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Hauptprogramm: Fenster konfigurieren\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Hauptprogramm: unteres Fenster\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Hauptprogramm: Datei öffnen\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-0-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-1-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-2-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "Erhielt Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr ""
|
||||
"Suche mit Unterscheidung von Groß- und Kleinschreibung nach regulärem "
|
||||
"Ausdruck%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Suche nach regulärem Ausdruck%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Suche mit Unterscheidung von Groß- und Kleinschreibung%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Suche%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
msgid " (to replace)"
|
||||
msgstr " (zu ersetzen)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Suche abgebrochen"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s...\" nicht gefunden"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "Suche in neue Zeile umgebrochen"
|
||||
|
||||
#: search.c:343
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
#: search.c:348
|
||||
#, fuzzy, c-format
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d Ersetzungen vorgenommen"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
#, fuzzy
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "1 Ersetzung vorgenommen"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Ersetzung abgebrochen"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "Fundstelle ersetzen?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr "Ersetzung gescheitert: unbekannter Unterausdruck"
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Ersetzen mit [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Ersetzen mit"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Zeilennummer eingeben"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Abgebrochen"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Komm schon, sei vernünftig"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Nur %d Zeilen vorhanden, springe zur letzten Zeile"
|
||||
@@ -919,40 +920,40 @@ msgstr "Nur %d Zeilen vorhanden, springe zur letzten Zeile"
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x_from_start für xplus=%d gab %d zur<75>ck\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "Eingabe '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Neuer Puffer"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
#, fuzzy
|
||||
msgid " File: ..."
|
||||
msgstr " |Datei: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
#, fuzzy
|
||||
msgid " DIR: ..."
|
||||
msgstr " || Verzeichnis: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Verändert"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Erhielt \"%s\"\n"
|
||||
@@ -964,80 +965,80 @@ msgstr "Erhielt \"%s\"\n"
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Jj"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Nn"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Aa"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Gebe Datei Puffer nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Gebe einen Puffer nach stderr aus...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr "Der nano Text-Editor"
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr "Version "
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr "Entwickelt von:"
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr "Speziellen Dank an:"
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr "The Free Software Foundation"
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr "Pavel Curtis, Zeyd Ben-Halim und Eric S. Raymond für ncurses"
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr "und alle Nichtgenannten..."
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr "Danke für die Benutzung von nano!\n"
|
||||
|
||||
|
||||
226
po/es.po
226
po/es.po
@@ -6,9 +6,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.9.99pre2-CVS\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"PO-Revision-Date: 2001-02-16 20:58+0100\n"
|
||||
"Project-Id-Version: 1.0\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2001-03-21 23:46+0100\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Spanish <es@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -33,7 +33,7 @@ msgstr "read_line: no estamos en la primera l
|
||||
msgid "Read %d lines"
|
||||
msgstr "%d líneas leídas"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" no encontrado"
|
||||
@@ -62,7 +62,7 @@ msgstr "Leyendo Fichero"
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "Fichero a insertar [desde ./] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
@@ -110,7 +110,7 @@ msgstr "filename es %s"
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "El fichero existe, ¿ SOBREESCRIBIR ?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr "(más)"
|
||||
|
||||
@@ -410,7 +410,7 @@ msgid "Case Sens"
|
||||
msgstr "May/Min"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -564,23 +564,23 @@ msgstr " -t \t\t--tempfile\t\tAutosalvar al salir, sin preguntar\n"
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr " -v \t\t--view\t\t\tModo visualización (sólo lectura)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\t--nowrap\t\tNo wrapear líneas largas\n"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
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"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr " -z \t\t--suspend\t\tHabilitar suspensión\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +LINE\t\t\t\t\tComenzar en la línea número LÍNEA\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -588,92 +588,92 @@ msgstr ""
|
||||
"Uso: nano [opción] +LÍNEA <fichero>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Opción\t\tSignificado\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr " -T [num]\tFijar el ancho de tab a num\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr " -R\t\tUsar expresiones regulares para las búsquedas\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tImprimir información sobre la versión y salir\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tMostrar constantemente la posición del cursor\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tMostrar este mensaje\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -v \t\tIndentar automáticamente nuevas líneas\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr " -k \t\t^K corta desde el cursor al final de línea\n"
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr " -l \t\tNo seguir enlaces simbólicos, sobreescribirlos\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tHabilitar ratón\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr " -p \t\tEmular a Pico lo máximo posible\n"
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr " -r [#cols] \tRellenar columnas (wrapear líneas en) #cols\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [prog] \tHabilitar corrector alternativo\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tAutosalvar al salir, no preguntar\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tModo visualización (sólo lectura)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tNo wrapear líneas largas\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tNo mostrar la ventana de ayuda\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tHabilitar suspensión\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +LÍNEA\t\tComenzar en la línea número LÍNEA\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU nano versión %s (compilado %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr " Correo-e: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
@@ -681,224 +681,224 @@ msgstr ""
|
||||
"\n"
|
||||
" Opciones compiladas:"
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Marca Establecida"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Marca Borrada"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap llamada con inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data ahora = \"%d\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Después, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr "Editar un reemplazo"
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "No pude crear un fichero temporal: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr ""
|
||||
"Comprobación de ortografía fallida: ¡no se pudo escribir fichero temporal!"
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Revisión de ortografía finalizada"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr "Comprobación de ortografía fallida"
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr ""
|
||||
"¿ Salvar el buffer modificado (RESPONDER \"No\" DESTRUIRÁ LOS CAMBIOS) ?"
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr "SIGHUP recibido"
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "No se puede cambiar el tamaño de la ventana superior"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "No se puede mover la ventana superior"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "No se puede cambiar el tamaño de la ventana de edición"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "No se puede mover la ventana de edición"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "No se puede cambiar el tamaño de la ventana inferior"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "No se puede mover la ventana inferior"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr "¡Ahora puedes desjustificar!"
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s habilitar/deshabilitar"
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr "habilitado"
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr "deshabilitado"
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
"Detectado NumLock roto. El tecl. numérico funcionará con NumLock activado"
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configurar las ventanas\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: ventana inferior\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: abrir fichero\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "¡Pillé Alt-O-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "¡Pillé Alt-[-1-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "¡Pillé Alt-[-2-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "¡Pillé Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "¡Pillé Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Búsqueda con Regexp y Mayúsculas/Minúsculas%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Busqueda con Regexp%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Búsqueda con Mayúsculas/Minúsculas%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Buscar%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
msgid " (to replace)"
|
||||
msgstr " (a reemplazar)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Búsqueda Cancelada"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s...\" no encontrado"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "Búsqueda Recomenzada"
|
||||
|
||||
#: search.c:343
|
||||
#: search.c:348
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d ocurrencias reemplazadas"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "1 ocurrencia reemplazada"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Reemplazar Cancelado"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "¿Reemplazar esta instancia?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr "Fallo en reemplazar: ¡subexpresión desconocida!"
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Reemplazar con [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Reemplazar con"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Introduce número de línea"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Abortado"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Venga ya, se razonable"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Sólo hay %d líneas, saltando hasta la última"
|
||||
@@ -908,38 +908,38 @@ msgstr "S
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x_from_start para xplus=%d devolvió %d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "entrada '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Nuevo Buffer"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr "Fichero: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
msgid " DIR: ..."
|
||||
msgstr " DIR: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Modificado"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Moviendo a (%d, %d) en buffer de edición\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Pillé \"%s\"\n"
|
||||
@@ -951,79 +951,79 @@ msgstr "Pill
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Ss"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Nn"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Tt"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Sí"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Todas"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "línea %d de %d (%.0f%%), carácter %d de %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Volcando buffer de fichero a stderr...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Volcando el cutbuffer a stderr...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Volcando un buffer a stderr...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr "El editor de textos GNU nano"
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr "versión "
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr "Por cortesía de:"
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr "Agradecimientos especiales para:"
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr "La Free Software Foundation"
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr "Pavel Curtis, Zeyd Ben-Halim y Eric S. Raymond por ncurses"
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr "y cualquiera del que nos hayamos olvidado..."
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr "¡Gracias por usar nano!\n"
|
||||
|
||||
225
po/fi.po
225
po/fi.po
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano 0.9.18\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2001-01-12 17:21+02:00\n"
|
||||
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
|
||||
"Language-Team: Finnish <fi@li.org>\n"
|
||||
@@ -31,7 +31,7 @@ msgstr "read_line: ei ensimm
|
||||
msgid "Read %d lines"
|
||||
msgstr "%d riviä luettu"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "Ei löytynyt: \"%s\""
|
||||
@@ -60,7 +60,7 @@ msgstr "Lukee tiedostoa"
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "Lisättävä tiedosto [hakemistossa ./]"
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Peruttu"
|
||||
|
||||
@@ -108,7 +108,7 @@ msgstr "tiedoston nimi on %s"
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Tiedosto on jo olemassa, korvataanko?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr "(lisää)"
|
||||
|
||||
@@ -407,7 +407,7 @@ msgid "Case Sens"
|
||||
msgstr "Kirj. koko"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Peru"
|
||||
|
||||
@@ -560,23 +560,23 @@ msgstr ""
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr " -v \t\t--view\t\t\tKatselutila (vain luku)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\t--nowrap\t\tÄlä rivitä pitkiä rivejä\n"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr " -x \t\t--nohelp\t\tÄlä näytä ohjeikkunaa\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr " -z \t\t--suspend\t\tMahdollista keskeyttäminen\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +RIVI\t\t\t\t\tSiirry riville RIVI\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -584,93 +584,93 @@ msgstr ""
|
||||
"Käyttö: nano [asetukset] +RIVI <tiedosto>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Asetus\t\tMerkitys\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr " -T [leveys]\tAseta sarkaimen leveys\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr " -R\t\tEtsi säännöllisillä lausekkeilla\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tTulosta versiotiedot ja lopeta\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tNäytä kohdistimen sijainti jatkuvasti\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tNäytä tämä ohje\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -i \t\tSisennä uudet rivit automaattisesti\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr " -k \t\t^K leikkaa rivin loppuun saakka\n"
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr " -l \t\tÄlä seuraa symbolisia linkkejä, vaan korvaa ne tiedostoilla.\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tKäytä hiirtä\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr " -p \t\tJäljittele Picoa mahdollisimman tarkasti\n"
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr " -r [#lkm] \tRivitä annettua pidemmät rivit\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [ohjelma] \tKäytä annettua oikolukuohjelmaa\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tTallenna tiedosto kysymättä poistuttaessa\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tKatselutila (vain luku)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tÄlä rivitä pitkiä rivejä\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tÄlä näytä ohjeikkunaa\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tMahdollista keskeyttäminen\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +RIVI\t\tSiirry riville RIVI\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU Nano, versio %s. (käännetty %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr ""
|
||||
" Sähköposti: nano@nano-editor.org\tInternet: http://www.nano-editor.org"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
@@ -678,222 +678,223 @@ msgstr ""
|
||||
"\n"
|
||||
" Mukaan käännetyt valitsimet:"
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Merkintä alkoi"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Merkintä loppui"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap -funktion parametri inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data nyt = \"%s\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Jälkeenpäin, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr "Muokkaa korvausta"
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Väliaikaista tiedostonnimeä ei voitu luoda: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr "Oikaisuluku epäonnistui: väliaikaistiedostoa ei voitu kirjoittaa"
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Oikoluku on valmis"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr "Oikaisuluku epäonnistui"
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Tallenna muutettu teksti (Muutokset häviävät, jos vastaat \"ei\") ? "
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr "Vastaanotettiin SIGHUP"
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Yläikkunan kokoa ei voi muuttaa"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Yläikkunaa ei voi siirtää"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Muokkausikkunan kokoa ei voi muuttaa"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Muokkausikkunaa ei voi siirtää"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Alaikkunan kokoa ei voi muuttaa"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Alaikkunaa ei voi siirtää"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr "Tasaamisen voi perua nyt."
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s käytössä/ei käytössä"
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr "käytössä"
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr "ei käytössä"
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
"NumLock-ongelma: Numeronäppäimistö toimii väärin, kun NumLock ei ole päällä."
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Päätila: ikkunoiden asettelu\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Päätila: alaikkuna\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Päätila: avaa tiedosto\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-O-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-1-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-2-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "Vastaanotettu Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Etsi kirjainkokotarkka säänn. lauseke%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Etsi säänn. lauseke%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Kirjainkokotarkka etsintä%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Etsintä%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
msgid " (to replace)"
|
||||
msgstr " (korvattava)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Etsintä peruttu"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s...\" ei löytynyt"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "Etsintä jatkuu"
|
||||
|
||||
#: search.c:343
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
#: search.c:348
|
||||
#, fuzzy, c-format
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d kohtaa korvattu"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
#, fuzzy
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "1 kohta korvattu"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Korvaus peruttu"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "Korvataanko tämä kohta?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr "Korvaus epäonnistui: tuntematon alilauseke!"
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Korvaa merkkijonolla [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Korvaa merkkijonolla"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Kirjoita rivin numero"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Keskeytetty"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Jotakin järkevää, kiitos?"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Vain %d riviä olemassa: siirtyy viimeiselle riville"
|
||||
@@ -903,38 +904,38 @@ msgstr "Vain %d rivi
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x_from_start parametrilla xplus=%d palautti %d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "syöte '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Uusi teksti"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr " Tiedosto: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
msgid " DIR: ..."
|
||||
msgstr " HAKEMISTO: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Muokattu"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Saatiin \"%s\"\n"
|
||||
@@ -946,79 +947,79 @@ msgstr "Saatiin \"%s\"\n"
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Kk"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Ee"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "aA"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Kyllä"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Kaikki"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Syöttää tiedoston stderriin...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Syöttää leiketilan stderriin...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Syöttää tekstin stderriin...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr "Nano-editori"
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr "versio "
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr "Tehneet:"
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr "Erikoiskiitokset:"
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr "Free Software Foundation"
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr "Pavel Curtis, Zeyd Ben-Halim ja Eric S. Raymond ncursesista"
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr "ja kaikille muille, jotka unohdimme..."
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr "Kiitos Nanon käyttämisestä!\n"
|
||||
|
||||
225
po/fr.po
225
po/fr.po
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.8.9\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2000-07-09 01:32+0100\n"
|
||||
"Last-Translator: Clement Laforet <sheep.killer@free.fr>\n"
|
||||
"Language-Team: French <LL@li.org>\n"
|
||||
@@ -35,7 +35,7 @@ msgstr ""
|
||||
msgid "Read %d lines"
|
||||
msgstr "%d lignes lues"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" non trouvé"
|
||||
@@ -64,7 +64,7 @@ msgstr "Lecture du fichier"
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "Fichier à insérer [depuis ./] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulé"
|
||||
|
||||
@@ -112,7 +112,7 @@ msgstr "Le nom du fichier est %s"
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "Fichier existant, écrire par-dessus ?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
@@ -420,7 +420,7 @@ msgid "Case Sens"
|
||||
msgstr "Casse respectée"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
@@ -584,23 +584,23 @@ msgstr ""
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr " -v \t\t--view\t\t\tMode Visualisation (lecture seule)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
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"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr " -x \t\t--nohelp\t\tNe pas afficher la fenêtre d'aide\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr " -z \t\t--suspend\t\tAutoriser la suspension\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +LIGNE\t\t\t\t\tCommencer à la ligne LIGNE\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -608,316 +608,317 @@ msgstr ""
|
||||
"Utilisation: nano [option] +LIGNE <fichier>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Option\t\tSignification\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr "-T [num]\tDéfini la pronfondeur de tabulation à num\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr "-R\t\tUtilisation des expressions régulières pour la recherche\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tAfficher les informations de version et sortir\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tAfficher constamment la position du curseur\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tAfficher ce message\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -i \t\tIndenter automatiquement les nouvelles lignes\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr "-l \t\tNe pas suivre les liens symboliques. Outrepasse à l'écriture\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tActiver la souris\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr ""
|
||||
" -r [#cols] \tMettre la colonne de fin de ligne à (couper les lignes à) "
|
||||
"#cols\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [prog] \tActiver un vérificateur orthographique alternatif\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tSauver automatiquement à la sortie, sans demander\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tMode Visualisation seule (lecture seule)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tNe pas couper les lignes longues\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tNe pas afficher la fenêtre d'aide\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tAutoriser la suspension\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +LIGNE\t\tDémarrer à la ligne LIGNE\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU nano version %s (compilée %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
#, fuzzy
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Marque enregistrée"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Marque effacée"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap appelée avec inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data vaut maintenant \"%s\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Après, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Impossible de créer un nom de fichier temporaire: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Vérification orthographique terminée"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Sauver le buffer modifié (RÉPONDRE \"No\" EFFACERA LES CHANGEMENTS"
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Impossible de redimensionner la fenêtre du haut"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Impossible de bouger la fenêtre du haut"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Impossible de redimensionner la fenêtre d'édition"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Impossible de bouger la fenêtre d'édition"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Impossible de redimensionner la fenêtre du bas"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Impossible de bouger la fenêtre du bas"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configuration des fenêtres\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: fenêtre du bas\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: ouvrir fichier\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "J'ai reçu Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, fuzzy, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Recherche sensible ) la casse%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, fuzzy, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Recherche Regexp%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, fuzzy, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Recherche sensible ) la casse%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, fuzzy, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Recherche%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
#, fuzzy
|
||||
msgid " (to replace)"
|
||||
msgstr " (remplacer par)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Recherche annulée"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s\" non trouvé"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "La recherche a bouclé"
|
||||
|
||||
#: search.c:343
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
#: search.c:348
|
||||
#, fuzzy, c-format
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d occurences remplacées"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
#, fuzzy
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "1 occurence remplacée"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Remplacement annulé"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "Remplacer cette occurence?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr ""
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Remplacer par [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Rempacer par"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Entrer le numéro de ligne"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Annulé"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Allez, soyez raisonnable"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Seulement %d lignes sont disponibles, saut jusqu'à la dernière ligne"
|
||||
@@ -927,39 +928,39 @@ msgstr "Seulement %d lignes sont disponibles, saut jusqu'
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x renvoyé pour xplus=%d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "taper '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Nouveau buffer"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr " Fichier: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
#, fuzzy
|
||||
msgid " DIR: ..."
|
||||
msgstr " Fichier: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Modifié"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Déplacement jusqu'à (%d, %d) dans le buffer d'édition\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "J'ai reçu \"%s\"\n"
|
||||
@@ -971,80 +972,80 @@ msgstr "J'ai re
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Oo"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Nn"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Tt"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "ligne %d sur %d (%.0f%%), caractère %d sur %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Envoi du buffer fichier sur stderr...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Envoi du cutbuffer sur stderr...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Envoi d'un buffer sur stderr...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr ""
|
||||
|
||||
|
||||
225
po/hu.po
225
po/hu.po
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano 0.9.99pre2\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2001-02-03 07:47-0000\n"
|
||||
"Last-Translator: Szabolcs Horvath <horvaths@penguinpowered.com>\n"
|
||||
"Language-Team: Hungarian <magyar@lists.linux.hu>\n"
|
||||
@@ -32,7 +32,7 @@ msgstr "read_line: ez nem az els
|
||||
msgid "Read %d lines"
|
||||
msgstr "%d sort beolvastam"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" nem található"
|
||||
@@ -61,7 +61,7 @@ msgstr "F
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "Fájl beszúrása [a ./-ból] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Megszakítva"
|
||||
|
||||
@@ -109,7 +109,7 @@ msgstr "a f
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "A fájl már létezik, felülírjam?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr "(tovább)"
|
||||
|
||||
@@ -408,7 +408,7 @@ msgid "Case Sens"
|
||||
msgstr "kis/Nagy"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Mégsem"
|
||||
|
||||
@@ -564,23 +564,23 @@ msgstr " -t \t\t--tempfile\t\tAutomatikus ment
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr " -v \t\t--view\t\t\tCsak olvasható mód\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\t--nowrap\t\tNem tördeli a sorokat\n"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr " -x \t\t--nohelp\t\tNem mutatja a súgót\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr " -z \t\t--suspend\t\tFelfüggesztés engedélyezése\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +SOR\t\t\t\t\tA SOR. sornál kezd\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -588,92 +588,92 @@ msgstr ""
|
||||
"Használat: nano [opciók] +SOR <fájl>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Opciók\t\tJelentés\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr " -T [szám]\tBeállítja a tabulátor szélességét\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr " -R\t\tReguláris kifejezések használata kereséskor\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tKiírja a verziószámot és kilép\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tÁllandóan mutatja a kurzor pozícióját\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tEzt a súgót mutatja\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -i \t\tAutomatikusan igazítja az új sorokat\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr " -k \t\tA ^K a kurzor helyétõl a sor végéig vág\n"
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr " -l \t\tNem követi a szimbolikus kötéseket, helyette felülír\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tEgér engedélyezése\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr " -p \t\tA Pico lehetõ legjobb emulálása\n"
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr " -r [#oszlopok] \tOszlopok feltöltése az #oszlopok-ig\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [prog] \tAlternatív helyesírás-ellenõrzõ\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tAutomatikus mentés kilépéskor\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tCsak olvasható mód\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tNem tördeli a hosszú sorokat\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tNem mutatja a súgó ablakot\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tFelfüggesztés engedélyezése\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +SOR\t\tA SOR. számú sorban kezd\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU nano - %s verzió. (fordítva %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
@@ -681,225 +681,226 @@ msgstr ""
|
||||
"\n"
|
||||
" Fordítási paraméterek:"
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Megjelölés kezdete"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Megjelölés vége"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap az inptr->data-ból lett meghívva (\"%s\")\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data most = \"%s\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Ezután az adat ez lett = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr "A helyettesítõ érték módosítása"
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Az ideiglenes fájlt nem tudtam létrehozni: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr ""
|
||||
"A helyesírás-ellenõrzés nem sikerült: képtelen vagyok írni a temp fájlt!"
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "A helyesírás-ellenõrzés befejezése"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr "Helyesírás-ellenõrzés nem sikerült"
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr ""
|
||||
"A változásokat elmentsem (HA \"NEM\", AKKOR MINDEN MÓDOSÍTÁS ELVESZIK) ?"
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr "Kaptam egy SIGHUPot"
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "A felsõ ablakot nem tudom átméretezni"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "A felsõ ablakot nem tudom mozgatni"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "A szerkesztõ ablakot nem tudom átméretezni"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "A szerkesztõ ablakot nem tudom mozgatni"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Az alsó ablakot nem tudom átméretezni"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Az alsó ablakot nem tudom mozgatni"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr "A sorokat most már tudom nem sorkizárttá tenni"
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s engedélyezés/kikapcsolás"
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr "engedélyezve"
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr "kikapcsolva"
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
"NumLock hibát fedeztem fel. A Keypad rosszul mûködhet, ha a NumLock be van "
|
||||
"kapcsolva"
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Fõprogram: az ablakok beállítása\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Fõprogram: alsó ablak\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Fõprogram: fájl megnyitása\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Az Alt-O-%c billentyûket lenyomtad! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Az Alt-[-1-%c billentyûket lenyomtad! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Az Alt-[-2-%c billentyûket lenyomtad! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Az Alt-[-%c billentyûket lenyomtad! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "Az Alt-%c billentyûket lenyomtad! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Regexp keresés (kis/Nagy külön)%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Regexp keresés%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Keresés (kis/Nagy külön)%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Keresés%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
msgid " (to replace)"
|
||||
msgstr " (cserére)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Keresés megszakítva"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s...\" nem található"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr ""
|
||||
|
||||
#: search.c:343
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
#: search.c:348
|
||||
#, fuzzy, c-format
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d alkalommal fordult elõ, kicseréltem azokat"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
#, fuzzy
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "Egyszer fordult elõ, kicseréltem"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "A csere megszakítva"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr ""
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr "Hiba a cserénél: ismeretlen alkifejezés!"
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Cserélés erre [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Erre lesz cserélve"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Kérem a sor számát"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Megszakítva"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Gyerünk, adj meg egy hihetõbb értéket :-)"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Csak %d sorból áll a szöveg, ezért az utolsóra ugrottam"
|
||||
@@ -909,38 +910,38 @@ msgstr "Csak %d sorb
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x_from_start az xplus=%d-hoz visszatért: %d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "bevitel '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Új fájl"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr " Fájl: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
msgid " DIR: ..."
|
||||
msgstr " Könyvtár: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Módosítva"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Átmozgattam (%d, %d) a szerkesztõ-bufferben\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "A \"%s\" lenyomva van.\n"
|
||||
@@ -952,79 +953,79 @@ msgstr "A \"%s\" lenyomva van.\n"
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Ii"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Nn"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Mm"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Igen"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Mindet"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "Nem"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "%d(/%d). sor (%.0f%%) és a(z) %d(/%d). karakter (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "A fájlbuffer kiírása a standard hibakimenetre...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "A cutbuffer kiírása a standard hibakimenetre...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "A buffer kiírása a standard hibakimenetre...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr "A nano szövegszerkesztõ"
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr "verzió "
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr "A nano-t õk készítették el Neked:"
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr "Külön köszönet:"
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr "A Szabad Szoftver Alapítvány"
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr "Pavel Curtis, Zeyd Ben-Halim és Eric S. Raymond az ncurses-ért"
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr "és mindenkinek, akit kifelejtettünk volna..."
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr "Köszönjük, hogy a nano-t választottad!\n"
|
||||
|
||||
225
po/id.po
225
po/id.po
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nano-1.0\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2001-02-08 10:09+07:00\n"
|
||||
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
|
||||
"Language-Team: Indonesian <id@li.org>\n"
|
||||
@@ -32,7 +32,7 @@ msgstr "read_line: tidak di baris pertama dan sebelumnya adalah NULL"
|
||||
msgid "Read %d lines"
|
||||
msgstr "Membaca %d baris"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" tidak ditemukan"
|
||||
@@ -61,7 +61,7 @@ msgstr "Membaca File"
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "File untuk disisipkan [dari ./] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Dibatalkan"
|
||||
|
||||
@@ -109,7 +109,7 @@ msgstr "Namafile adalah %s"
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "File ada, DITIMPA ?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr "(lagi)"
|
||||
|
||||
@@ -408,7 +408,7 @@ msgid "Case Sens"
|
||||
msgstr "Case Sens"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
@@ -564,23 +564,23 @@ msgstr ""
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr "-v --view Mode Tampil (baca saja)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
|
||||
msgstr "-w --nowrap Jangan wrap baris panjang\n"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr "-x --nohelp Jangan tampilkan jendela bantuan\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr "-z --suspend Aktifkan suspend\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr "+LINE Mulai pada nomor baris LINE\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -588,92 +588,92 @@ msgstr ""
|
||||
"Pemakaian: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Option Arti\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr " -T [num]\tGanti lebar tabulasi manjadi num\n"
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr "-R Gunakan regular expression untuk mencari\n"
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr "-V Tampilkan informasi versi dan keluar\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr "-c Menampilkan posisi kursor secara konstan\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr "-h Tampilkan pesan ini\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr "-i Indent baris barus secara otomatis\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr "-k ^K melakukan cut dari kursor ke akhir baris\n"
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr "-l Jangan ikuti link simbolik, timpa\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr "-m Aktifkan mouse\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr "-p Emulasikan Pico sebaik mungkin\n"
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr "-r [#cols] Set fill col ke (wrap line di) #cols\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr "-s [prog] Aktifkan speller alternatif\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr "-t Autosave saat keluar, jangan minta konfirmasi.\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr "-v Mode Tampil (baca saja)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr "-w Jangan wrap baris panjang\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr "-x Jangan tampilkan jendela bantuan\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr "-z Aktifkan suspend\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr "+LINE Mulai pada nomor baris LINE\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr "GNU nano versi %s (compiled %s, %s)\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
@@ -681,223 +681,224 @@ msgstr ""
|
||||
"\n"
|
||||
"Option kompilasi:"
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr "Set Tanda"
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr "Unset Tanda"
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap dipanggil dengan inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data sekarang =\"%s\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Setelah, data= \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr "Edit pengganti"
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Tidak dapat membuat nama file sementara: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr "Spell checking gagal: tidak dapat menulis file temp!"
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Selesai memeriksa ejaan"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr "Spell checking gagal"
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?"
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr "Menerima SIGHUP"
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Tidak dapat menganti ukuran jendela atas"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Tidak dapat memindahkan jendela atas"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Tidak dapat mengganti ukuran jendela edit"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Tidak dapat memindah jendela edit"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Tidak dapat mengganti ukuran jendela bawah"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Tidak dapat memindah jendela bawah"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr "Sekarang dapat melakukan UnJustify"
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr "%s enable/disable"
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr "enabled"
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr "disabled"
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
"Glitch pada NumLock terdeteksi. Keypad akan tidak berfungsi dg tombol "
|
||||
"NumLock off"
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: menset jendela\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: jendela bawah\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: membuka file\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-O-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-[-1-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-[-2-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "Saya mendapat Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Pencarian case sensitif Regexp %s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Pencarian Regexp %s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Pencarian secara case sensitif%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Pencarian%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
msgid " (to replace)"
|
||||
msgstr " (ganti)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Pencarian dibatalkan"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s...\" tidak ditemukan"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "Pancarian diulangi dari awal"
|
||||
|
||||
#: search.c:343
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
#: search.c:348
|
||||
#, fuzzy, c-format
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "%d tempat terganti"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
#, fuzzy
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "Terganti 1 tempat"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Penggantian dibatalkan"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "Ganti kata ini?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr "Replace gagal: subekspresi tidak dikenal!"
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Ganti dengan [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Ganti dengan"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Masukkan nomor baris"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Dibatalkan"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Ayo, yang masuk akal"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Hanya %d baris tersedia, melompat ke baris akhir"
|
||||
@@ -907,38 +908,38 @@ msgstr "Hanya %d baris tersedia, melompat ke baris akhir"
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x_from_start untuk xplus=%d mengembalikan %d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "input '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Buffer baru"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr " File: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
msgid " DIR: ..."
|
||||
msgstr " DIR: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Dimodifikasi"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Pindah ke (%d, %d) dalam buffer edit\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Saya mendapat \"%s\"\n"
|
||||
@@ -950,80 +951,80 @@ msgstr "Saya mendapat \"%s\"\n"
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Yy"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Tt"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Ss"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr "Ya"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr "Semua"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Kirim buffer file ke stderr...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Kirim cutbuffer ke stderr...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Kirim buffer ke stderr...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr "Nano teks editor"
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr "versi "
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr "Dibuat untuk anda oleh:"
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr "Ucapan terima kasih khusus kepada:"
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr "The Free Software Foundation"
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurse"
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr "dan orang lain yang kami lupa...."
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr "Terima kasih telah menggunakan nano!\n"
|
||||
|
||||
|
||||
225
po/it.po
225
po/it.po
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0.8.7\n"
|
||||
"POT-Creation-Date: 2001-02-18 00:43-0500\n"
|
||||
"POT-Creation-Date: 2001-04-04 23:15-0400\n"
|
||||
"PO-Revision-Date: 2000-03-03 04:57+0100\n"
|
||||
"Last-Translator: Daniele Medri <madrid@linux.it>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -32,7 +32,7 @@ msgstr "read_line: no estamos en la primera l
|
||||
msgid "Read %d lines"
|
||||
msgstr "Leggi %d linee"
|
||||
|
||||
#: files.c:221 search.c:188
|
||||
#: files.c:221 search.c:193
|
||||
#, c-format
|
||||
msgid "\"%s\" not found"
|
||||
msgstr "\"%s\" non trovato"
|
||||
@@ -61,7 +61,7 @@ msgstr "Lettura file"
|
||||
msgid "File to insert [from ./] "
|
||||
msgstr "File da inserire [da ./] "
|
||||
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1446
|
||||
#: files.c:309 files.c:334 files.c:566 nano.c:1514
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancellato"
|
||||
|
||||
@@ -109,7 +109,7 @@ msgstr "Il nome file
|
||||
msgid "File exists, OVERWRITE ?"
|
||||
msgstr "File esistente, SOVRASCRIVERE?"
|
||||
|
||||
#: files.c:971
|
||||
#: files.c:977
|
||||
msgid "(more)"
|
||||
msgstr ""
|
||||
|
||||
@@ -412,7 +412,7 @@ msgid "Case Sens"
|
||||
msgstr "Case sens"
|
||||
|
||||
#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414
|
||||
#: global.c:417 winio.c:1061
|
||||
#: global.c:417 winio.c:1063
|
||||
msgid "Cancel"
|
||||
msgstr "Cancella"
|
||||
|
||||
@@ -550,23 +550,23 @@ msgstr ""
|
||||
msgid " -v \t\t--view\t\t\tView (read only) mode\n"
|
||||
msgstr " -v \t\t--view\t\t\tVisualizzazione (sola lettura)\n"
|
||||
|
||||
#: nano.c:399
|
||||
#: nano.c:400
|
||||
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\t--nowrap\t\tNon interrompere linee lunghe\n"
|
||||
|
||||
#: nano.c:401
|
||||
#: nano.c:403
|
||||
msgid " -x \t\t--nohelp\t\tDon't show help window\n"
|
||||
msgstr " -x \t\t--nohelp\t\tNon mostrare finestra aiuti\n"
|
||||
|
||||
#: nano.c:403
|
||||
#: nano.c:405
|
||||
msgid " -z \t\t--suspend\t\tEnable suspend\n"
|
||||
msgstr " -z \t\t--suspend\t\tAbilita sospensione\n"
|
||||
|
||||
#: nano.c:405
|
||||
#: nano.c:407
|
||||
msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
|
||||
msgstr " +LINE\t\t\t\t\tInizia alla linea numero\n"
|
||||
|
||||
#: nano.c:407
|
||||
#: nano.c:409
|
||||
msgid ""
|
||||
"Usage: nano [option] +LINE <file>\n"
|
||||
"\n"
|
||||
@@ -574,316 +574,317 @@ msgstr ""
|
||||
"Uso: nano [opzioni] +LINEA <file>\n"
|
||||
"\n"
|
||||
|
||||
#: nano.c:408
|
||||
#: nano.c:410
|
||||
msgid "Option\t\tMeaning\n"
|
||||
msgstr "Opzioni\t\tSignificato\n"
|
||||
|
||||
#: nano.c:409
|
||||
#: nano.c:411
|
||||
msgid " -T [num]\tSet width of a tab to num\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:410
|
||||
#: nano.c:412
|
||||
msgid " -R\t\tUse regular expressions for search\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:411
|
||||
#: nano.c:413
|
||||
msgid " -V \t\tPrint version information and exit\n"
|
||||
msgstr " -V \t\tStampa informazioni sulla versione ed esci\n"
|
||||
|
||||
#: nano.c:412
|
||||
#: nano.c:414
|
||||
msgid " -c \t\tConstantly show cursor position\n"
|
||||
msgstr " -c \t\tMostra sempre la posizione del cursore\n"
|
||||
|
||||
#: nano.c:413
|
||||
#: nano.c:415
|
||||
msgid " -h \t\tShow this message\n"
|
||||
msgstr " -h \t\tMostra questo messaggio\n"
|
||||
|
||||
#: nano.c:414
|
||||
#: nano.c:416
|
||||
msgid " -i \t\tAutomatically indent new lines\n"
|
||||
msgstr " -v \t\tIndentazione automatica nuove linee\n"
|
||||
|
||||
#: nano.c:416
|
||||
#: nano.c:418
|
||||
msgid " -k \t\tLet ^K cut from cursor to end of line\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:419
|
||||
#: nano.c:421
|
||||
msgid " -l \t\tDon't follow symbolic links, overwrite\n"
|
||||
msgstr " -l \t\tNon seguire i link simbolici, sovrascrivi\n"
|
||||
|
||||
#: nano.c:422
|
||||
#: nano.c:424
|
||||
msgid " -m \t\tEnable mouse\n"
|
||||
msgstr " -m \t\tAttiva mouse\n"
|
||||
|
||||
#: nano.c:425
|
||||
#: nano.c:427
|
||||
msgid " -p \t\tEmulate Pico as closely as possible\n"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:426
|
||||
#: nano.c:428
|
||||
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
|
||||
msgstr " -r [#cols] \tRiempimento colonne (interrompi linee a) #cols\n"
|
||||
|
||||
#: nano.c:428
|
||||
#: nano.c:430
|
||||
msgid " -s [prog] \tEnable alternate speller\n"
|
||||
msgstr " -s [prog] \tAttiva correttore alternativo\n"
|
||||
|
||||
#: nano.c:430
|
||||
#: nano.c:432
|
||||
msgid " -t \t\tAuto save on exit, don't prompt\n"
|
||||
msgstr " -t \t\tSalvataggio automatico in uscita senza avviso\n"
|
||||
|
||||
#: nano.c:431
|
||||
#: nano.c:433
|
||||
msgid " -v \t\tView (read only) mode\n"
|
||||
msgstr " -v \t\tVisualizza (sola lettura)\n"
|
||||
|
||||
#: nano.c:432
|
||||
#: nano.c:435
|
||||
msgid " -w \t\tDon't wrap long lines\n"
|
||||
msgstr " -w \t\tNon interrompere linee lunghe\n"
|
||||
|
||||
#: nano.c:433
|
||||
#: nano.c:437
|
||||
msgid " -x \t\tDon't show help window\n"
|
||||
msgstr " -x \t\tNon mostrare la finestra Aiuti\n"
|
||||
|
||||
#: nano.c:434
|
||||
#: nano.c:438
|
||||
msgid " -z \t\tEnable suspend\n"
|
||||
msgstr " -z \t\tAttiva sospensione\n"
|
||||
|
||||
#: nano.c:435
|
||||
#: nano.c:439
|
||||
msgid " +LINE\t\tStart at line number LINE\n"
|
||||
msgstr " +LINEA\t\tInizia alla LINEA numero\n"
|
||||
|
||||
#: nano.c:442
|
||||
#: nano.c:446
|
||||
#, c-format
|
||||
msgid " GNU nano version %s (compiled %s, %s)\n"
|
||||
msgstr " GNU nano versione %s (compilato %s, %s\n"
|
||||
|
||||
#: nano.c:445
|
||||
#: nano.c:449
|
||||
#, fuzzy
|
||||
msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org"
|
||||
msgstr "Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org\n"
|
||||
|
||||
#: nano.c:446
|
||||
#: nano.c:450
|
||||
msgid ""
|
||||
"\n"
|
||||
" Compiled options:"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:511
|
||||
#: nano.c:518
|
||||
msgid "Mark Set"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:516
|
||||
#: nano.c:523
|
||||
msgid "Mark UNset"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:957
|
||||
#: nano.c:1024
|
||||
#, c-format
|
||||
msgid "check_wrap called with inptr->data=\"%s\"\n"
|
||||
msgstr "check_wrap chiamata con inptr->data=\"%s\"\n"
|
||||
|
||||
#: nano.c:1008
|
||||
#: nano.c:1076
|
||||
#, c-format
|
||||
msgid "current->data now = \"%s\"\n"
|
||||
msgstr "current->data ora = \"%d\"\n"
|
||||
|
||||
#: nano.c:1060
|
||||
#: nano.c:1128
|
||||
#, c-format
|
||||
msgid "After, data = \"%s\"\n"
|
||||
msgstr "Dopo, data = \"%s\"\n"
|
||||
|
||||
#: nano.c:1162
|
||||
#: nano.c:1230
|
||||
msgid "Edit a replacement"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1393
|
||||
#: nano.c:1461
|
||||
#, c-format
|
||||
msgid "Could not create a temporary filename: %s"
|
||||
msgstr "Impossibile creare un nome file temporaneo: %s"
|
||||
|
||||
#: nano.c:1399
|
||||
#: nano.c:1467
|
||||
msgid "Spell checking failed: unable to write temp file!"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1411
|
||||
#: nano.c:1479
|
||||
msgid "Finished checking spelling"
|
||||
msgstr "Controllo ortografico terminato"
|
||||
|
||||
#: nano.c:1413
|
||||
#: nano.c:1481
|
||||
msgid "Spell checking failed"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1433
|
||||
#: nano.c:1501
|
||||
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
|
||||
msgstr ""
|
||||
"Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI "
|
||||
"AVVENUTI) ?"
|
||||
|
||||
#: nano.c:1529
|
||||
#: nano.c:1597
|
||||
msgid "Received SIGHUP"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:1592
|
||||
#: nano.c:1660
|
||||
msgid "Cannot resize top win"
|
||||
msgstr "Impossibile ridimensionare la finestra superiore"
|
||||
|
||||
#: nano.c:1594
|
||||
#: nano.c:1662
|
||||
msgid "Cannot move top win"
|
||||
msgstr "Impossibile spostare la finestra superiore"
|
||||
|
||||
#: nano.c:1596
|
||||
#: nano.c:1664
|
||||
msgid "Cannot resize edit win"
|
||||
msgstr "Impossibile ridimensionare la finestra di modifica"
|
||||
|
||||
#: nano.c:1598
|
||||
#: nano.c:1666
|
||||
msgid "Cannot move edit win"
|
||||
msgstr "Impossibile spostare finestra di modifica"
|
||||
|
||||
#: nano.c:1600
|
||||
#: nano.c:1668
|
||||
msgid "Cannot resize bottom win"
|
||||
msgstr "Impossibile ridimensionare la finestra inferiore"
|
||||
|
||||
#: nano.c:1602
|
||||
#: nano.c:1670
|
||||
msgid "Cannot move bottom win"
|
||||
msgstr "Impossibile spostare la finestra inferiore"
|
||||
|
||||
#: nano.c:1910
|
||||
#: nano.c:1978
|
||||
msgid "Can now UnJustify!"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2008
|
||||
#: nano.c:2076
|
||||
#, c-format
|
||||
msgid "%s enable/disable"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2023
|
||||
#: nano.c:2091
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2024
|
||||
#: nano.c:2092
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2076
|
||||
#: nano.c:2144
|
||||
msgid "NumLock glitch detected. Keypad will malfunction with NumLock off"
|
||||
msgstr ""
|
||||
|
||||
#: nano.c:2293
|
||||
#: nano.c:2366
|
||||
msgid "Main: set up windows\n"
|
||||
msgstr "Main: configura finestre\n"
|
||||
|
||||
#: nano.c:2300
|
||||
#: nano.c:2373
|
||||
msgid "Main: bottom win\n"
|
||||
msgstr "Main: finestra inferiore\n"
|
||||
|
||||
#: nano.c:2306
|
||||
#: nano.c:2379
|
||||
msgid "Main: open file\n"
|
||||
msgstr "Main: apri file\n"
|
||||
|
||||
#: nano.c:2358
|
||||
#: nano.c:2431
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-O-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2385
|
||||
#: nano.c:2458
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-1-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2418
|
||||
#: nano.c:2491
|
||||
#, fuzzy, c-format
|
||||
msgid "I got Alt-[-2-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2460
|
||||
#: nano.c:2533
|
||||
#, c-format
|
||||
msgid "I got Alt-[-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-[-%c! (%d)\n"
|
||||
|
||||
#: nano.c:2486
|
||||
#: nano.c:2559
|
||||
#, c-format
|
||||
msgid "I got Alt-%c! (%d)\n"
|
||||
msgstr "Premuto Alt-%c! (%d)\n"
|
||||
|
||||
#: search.c:118
|
||||
#: search.c:117
|
||||
#, fuzzy, c-format
|
||||
msgid "Case Sensitive Regexp Search%s%s"
|
||||
msgstr "Ricerca case sensitive%s%s"
|
||||
|
||||
#: search.c:120
|
||||
#: search.c:119
|
||||
#, fuzzy, c-format
|
||||
msgid "Regexp Search%s%s"
|
||||
msgstr "Ricerca%s%s"
|
||||
|
||||
#: search.c:122
|
||||
#: search.c:121
|
||||
#, fuzzy, c-format
|
||||
msgid "Case Sensitive Search%s%s"
|
||||
msgstr "Ricerca case sensitive%s%s"
|
||||
|
||||
#: search.c:124
|
||||
#: search.c:123
|
||||
#, fuzzy, c-format
|
||||
msgid "Search%s%s"
|
||||
msgstr "Ricerca%s%s"
|
||||
|
||||
#: search.c:127
|
||||
#: search.c:126
|
||||
#, fuzzy
|
||||
msgid " (to replace)"
|
||||
msgstr " (sostituisci)"
|
||||
|
||||
#: search.c:136 search.c:321
|
||||
#: search.c:135 search.c:326
|
||||
msgid "Search Cancelled"
|
||||
msgstr "Ricerca annullata"
|
||||
|
||||
#: search.c:194
|
||||
#: search.c:199
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s...\" not found"
|
||||
msgstr "\"%s\" non trovato"
|
||||
|
||||
#: search.c:243
|
||||
#: search.c:248
|
||||
msgid "Search Wrapped"
|
||||
msgstr "Ricerca interrotta"
|
||||
|
||||
#: search.c:343
|
||||
#, c-format
|
||||
msgid "Replaced %d occurences"
|
||||
#: search.c:348
|
||||
#, fuzzy, c-format
|
||||
msgid "Replaced %d occurrences"
|
||||
msgstr "Sostituite %d occorrenze"
|
||||
|
||||
#: search.c:345
|
||||
msgid "Replaced 1 occurence"
|
||||
#: search.c:350
|
||||
#, fuzzy
|
||||
msgid "Replaced 1 occurrence"
|
||||
msgstr "Sostituita 1 occorrenza"
|
||||
|
||||
#: search.c:483 search.c:587 search.c:603
|
||||
#: search.c:488 search.c:592 search.c:608
|
||||
msgid "Replace Cancelled"
|
||||
msgstr "Sostituzione annullata"
|
||||
|
||||
#: search.c:533
|
||||
#: search.c:538
|
||||
msgid "Replace this instance?"
|
||||
msgstr "Sostituisci questa istanza?"
|
||||
|
||||
#: search.c:545
|
||||
#: search.c:550
|
||||
msgid "Replace failed: unknown subexpression!"
|
||||
msgstr ""
|
||||
|
||||
#: search.c:628
|
||||
#: search.c:633
|
||||
#, c-format
|
||||
msgid "Replace with [%s]"
|
||||
msgstr "Sostituisci con [%s]"
|
||||
|
||||
#: search.c:632 search.c:636
|
||||
#: search.c:637 search.c:641
|
||||
msgid "Replace with"
|
||||
msgstr "Sostituisci con"
|
||||
|
||||
#. Ask for it
|
||||
#: search.c:671
|
||||
#: search.c:676
|
||||
msgid "Enter line number"
|
||||
msgstr "Inserire numero linea"
|
||||
|
||||
#: search.c:673
|
||||
#: search.c:678
|
||||
msgid "Aborted"
|
||||
msgstr "Operazione fallita"
|
||||
|
||||
#: search.c:693
|
||||
#: search.c:698
|
||||
msgid "Come on, be reasonable"
|
||||
msgstr "Avanti, sii ragionevole"
|
||||
|
||||
#: search.c:698
|
||||
#: search.c:703
|
||||
#, c-format
|
||||
msgid "Only %d lines available, skipping to last line"
|
||||
msgstr "Solo %d linee disponibili, vai all'ultima"
|
||||
@@ -893,39 +894,39 @@ msgstr "Solo %d linee disponibili, vai all'ultima"
|
||||
msgid "actual_x_from_start for xplus=%d returned %d\n"
|
||||
msgstr "actual_x per xplus=%d ha riportato %d\n"
|
||||
|
||||
#: winio.c:445
|
||||
#: winio.c:447
|
||||
#, c-format
|
||||
msgid "input '%c' (%d)\n"
|
||||
msgstr "input '%c' (%d)\n"
|
||||
|
||||
#: winio.c:487
|
||||
#: winio.c:489
|
||||
msgid "New Buffer"
|
||||
msgstr "Nuovo Buffer"
|
||||
|
||||
#: winio.c:491
|
||||
#: winio.c:493
|
||||
msgid " File: ..."
|
||||
msgstr "File: ..."
|
||||
|
||||
#: winio.c:493
|
||||
#: winio.c:495
|
||||
#, fuzzy
|
||||
msgid " DIR: ..."
|
||||
msgstr "File: ..."
|
||||
|
||||
#: winio.c:504
|
||||
#: winio.c:506
|
||||
msgid "Modified"
|
||||
msgstr "Modificato"
|
||||
|
||||
#: winio.c:956
|
||||
#: winio.c:958
|
||||
#, c-format
|
||||
msgid "Moved to (%d, %d) in edit buffer\n"
|
||||
msgstr "Mosso in (%d, %d) nel buffer di modifica\n"
|
||||
|
||||
#: winio.c:967
|
||||
#: winio.c:969
|
||||
#, c-format
|
||||
msgid "current->data = \"%s\"\n"
|
||||
msgstr "current->data = \"%s\"\n"
|
||||
|
||||
#: winio.c:1012
|
||||
#: winio.c:1014
|
||||
#, c-format
|
||||
msgid "I got \"%s\"\n"
|
||||
msgstr "Premuto \"%s\"\n"
|
||||
@@ -937,80 +938,80 @@ msgstr "Premuto \"%s\"\n"
|
||||
#. Yes, no and all are strings of any length. Each string consists of
|
||||
#. all characters accepted as a valid character for that value.
|
||||
#. The first value will be the one displayed in the shortcuts.
|
||||
#: winio.c:1035
|
||||
#: winio.c:1037
|
||||
msgid "Yy"
|
||||
msgstr "Ss"
|
||||
|
||||
#: winio.c:1036
|
||||
#: winio.c:1038
|
||||
msgid "Nn"
|
||||
msgstr "Nn"
|
||||
|
||||
#: winio.c:1037
|
||||
#: winio.c:1039
|
||||
msgid "Aa"
|
||||
msgstr "Tt"
|
||||
|
||||
#: winio.c:1050
|
||||
#: winio.c:1052
|
||||
msgid "Yes"
|
||||
msgstr " Sì"
|
||||
|
||||
#: winio.c:1054
|
||||
#: winio.c:1056
|
||||
msgid "All"
|
||||
msgstr " Tutti"
|
||||
|
||||
#: winio.c:1059
|
||||
#: winio.c:1061
|
||||
msgid "No"
|
||||
msgstr " No"
|
||||
|
||||
#: winio.c:1202
|
||||
#: winio.c:1204
|
||||
#, c-format
|
||||
msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
|
||||
|
||||
#: winio.c:1206
|
||||
#: winio.c:1208
|
||||
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
|
||||
msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)"
|
||||
|
||||
#: winio.c:1336
|
||||
#: winio.c:1338
|
||||
msgid "Dumping file buffer to stderr...\n"
|
||||
msgstr "Copia file buffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1338
|
||||
#: winio.c:1340
|
||||
msgid "Dumping cutbuffer to stderr...\n"
|
||||
msgstr "Copia cutbuffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1340
|
||||
#: winio.c:1342
|
||||
msgid "Dumping a buffer to stderr...\n"
|
||||
msgstr "Copia un buffer sullo stderr...\n"
|
||||
|
||||
#: winio.c:1415
|
||||
#: winio.c:1417
|
||||
msgid "The nano text editor"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1416
|
||||
#: winio.c:1418
|
||||
msgid "version "
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1417
|
||||
#: winio.c:1419
|
||||
msgid "Brought to you by:"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1418
|
||||
#: winio.c:1420
|
||||
msgid "Special thanks to:"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1419
|
||||
#: winio.c:1421
|
||||
msgid "The Free Software Foundation"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1420
|
||||
#: winio.c:1422
|
||||
msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses"
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1421
|
||||
#: winio.c:1423
|
||||
msgid "and anyone else we forgot..."
|
||||
msgstr ""
|
||||
|
||||
#: winio.c:1422
|
||||
#: winio.c:1424
|
||||
msgid "Thank you for using nano!\n"
|
||||
msgstr ""
|
||||
|
||||
|
||||
4
proto.h
4
proto.h
@@ -130,7 +130,7 @@ void *nrealloc(void *ptr, size_t howmuch);
|
||||
void die(char *msg, ...);
|
||||
void new_file(void);
|
||||
void new_magicline(void);
|
||||
void splice_node(filestruct *begin, filestruct *new, filestruct *end);
|
||||
void splice_node(filestruct *begin, filestruct *newnode, filestruct *end);
|
||||
void null_at(char *data, int index);
|
||||
void page_up_center(void);
|
||||
void blank_edit(void);
|
||||
@@ -152,7 +152,7 @@ int do_home(void), do_end(void), total_refresh(void), do_mark(void);
|
||||
int do_delete(void), do_backspace(void), do_tab(void), do_justify(void);
|
||||
int do_first_line(void), do_last_line(void);
|
||||
int do_replace(void), do_help(void), do_enter_void(void);
|
||||
int keypad_on(WINDOW * win, int new);
|
||||
int keypad_on(WINDOW * win, int newval);
|
||||
|
||||
#ifndef DISABLE_BROWSER
|
||||
char *do_browser(char *path);
|
||||
|
||||
17
search.c
17
search.c
@@ -44,7 +44,7 @@ void regexp_init(const char *regexp)
|
||||
SET(REGEXP_COMPILED);
|
||||
}
|
||||
|
||||
void regexp_cleanup()
|
||||
void regexp_cleanup(void)
|
||||
{
|
||||
UNSET(REGEXP_COMPILED);
|
||||
regfree(&search_regexp);
|
||||
@@ -81,7 +81,6 @@ int search_init(int replacing)
|
||||
buf = nmalloc(strlen(last_search) + 5);
|
||||
buf[0] = 0;
|
||||
|
||||
|
||||
/* Okay, fun time. backupstring is our holder for what is being
|
||||
returned from the statusq call. Using answer for this would be tricky.
|
||||
Here, if we're using PICO_MODE, we only want nano to put the
|
||||
@@ -140,8 +139,14 @@ int search_init(int replacing)
|
||||
return -1;
|
||||
} else if (i == -2) { /* Same string */
|
||||
#ifdef HAVE_REGEX_H
|
||||
if (ISSET(USE_REGEXP))
|
||||
regexp_init(answer);
|
||||
if (ISSET(USE_REGEXP)) {
|
||||
|
||||
/* If we're in pico mode, answer is "", use last_search! */
|
||||
if (ISSET(PICO_MODE))
|
||||
regexp_init(last_search);
|
||||
else
|
||||
regexp_init(answer);
|
||||
}
|
||||
#else
|
||||
;
|
||||
#endif
|
||||
@@ -340,9 +345,9 @@ int do_search(void)
|
||||
void print_replaced(int num)
|
||||
{
|
||||
if (num > 1)
|
||||
statusbar(_("Replaced %d occurences"), num);
|
||||
statusbar(_("Replaced %d occurrences"), num);
|
||||
else if (num == 1)
|
||||
statusbar(_("Replaced 1 occurence"));
|
||||
statusbar(_("Replaced 1 occurrence"));
|
||||
}
|
||||
|
||||
void replace_abort(void)
|
||||
|
||||
16
winio.c
16
winio.c
@@ -310,6 +310,7 @@ int nanogetstr(int allowtabs, char *buf, char *def, shortcut s[], int slen,
|
||||
nanoget_repaint(buf, inputbuf, x);
|
||||
break;
|
||||
case KEY_RIGHT:
|
||||
case NANO_FORWARD_KEY:
|
||||
|
||||
if (x < xend)
|
||||
x++;
|
||||
@@ -362,6 +363,7 @@ int nanogetstr(int allowtabs, char *buf, char *def, shortcut s[], int slen,
|
||||
break;
|
||||
#endif
|
||||
case KEY_LEFT:
|
||||
case NANO_BACK_KEY:
|
||||
if (x > strlen(buf))
|
||||
x--;
|
||||
wmove(bottomwin, 0, x);
|
||||
@@ -704,7 +706,7 @@ void edit_add(filestruct * fileptr, int yval, int start, int virt_cur_x,
|
||||
/*
|
||||
* we're updating the line that was first marked
|
||||
* but we're not currently on it. So we want to
|
||||
* figur out which half to invert based on our
|
||||
* figure out which half to invert based on our
|
||||
* relative line numbers.
|
||||
*
|
||||
* i.e. If we're above the "beginbuf" line, we want to
|
||||
@@ -738,7 +740,7 @@ void edit_add(filestruct * fileptr, int yval, int start, int virt_cur_x,
|
||||
wattroff(edit, A_REVERSE);
|
||||
|
||||
} else if (fileptr == current) {
|
||||
/* we're on the cursors line, but it's not the first
|
||||
/* we're on the cursor's line, but it's not the first
|
||||
* one we marked. Similar to the previous logic. */
|
||||
int this_page_start = get_page_start_virtual(this_page),
|
||||
this_page_end = get_page_end_virtual(this_page);
|
||||
@@ -1406,7 +1408,7 @@ void do_replace_highlight(int highlight_flag, char *word)
|
||||
}
|
||||
|
||||
#ifdef NANO_EXTRA
|
||||
#define CREDIT_LEN 45
|
||||
#define CREDIT_LEN 47
|
||||
void do_credits(void)
|
||||
{
|
||||
int i, j = 0, k, place = 0, start_x;
|
||||
@@ -1443,6 +1445,8 @@ void do_credits(void)
|
||||
"Erik Andersen",
|
||||
"Big Gaute",
|
||||
"Joshua Jensen",
|
||||
"Ryan Krebs",
|
||||
"Albert Chin",
|
||||
"",
|
||||
specialthx,
|
||||
"Plattsburgh State University",
|
||||
@@ -1504,7 +1508,7 @@ void do_credits(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
int keypad_on(WINDOW * win, int new)
|
||||
int keypad_on(WINDOW * win, int newval)
|
||||
{
|
||||
|
||||
/* This is taken right from aumix. Don't sue me */
|
||||
@@ -1512,10 +1516,10 @@ int keypad_on(WINDOW * win, int new)
|
||||
int old;
|
||||
|
||||
old = win->_use_keypad;
|
||||
keypad(win, new);
|
||||
keypad(win, newval);
|
||||
return old;
|
||||
#else
|
||||
keypad(win, new);
|
||||
keypad(win, newval);
|
||||
return 1;
|
||||
#endif /* HAVE_USEKEYPAD */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user