New tabsize code, Im very excited

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@157 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2000-08-03 22:51:21 +00:00
parent ed02216378
commit 6d690a39dc
23 changed files with 1113 additions and 1101 deletions

View File

@ -2,6 +2,8 @@ CVS code
- Changed edit_update call to take arguments TOP, CENTER or BOTTOM. - Changed edit_update call to take arguments TOP, CENTER or BOTTOM.
Affects many many functions. Removed functions edit_update_top and Affects many many functions. Removed functions edit_update_top and
edit_update_bot. edit_update_bot.
- Added global variable tabsize, we no longer screw with the curses
library in order to implement -T (suggested by Christian Weisgerber).
- configure.in: - configure.in:
- Finally fixed check for slang to report "no" if not called - Finally fixed check for slang to report "no" if not called
with --with-slang or --without-slang with --with-slang or --without-slang

View File

@ -133,6 +133,8 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar TAR = tar
GZIP_ENV = --best GZIP_ENV = --best
DEP_FILES = .deps/cut.P .deps/files.P .deps/global.P .deps/move.P \
.deps/nano.P .deps/search.P .deps/utils.P .deps/winio.P
SOURCES = $(nano_SOURCES) SOURCES = $(nano_SOURCES)
OBJECTS = $(nano_OBJECTS) OBJECTS = $(nano_OBJECTS)
@ -140,9 +142,9 @@ all: all-redirect
.SUFFIXES: .SUFFIXES:
.SUFFIXES: .S .c .o .s .SUFFIXES: .S .c .o .s
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \ cd $(top_builddir) \
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
@ -207,9 +209,6 @@ uninstall-binPROGRAMS:
rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
done done
.c.o:
$(COMPILE) -c $<
.s.o: .s.o:
$(COMPILE) -c $< $(COMPILE) -c $<
@ -396,6 +395,11 @@ distdir: $(DISTFILES)
-rm -rf $(distdir) -rm -rf $(distdir)
mkdir $(distdir) mkdir $(distdir)
-chmod 777 $(distdir) -chmod 777 $(distdir)
here=`cd $(top_builddir) && pwd`; \
top_distdir=`cd $(distdir) && pwd`; \
distdir=`cd $(distdir) && pwd`; \
cd $(top_srcdir) \
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
@for file in $(DISTFILES); do \ @for file in $(DISTFILES); do \
d=$(srcdir); \ d=$(srcdir); \
if test -d $$d/$$file; then \ if test -d $$d/$$file; then \
@ -416,6 +420,38 @@ distdir: $(DISTFILES)
|| exit 1; \ || exit 1; \
fi; \ fi; \
done done
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
-include $(DEP_FILES)
mostlyclean-depend:
clean-depend:
distclean-depend:
-rm -rf .deps
maintainer-clean-depend:
%.o: %.c
@echo '$(COMPILE) -c $<'; \
$(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
@-cp .deps/$(*F).pp .deps/$(*F).P; \
tr ' ' '\012' < .deps/$(*F).pp \
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
>> .deps/$(*F).P; \
rm .deps/$(*F).pp
%.lo: %.c
@echo '$(LTCOMPILE) -c $<'; \
$(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
@-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
< .deps/$(*F).pp > .deps/$(*F).P; \
tr ' ' '\012' < .deps/$(*F).pp \
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
>> .deps/$(*F).P; \
rm -f .deps/$(*F).pp
info-am: info-am:
info: info-recursive info: info-recursive
dvi-am: dvi-am:
@ -457,25 +493,27 @@ distclean-generic:
maintainer-clean-generic: maintainer-clean-generic:
mostlyclean-am: mostlyclean-hdr mostlyclean-binPROGRAMS \ mostlyclean-am: mostlyclean-hdr mostlyclean-binPROGRAMS \
mostlyclean-compile mostlyclean-tags \ mostlyclean-compile mostlyclean-tags mostlyclean-depend \
mostlyclean-generic mostlyclean-generic
mostlyclean: mostlyclean-recursive mostlyclean: mostlyclean-recursive
clean-am: clean-hdr clean-binPROGRAMS clean-compile clean-tags \ clean-am: clean-hdr clean-binPROGRAMS clean-compile clean-tags \
clean-generic mostlyclean-am clean-depend clean-generic mostlyclean-am
clean: clean-recursive clean: clean-recursive
distclean-am: distclean-hdr distclean-binPROGRAMS distclean-compile \ distclean-am: distclean-hdr distclean-binPROGRAMS distclean-compile \
distclean-tags distclean-generic clean-am distclean-tags distclean-depend distclean-generic \
clean-am
distclean: distclean-recursive distclean: distclean-recursive
-rm -f config.status -rm -f config.status
maintainer-clean-am: maintainer-clean-hdr maintainer-clean-binPROGRAMS \ maintainer-clean-am: maintainer-clean-hdr maintainer-clean-binPROGRAMS \
maintainer-clean-compile maintainer-clean-tags \ maintainer-clean-compile maintainer-clean-tags \
maintainer-clean-generic distclean-am maintainer-clean-depend maintainer-clean-generic \
distclean-am
@echo "This command is intended for maintainers to use;" @echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild." @echo "it deletes files that may require special tools to rebuild."
@ -493,10 +531,12 @@ uninstalldirs-recursive all-recursive check-recursive \
installcheck-recursive info-recursive dvi-recursive \ installcheck-recursive info-recursive dvi-recursive \
mostlyclean-recursive distclean-recursive clean-recursive \ mostlyclean-recursive distclean-recursive clean-recursive \
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ distclean-tags clean-tags maintainer-clean-tags distdir \
dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \ mostlyclean-depend distclean-depend clean-depend \
install-exec-am install-exec install-data-am install-data install-am \ maintainer-clean-depend info-am info dvi-am dvi check check-am \
install uninstall-am uninstall all-redirect all-am all installdirs-am \ installcheck-am installcheck all-recursive-am install-exec-am \
install-exec install-data-am install-data install-am install \
uninstall-am uninstall all-redirect all-am all installdirs-am \
installdirs mostlyclean-generic distclean-generic clean-generic \ installdirs mostlyclean-generic distclean-generic clean-generic \
maintainer-clean-generic clean mostlyclean distclean maintainer-clean maintainer-clean-generic clean mostlyclean distclean maintainer-clean

View File

@ -22,5 +22,3 @@
/* Define to use the slang wrappers for curses instead of native curses */ /* Define to use the slang wrappers for curses instead of native curses */
#undef USE_SLANG #undef USE_SLANG
/* Define this if you have a behaving TABSIZE global in your curses lib */
#undef HAVE_TABSIZE

View File

@ -76,9 +76,6 @@
/* Define to use the slang wrappers for curses instead of native curses */ /* Define to use the slang wrappers for curses instead of native curses */
#undef USE_SLANG #undef USE_SLANG
/* Define this if you have a behaving TABSIZE global in your curses lib */
#undef HAVE_TABSIZE
/* Define if you have the __argz_count function. */ /* Define if you have the __argz_count function. */
#undef HAVE___ARGZ_COUNT #undef HAVE___ARGZ_COUNT

196
configure vendored
View File

@ -2098,10 +2098,6 @@ fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses
cat >> confdefs.h <<\EOF
#define HAVE_TABSIZE 1
EOF
else else
echo "$ac_t""no" 1>&6 echo "$ac_t""no" 1>&6
fi fi
@ -2111,7 +2107,7 @@ fi
if eval "test x$CURSES_LIB_NAME = x" if eval "test x$CURSES_LIB_NAME = x"
then then
echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6 echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6
echo "configure:2115: checking for tgetent in -lcurses" >&5 echo "configure:2111: checking for tgetent in -lcurses" >&5
ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'` ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@ -2119,7 +2115,7 @@ else
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
LIBS="-lcurses $LIBS" LIBS="-lcurses $LIBS"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2123 "configure" #line 2119 "configure"
#include "confdefs.h" #include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
@ -2130,7 +2126,7 @@ int main() {
tgetent() tgetent()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2134: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_lib_$ac_lib_var=yes" eval "ac_cv_lib_$ac_lib_var=yes"
else else
@ -2155,7 +2151,7 @@ fi
if eval "test x$CURSES_LIB_NAME = x" if eval "test x$CURSES_LIB_NAME = x"
then then
echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6 echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6
echo "configure:2159: checking for tgetent in -ltermcap" >&5 echo "configure:2155: checking for tgetent in -ltermcap" >&5
ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'` ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@ -2163,7 +2159,7 @@ else
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
LIBS="-ltermcap $LIBS" LIBS="-ltermcap $LIBS"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2167 "configure" #line 2163 "configure"
#include "confdefs.h" #include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
@ -2174,7 +2170,7 @@ int main() {
tgetent() tgetent()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2178: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2174: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_lib_$ac_lib_var=yes" eval "ac_cv_lib_$ac_lib_var=yes"
else else
@ -2208,7 +2204,7 @@ fi
echo $ac_n "checking for wresize in -l$CURSES_LIB_NAME""... $ac_c" 1>&6 echo $ac_n "checking for wresize in -l$CURSES_LIB_NAME""... $ac_c" 1>&6
echo "configure:2212: checking for wresize in -l$CURSES_LIB_NAME" >&5 echo "configure:2208: checking for wresize in -l$CURSES_LIB_NAME" >&5
ac_lib_var=`echo $CURSES_LIB_NAME'_'wresize | sed 'y%./+-%__p_%'` ac_lib_var=`echo $CURSES_LIB_NAME'_'wresize | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@ -2216,7 +2212,7 @@ else
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
LIBS="-l$CURSES_LIB_NAME $LIBS" LIBS="-l$CURSES_LIB_NAME $LIBS"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2220 "configure" #line 2216 "configure"
#include "confdefs.h" #include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
@ -2227,7 +2223,7 @@ int main() {
wresize() wresize()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2231: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2227: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_lib_$ac_lib_var=yes" eval "ac_cv_lib_$ac_lib_var=yes"
else else
@ -2275,7 +2271,7 @@ fi
# Extract the first word of "ranlib", so it can be a program name with args. # Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2 set dummy ranlib; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:2279: checking for $ac_word" >&5 echo "configure:2275: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -2303,12 +2299,12 @@ else
fi fi
echo $ac_n "checking for working const""... $ac_c" 1>&6 echo $ac_n "checking for working const""... $ac_c" 1>&6
echo "configure:2307: checking for working const" >&5 echo "configure:2303: checking for working const" >&5
if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2312 "configure" #line 2308 "configure"
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
@ -2357,7 +2353,7 @@ ccp = (char const *const *) p;
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2361: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:2357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest* rm -rf conftest*
ac_cv_c_const=yes ac_cv_c_const=yes
else else
@ -2378,21 +2374,21 @@ EOF
fi fi
echo $ac_n "checking for inline""... $ac_c" 1>&6 echo $ac_n "checking for inline""... $ac_c" 1>&6
echo "configure:2382: checking for inline" >&5 echo "configure:2378: checking for inline" >&5
if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
ac_cv_c_inline=no ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do for ac_kw in inline __inline__ __inline; do
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2389 "configure" #line 2385 "configure"
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
} int $ac_kw foo() { } int $ac_kw foo() {
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2396: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then if { (eval echo configure:2392: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest* rm -rf conftest*
ac_cv_c_inline=$ac_kw; break ac_cv_c_inline=$ac_kw; break
else else
@ -2418,12 +2414,12 @@ EOF
esac esac
echo $ac_n "checking for off_t""... $ac_c" 1>&6 echo $ac_n "checking for off_t""... $ac_c" 1>&6
echo "configure:2422: checking for off_t" >&5 echo "configure:2418: checking for off_t" >&5
if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2427 "configure" #line 2423 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <sys/types.h> #include <sys/types.h>
#if STDC_HEADERS #if STDC_HEADERS
@ -2451,12 +2447,12 @@ EOF
fi fi
echo $ac_n "checking for size_t""... $ac_c" 1>&6 echo $ac_n "checking for size_t""... $ac_c" 1>&6
echo "configure:2455: checking for size_t" >&5 echo "configure:2451: checking for size_t" >&5
if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2460 "configure" #line 2456 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <sys/types.h> #include <sys/types.h>
#if STDC_HEADERS #if STDC_HEADERS
@ -2486,19 +2482,19 @@ fi
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless! # for constant arguments. Useless!
echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
echo "configure:2490: checking for working alloca.h" >&5 echo "configure:2486: checking for working alloca.h" >&5
if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2495 "configure" #line 2491 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <alloca.h> #include <alloca.h>
int main() { int main() {
void *p = alloca(2 * sizeof(int)); void *p = alloca(2 * sizeof(int));
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2502: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2498: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
ac_cv_header_alloca_h=yes ac_cv_header_alloca_h=yes
else else
@ -2519,12 +2515,12 @@ EOF
fi fi
echo $ac_n "checking for alloca""... $ac_c" 1>&6 echo $ac_n "checking for alloca""... $ac_c" 1>&6
echo "configure:2523: checking for alloca" >&5 echo "configure:2519: checking for alloca" >&5
if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2528 "configure" #line 2524 "configure"
#include "confdefs.h" #include "confdefs.h"
#ifdef __GNUC__ #ifdef __GNUC__
@ -2552,7 +2548,7 @@ int main() {
char *p = (char *) alloca(1); char *p = (char *) alloca(1);
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
ac_cv_func_alloca_works=yes ac_cv_func_alloca_works=yes
else else
@ -2584,12 +2580,12 @@ EOF
echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
echo "configure:2588: checking whether alloca needs Cray hooks" >&5 echo "configure:2584: checking whether alloca needs Cray hooks" >&5
if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2593 "configure" #line 2589 "configure"
#include "confdefs.h" #include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2) #if defined(CRAY) && ! defined(CRAY2)
webecray webecray
@ -2614,12 +2610,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6
if test $ac_cv_os_cray = yes; then if test $ac_cv_os_cray = yes; then
for ac_func in _getb67 GETB67 getb67; do for ac_func in _getb67 GETB67 getb67; do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:2618: checking for $ac_func" >&5 echo "configure:2614: checking for $ac_func" >&5
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2623 "configure" #line 2619 "configure"
#include "confdefs.h" #include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes, /* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */ which can conflict with char $ac_func(); below. */
@ -2642,7 +2638,7 @@ $ac_func();
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2646: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2642: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_func_$ac_func=yes" eval "ac_cv_func_$ac_func=yes"
else else
@ -2669,7 +2665,7 @@ done
fi fi
echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
echo "configure:2673: checking stack direction for C alloca" >&5 echo "configure:2669: checking stack direction for C alloca" >&5
if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -2677,7 +2673,7 @@ else
ac_cv_c_stack_direction=0 ac_cv_c_stack_direction=0
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2681 "configure" #line 2677 "configure"
#include "confdefs.h" #include "confdefs.h"
find_stack_direction () find_stack_direction ()
{ {
@ -2696,7 +2692,7 @@ main ()
exit (find_stack_direction() < 0); exit (find_stack_direction() < 0);
} }
EOF EOF
if { (eval echo configure:2700: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null if { (eval echo configure:2696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
then then
ac_cv_c_stack_direction=1 ac_cv_c_stack_direction=1
else else
@ -2721,17 +2717,17 @@ for ac_hdr in unistd.h
do do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
echo "configure:2725: checking for $ac_hdr" >&5 echo "configure:2721: checking for $ac_hdr" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2730 "configure" #line 2726 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <$ac_hdr> #include <$ac_hdr>
EOF EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:2735: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } { (eval echo configure:2731: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then if test -z "$ac_err"; then
rm -rf conftest* rm -rf conftest*
@ -2760,12 +2756,12 @@ done
for ac_func in getpagesize for ac_func in getpagesize
do do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:2764: checking for $ac_func" >&5 echo "configure:2760: checking for $ac_func" >&5
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2769 "configure" #line 2765 "configure"
#include "confdefs.h" #include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes, /* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */ which can conflict with char $ac_func(); below. */
@ -2788,7 +2784,7 @@ $ac_func();
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:2792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:2788: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_func_$ac_func=yes" eval "ac_cv_func_$ac_func=yes"
else else
@ -2813,7 +2809,7 @@ fi
done done
echo $ac_n "checking for working mmap""... $ac_c" 1>&6 echo $ac_n "checking for working mmap""... $ac_c" 1>&6
echo "configure:2817: checking for working mmap" >&5 echo "configure:2813: checking for working mmap" >&5
if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -2821,7 +2817,7 @@ else
ac_cv_func_mmap_fixed_mapped=no ac_cv_func_mmap_fixed_mapped=no
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 2825 "configure" #line 2821 "configure"
#include "confdefs.h" #include "confdefs.h"
/* Thanks to Mike Haertel and Jim Avera for this test. /* Thanks to Mike Haertel and Jim Avera for this test.
@ -2964,7 +2960,7 @@ main()
} }
EOF EOF
if { (eval echo configure:2968: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null if { (eval echo configure:2964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
then then
ac_cv_func_mmap_fixed_mapped=yes ac_cv_func_mmap_fixed_mapped=yes
else else
@ -2992,17 +2988,17 @@ unistd.h sys/param.h
do do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
echo "configure:2996: checking for $ac_hdr" >&5 echo "configure:2992: checking for $ac_hdr" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3001 "configure" #line 2997 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <$ac_hdr> #include <$ac_hdr>
EOF EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:3006: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } { (eval echo configure:3002: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then if test -z "$ac_err"; then
rm -rf conftest* rm -rf conftest*
@ -3032,12 +3028,12 @@ done
strdup __argz_count __argz_stringify __argz_next strdup __argz_count __argz_stringify __argz_next
do do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:3036: checking for $ac_func" >&5 echo "configure:3032: checking for $ac_func" >&5
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3041 "configure" #line 3037 "configure"
#include "confdefs.h" #include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes, /* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */ which can conflict with char $ac_func(); below. */
@ -3060,7 +3056,7 @@ $ac_func();
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3064: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_func_$ac_func=yes" eval "ac_cv_func_$ac_func=yes"
else else
@ -3089,12 +3085,12 @@ done
for ac_func in stpcpy for ac_func in stpcpy
do do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:3093: checking for $ac_func" >&5 echo "configure:3089: checking for $ac_func" >&5
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3098 "configure" #line 3094 "configure"
#include "confdefs.h" #include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes, /* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */ which can conflict with char $ac_func(); below. */
@ -3117,7 +3113,7 @@ $ac_func();
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3121: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3117: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_func_$ac_func=yes" eval "ac_cv_func_$ac_func=yes"
else else
@ -3151,19 +3147,19 @@ EOF
if test $ac_cv_header_locale_h = yes; then if test $ac_cv_header_locale_h = yes; then
echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
echo "configure:3155: checking for LC_MESSAGES" >&5 echo "configure:3151: checking for LC_MESSAGES" >&5
if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3160 "configure" #line 3156 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <locale.h> #include <locale.h>
int main() { int main() {
return LC_MESSAGES return LC_MESSAGES
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3167: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3163: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
am_cv_val_LC_MESSAGES=yes am_cv_val_LC_MESSAGES=yes
else else
@ -3184,7 +3180,7 @@ EOF
fi fi
fi fi
echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6
echo "configure:3188: checking whether NLS is requested" >&5 echo "configure:3184: checking whether NLS is requested" >&5
# Check whether --enable-nls or --disable-nls was given. # Check whether --enable-nls or --disable-nls was given.
if test "${enable_nls+set}" = set; then if test "${enable_nls+set}" = set; then
enableval="$enable_nls" enableval="$enable_nls"
@ -3204,7 +3200,7 @@ fi
EOF EOF
echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6
echo "configure:3208: checking whether included gettext is requested" >&5 echo "configure:3204: checking whether included gettext is requested" >&5
# Check whether --with-included-gettext or --without-included-gettext was given. # Check whether --with-included-gettext or --without-included-gettext was given.
if test "${with_included_gettext+set}" = set; then if test "${with_included_gettext+set}" = set; then
withval="$with_included_gettext" withval="$with_included_gettext"
@ -3223,17 +3219,17 @@ fi
ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6
echo "configure:3227: checking for libintl.h" >&5 echo "configure:3223: checking for libintl.h" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3232 "configure" #line 3228 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <libintl.h> #include <libintl.h>
EOF EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:3237: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } { (eval echo configure:3233: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then if test -z "$ac_err"; then
rm -rf conftest* rm -rf conftest*
@ -3250,19 +3246,19 @@ fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6
echo "configure:3254: checking for gettext in libc" >&5 echo "configure:3250: checking for gettext in libc" >&5
if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3259 "configure" #line 3255 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <libintl.h> #include <libintl.h>
int main() { int main() {
return (int) gettext ("") return (int) gettext ("")
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3266: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
gt_cv_func_gettext_libc=yes gt_cv_func_gettext_libc=yes
else else
@ -3278,7 +3274,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6
if test "$gt_cv_func_gettext_libc" != "yes"; then if test "$gt_cv_func_gettext_libc" != "yes"; then
echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6
echo "configure:3282: checking for bindtextdomain in -lintl" >&5 echo "configure:3278: checking for bindtextdomain in -lintl" >&5
ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@ -3286,7 +3282,7 @@ else
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
LIBS="-lintl $LIBS" LIBS="-lintl $LIBS"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3290 "configure" #line 3286 "configure"
#include "confdefs.h" #include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
@ -3297,7 +3293,7 @@ int main() {
bindtextdomain() bindtextdomain()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3297: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_lib_$ac_lib_var=yes" eval "ac_cv_lib_$ac_lib_var=yes"
else else
@ -3313,12 +3309,12 @@ fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6
echo "configure:3317: checking for gettext in libintl" >&5 echo "configure:3313: checking for gettext in libintl" >&5
if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6 echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6
echo "configure:3322: checking for gettext in -lintl" >&5 echo "configure:3318: checking for gettext in -lintl" >&5
ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'` ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@ -3326,7 +3322,7 @@ else
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
LIBS="-lintl $LIBS" LIBS="-lintl $LIBS"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3330 "configure" #line 3326 "configure"
#include "confdefs.h" #include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */ /* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2 /* We use char because int might match the return type of a gcc2
@ -3337,7 +3333,7 @@ int main() {
gettext() gettext()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3337: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_lib_$ac_lib_var=yes" eval "ac_cv_lib_$ac_lib_var=yes"
else else
@ -3376,7 +3372,7 @@ EOF
# Extract the first word of "msgfmt", so it can be a program name with args. # Extract the first word of "msgfmt", so it can be a program name with args.
set dummy msgfmt; ac_word=$2 set dummy msgfmt; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3380: checking for $ac_word" >&5 echo "configure:3376: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3410,12 +3406,12 @@ fi
for ac_func in dcgettext for ac_func in dcgettext
do do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:3414: checking for $ac_func" >&5 echo "configure:3410: checking for $ac_func" >&5
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3419 "configure" #line 3415 "configure"
#include "confdefs.h" #include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes, /* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */ which can conflict with char $ac_func(); below. */
@ -3438,7 +3434,7 @@ $ac_func();
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_func_$ac_func=yes" eval "ac_cv_func_$ac_func=yes"
else else
@ -3465,7 +3461,7 @@ done
# Extract the first word of "gmsgfmt", so it can be a program name with args. # Extract the first word of "gmsgfmt", so it can be a program name with args.
set dummy gmsgfmt; ac_word=$2 set dummy gmsgfmt; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3469: checking for $ac_word" >&5 echo "configure:3465: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3501,7 +3497,7 @@ fi
# Extract the first word of "xgettext", so it can be a program name with args. # Extract the first word of "xgettext", so it can be a program name with args.
set dummy xgettext; ac_word=$2 set dummy xgettext; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3505: checking for $ac_word" >&5 echo "configure:3501: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3533,7 +3529,7 @@ else
fi fi
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3537 "configure" #line 3533 "configure"
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
@ -3541,7 +3537,7 @@ extern int _nl_msg_cat_cntr;
return _nl_msg_cat_cntr return _nl_msg_cat_cntr
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3545: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3541: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
CATOBJEXT=.gmo CATOBJEXT=.gmo
DATADIRNAME=share DATADIRNAME=share
@ -3564,7 +3560,7 @@ fi
if test "$CATOBJEXT" = "NONE"; then if test "$CATOBJEXT" = "NONE"; then
echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6 echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6
echo "configure:3568: checking whether catgets can be used" >&5 echo "configure:3564: checking whether catgets can be used" >&5
# Check whether --with-catgets or --without-catgets was given. # Check whether --with-catgets or --without-catgets was given.
if test "${with_catgets+set}" = set; then if test "${with_catgets+set}" = set; then
withval="$with_catgets" withval="$with_catgets"
@ -3577,7 +3573,7 @@ fi
if test "$nls_cv_use_catgets" = "yes"; then if test "$nls_cv_use_catgets" = "yes"; then
echo $ac_n "checking for main in -li""... $ac_c" 1>&6 echo $ac_n "checking for main in -li""... $ac_c" 1>&6
echo "configure:3581: checking for main in -li" >&5 echo "configure:3577: checking for main in -li" >&5
ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'` ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
@ -3585,14 +3581,14 @@ else
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
LIBS="-li $LIBS" LIBS="-li $LIBS"
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3589 "configure" #line 3585 "configure"
#include "confdefs.h" #include "confdefs.h"
int main() { int main() {
main() main()
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3596: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3592: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_lib_$ac_lib_var=yes" eval "ac_cv_lib_$ac_lib_var=yes"
else else
@ -3620,12 +3616,12 @@ else
fi fi
echo $ac_n "checking for catgets""... $ac_c" 1>&6 echo $ac_n "checking for catgets""... $ac_c" 1>&6
echo "configure:3624: checking for catgets" >&5 echo "configure:3620: checking for catgets" >&5
if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 3629 "configure" #line 3625 "configure"
#include "confdefs.h" #include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes, /* System header to define __stub macros and hopefully few prototypes,
which can conflict with char catgets(); below. */ which can conflict with char catgets(); below. */
@ -3648,7 +3644,7 @@ catgets();
; return 0; } ; return 0; }
EOF EOF
if { (eval echo configure:3652: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then if { (eval echo configure:3648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest* rm -rf conftest*
eval "ac_cv_func_catgets=yes" eval "ac_cv_func_catgets=yes"
else else
@ -3670,7 +3666,7 @@ EOF
# Extract the first word of "gencat", so it can be a program name with args. # Extract the first word of "gencat", so it can be a program name with args.
set dummy gencat; ac_word=$2 set dummy gencat; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3674: checking for $ac_word" >&5 echo "configure:3670: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3706,7 +3702,7 @@ fi
# Extract the first word of "gmsgfmt", so it can be a program name with args. # Extract the first word of "gmsgfmt", so it can be a program name with args.
set dummy gmsgfmt; ac_word=$2 set dummy gmsgfmt; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3710: checking for $ac_word" >&5 echo "configure:3706: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3743,7 +3739,7 @@ fi
# Extract the first word of "msgfmt", so it can be a program name with args. # Extract the first word of "msgfmt", so it can be a program name with args.
set dummy msgfmt; ac_word=$2 set dummy msgfmt; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3747: checking for $ac_word" >&5 echo "configure:3743: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3778,7 +3774,7 @@ fi
# Extract the first word of "xgettext", so it can be a program name with args. # Extract the first word of "xgettext", so it can be a program name with args.
set dummy xgettext; ac_word=$2 set dummy xgettext; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3782: checking for $ac_word" >&5 echo "configure:3778: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3836,7 +3832,7 @@ fi
# Extract the first word of "msgfmt", so it can be a program name with args. # Extract the first word of "msgfmt", so it can be a program name with args.
set dummy msgfmt; ac_word=$2 set dummy msgfmt; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3840: checking for $ac_word" >&5 echo "configure:3836: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3870,7 +3866,7 @@ fi
# Extract the first word of "gmsgfmt", so it can be a program name with args. # Extract the first word of "gmsgfmt", so it can be a program name with args.
set dummy gmsgfmt; ac_word=$2 set dummy gmsgfmt; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3874: checking for $ac_word" >&5 echo "configure:3870: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3906,7 +3902,7 @@ fi
# Extract the first word of "xgettext", so it can be a program name with args. # Extract the first word of "xgettext", so it can be a program name with args.
set dummy xgettext; ac_word=$2 set dummy xgettext; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:3910: checking for $ac_word" >&5 echo "configure:3906: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
@ -3999,7 +3995,7 @@ fi
LINGUAS= LINGUAS=
else else
echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6
echo "configure:4003: checking for catalogs to be installed" >&5 echo "configure:3999: checking for catalogs to be installed" >&5
NEW_LINGUAS= NEW_LINGUAS=
for lang in ${LINGUAS=$ALL_LINGUAS}; do for lang in ${LINGUAS=$ALL_LINGUAS}; do
case "$ALL_LINGUAS" in case "$ALL_LINGUAS" in
@ -4027,17 +4023,17 @@ echo "configure:4003: checking for catalogs to be installed" >&5
if test "$CATOBJEXT" = ".cat"; then if test "$CATOBJEXT" = ".cat"; then
ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6
echo "configure:4031: checking for linux/version.h" >&5 echo "configure:4027: checking for linux/version.h" >&5
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6 echo $ac_n "(cached) $ac_c" 1>&6
else else
cat > conftest.$ac_ext <<EOF cat > conftest.$ac_ext <<EOF
#line 4036 "configure" #line 4032 "configure"
#include "confdefs.h" #include "confdefs.h"
#include <linux/version.h> #include <linux/version.h>
EOF EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
{ (eval echo configure:4041: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } { (eval echo configure:4037: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then if test -z "$ac_err"; then
rm -rf conftest* rm -rf conftest*

View File

@ -101,9 +101,7 @@ dnl Checks for libraries.
if eval "test x$CURSES_LIB_NAME = x" if eval "test x$CURSES_LIB_NAME = x"
then then
AC_CHECK_HEADERS(curses.h ncurses.h) AC_CHECK_HEADERS(curses.h ncurses.h)
AC_CHECK_LIB(ncurses, tgetent,[CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses AC_CHECK_LIB(ncurses, tgetent,CURSES_LIB="-lncurses" CURSES_LIB_NAME=ncurses)
dnl Only ncurses seems to have a working TABSIZE function.
AC_DEFINE(HAVE_TABSIZE)])
fi fi
if eval "test x$CURSES_LIB_NAME = x" if eval "test x$CURSES_LIB_NAME = x"

View File

@ -60,6 +60,8 @@ int placewewant = 0; /* The collum we'd like the cursor
to jump to when we go to the to jump to when we go to the
next or previous line */ next or previous line */
int tabsize = 8; /* Our internal tabsize variable */
char *hblank; /* A horizontal blank line */ char *hblank; /* A horizontal blank line */
char *help_text; /* The text in the help window */ char *help_text; /* The text in the help window */

22
nano.c
View File

@ -319,10 +319,8 @@ void usage(void)
#ifdef HAVE_GETOPT_LONG #ifdef HAVE_GETOPT_LONG
printf(_("Usage: nano [GNU long option] [option] +LINE <file>\n\n")); printf(_("Usage: nano [GNU long option] [option] +LINE <file>\n\n"));
printf(_("Option Long option Meaning\n")); printf(_("Option Long option Meaning\n"));
#ifdef HAVE_TABSIZE
printf(_ printf(_
(" -T --tabsize=[num] Set width of a tab to num\n")); (" -T --tabsize=[num] Set width of a tab to num\n"));
#endif
#ifdef _POSIX_VERSION #ifdef _POSIX_VERSION
printf(_ printf(_
(" -R --regexp Use regular expressions for search\n")); (" -R --regexp Use regular expressions for search\n"));
@ -369,9 +367,7 @@ void usage(void)
#else #else
printf(_("Usage: nano [option] +LINE <file>\n\n")); printf(_("Usage: nano [option] +LINE <file>\n\n"));
printf(_("Option Meaning\n")); printf(_("Option Meaning\n"));
#ifdef HAVE_TABSIZE
printf(_(" -T [num] Set width of a tab to num\n")); printf(_(" -T [num] Set width of a tab to num\n"));
#endif
printf(_(" -R Use regular expressions for search\n")); printf(_(" -R Use regular expressions for search\n"));
printf(_(" -V Print version information and exit\n")); printf(_(" -V Print version information and exit\n"));
printf(_(" -c Constantly show cursor position\n")); printf(_(" -c Constantly show cursor position\n"));
@ -646,8 +642,8 @@ void do_wrap(filestruct * inptr, char input_char)
} }
if (inptr->data[i] == NANO_CONTROL_I) { if (inptr->data[i] == NANO_CONTROL_I) {
if (i_tabs % TABSIZE != 0); if (i_tabs % tabsize != 0);
i_tabs += TABSIZE - (i_tabs % TABSIZE); i_tabs += tabsize - (i_tabs % tabsize);
} }
if (current_word_end_t > fill) if (current_word_end_t > fill)
@ -1543,9 +1539,7 @@ int main(int argc, char *argv[])
struct sigaction act; /* For our lovely signals */ struct sigaction act; /* For our lovely signals */
int keyhandled = 0; /* Have we handled the keystroke yet? */ int keyhandled = 0; /* Have we handled the keystroke yet? */
int tmpkey = 0, i; int tmpkey = 0, i;
#ifdef HAVE_TABSIZE
int usrtabsize = 0; /* User defined tab size */ int usrtabsize = 0; /* User defined tab size */
#endif
char *argv0; char *argv0;
struct termios term; struct termios term;
@ -1571,9 +1565,7 @@ int main(int argc, char *argv[])
{"mouse", 0, 0, 'm'}, {"mouse", 0, 0, 'm'},
{"pico", 0, 0, 'p'}, {"pico", 0, 0, 'p'},
{"nofollow", 0, 0, 'l'}, {"nofollow", 0, 0, 'l'},
#ifdef HAVE_TABSIZE
{"tabsize", 0, 0, 'T'}, {"tabsize", 0, 0, 'T'},
#endif
{0, 0, 0, 0} {0, 0, 0, 0}
}; };
#endif #endif
@ -1595,7 +1587,6 @@ int main(int argc, char *argv[])
#endif #endif
switch (optchr) { switch (optchr) {
#ifdef HAVE_TABSIZE
case 'T': case 'T':
usrtabsize = atoi(optarg); usrtabsize = atoi(optarg);
if (usrtabsize <= 0) { if (usrtabsize <= 0) {
@ -1603,11 +1594,6 @@ int main(int argc, char *argv[])
finish(1); finish(1);
} }
break; break;
#else
case 'T':
usage(); /* Oops! You dont really have that option */
finish(1);
#endif
#ifdef _POSIX_VERSION #ifdef _POSIX_VERSION
case 'R': case 'R':
SET(USE_REGEXP); SET(USE_REGEXP);
@ -1786,10 +1772,8 @@ int main(int argc, char *argv[])
else else
edit_update(fileage, CENTER); edit_update(fileage, CENTER);
#ifdef HAVE_TABSIZE
if (usrtabsize > 0) if (usrtabsize > 0)
TABSIZE = usrtabsize; tabsize = usrtabsize;
#endif
edit_refresh(); edit_refresh();
reset_cursor(); reset_cursor();

5
nano.h
View File

@ -44,11 +44,6 @@
#include <curses.h> #include <curses.h>
#endif /* CURSES_H */ #endif /* CURSES_H */
#ifndef HAVE_TABSIZE
static int TABSIZE = 8;
#endif
#ifdef HAVE_LIBINTL_H #ifdef HAVE_LIBINTL_H
#include <libintl.h> #include <libintl.h>
#endif #endif

BIN
po/de.gmo

Binary file not shown.

274
po/de.po
View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano 0.9.14pre1\n" "Project-Id-Version: nano 0.9.14pre1\n"
"POT-Creation-Date: 2000-08-01 18:28-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: 2000-07-27 11:44+0200\n" "PO-Revision-Date: 2000-07-27 11:44+0200\n"
"Last-Translator: Florian König <floki@bigfoot.com>\n" "Last-Translator: Florian König <floki@bigfoot.com>\n"
"Language-Team: German <floki@bigfoot.com>\n" "Language-Team: German <floki@bigfoot.com>\n"
@ -55,7 +55,7 @@ msgstr "Lese Datei"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Datei zum Einfügen [von ./] " msgstr "Datei zum Einfügen [von ./] "
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "Abgebrochen" msgstr "Abgebrochen"
@ -107,249 +107,249 @@ msgstr "Dateiname ist %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Datei exisitiert, ÜBERSCHREIBEN ?" msgstr "Datei exisitiert, ÜBERSCHREIBEN ?"
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "Hilfe-Menü anzeigen" msgstr "Hilfe-Menü anzeigen"
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "Datei speichern" msgstr "Datei speichern"
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "nano beenden" msgstr "nano beenden"
#: global.c:119 #: global.c:121
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "Zu einer Zeile springen" msgstr "Zu einer Zeile springen"
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "Absatz ausrichten" msgstr "Absatz ausrichten"
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "Text im Editor ersetzen" msgstr "Text im Editor ersetzen"
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "Datei einfügen" msgstr "Datei einfügen"
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "Im Editor nach Text suchen" msgstr "Im Editor nach Text suchen"
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "Zu der vorhergehenden Seite springen" msgstr "Zu der vorhergehenden Seite springen"
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "Zu der folgenden Seite springen" msgstr "Zu der folgenden Seite springen"
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "Zeile ausschneiden und in dir Zwischenablage speichern" msgstr "Zeile ausschneiden und in dir Zwischenablage speichern"
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "Aus der Zwischenablage einfügen" msgstr "Aus der Zwischenablage einfügen"
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "Cursoposition anzeigen" msgstr "Cursoposition anzeigen"
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "Rechtschreibprüfung aufrufen (wenn verfügbar)" msgstr "Rechtschreibprüfung aufrufen (wenn verfügbar)"
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "Zur vorhergehenden Zeile springen" msgstr "Zur vorhergehenden Zeile springen"
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "Zur folgenden Zeile springen" msgstr "Zur folgenden Zeile springen"
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "Zum folgenden Zeichen springen" msgstr "Zum folgenden Zeichen springen"
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "Zum vorhergehenden Zeichen springen" msgstr "Zum vorhergehenden Zeichen springen"
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "Zum Zeilenanfang springen" msgstr "Zum Zeilenanfang springen"
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "Zum Zeilenende springen" msgstr "Zum Zeilenende springen"
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "Zur ersten Zeile springen" msgstr "Zur ersten Zeile springen"
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "Zur letzten Zeile springen" msgstr "Zur letzten Zeile springen"
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "Bildschirm auffrischen (neu zeichnen)" msgstr "Bildschirm auffrischen (neu zeichnen)"
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "Text an der derzeitigen Cursorposition markieren" msgstr "Text an der derzeitigen Cursorposition markieren"
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "Zeichen an der Cursorposition löschen" msgstr "Zeichen an der Cursorposition löschen"
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "Zeichen links vom Cursor löschen" msgstr "Zeichen links vom Cursor löschen"
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "Tabulator einfügen" msgstr "Tabulator einfügen"
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "Zeilenumbruch an der Cursorposition einfügen" msgstr "Zeilenumbruch an der Cursorposition einfügen"
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "" msgstr ""
"Groß- und Kleinschreibung bei Suche oder Erstzen (nicht) berücksichtigen" "Groß- und Kleinschreibung bei Suche oder Erstzen (nicht) berücksichtigen"
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "Funktion abbrechen" msgstr "Funktion abbrechen"
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "Hilfe" msgstr "Hilfe"
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "Speichern" msgstr "Speichern"
#: global.c:159 global.c:323 #: global.c:161 global.c:325
msgid "Exit" msgid "Exit"
msgstr "Beenden" msgstr "Beenden"
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "Zu Zeile" msgstr "Zu Zeile"
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "Ausrichten" msgstr "Ausrichten"
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
msgid "Replace" msgid "Replace"
msgstr "Ersetzen" msgstr "Ersetzen"
#: global.c:179 #: global.c:181
msgid "Read File" msgid "Read File"
msgstr "Datei öffnen" msgstr "Datei öffnen"
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "Wo ist" msgstr "Wo ist"
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "Seite zurück" msgstr "Seite zurück"
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "Seite vor" msgstr "Seite vor"
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "Ausschneiden" msgstr "Ausschneiden"
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "Einfügen" msgstr "Einfügen"
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "Cursor" msgstr "Cursor"
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "Rechtschr." msgstr "Rechtschr."
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "Hoch" msgstr "Hoch"
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "Runter" msgstr "Runter"
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "Vorwärts" msgstr "Vorwärts"
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "Zurück" msgstr "Zurück"
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "Pos 1" msgstr "Pos 1"
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "Ende" msgstr "Ende"
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "Auffrischen" msgstr "Auffrischen"
#: global.c:231 #: global.c:233
msgid "Mark Text" msgid "Mark Text"
msgstr "Text markieren" msgstr "Text markieren"
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "Rücktaste" msgstr "Rücktaste"
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "Tab" msgstr "Tab"
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "Enter" msgstr "Enter"
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "Erste Zeile" msgstr "Erste Zeile"
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "Letzte Zeile" msgstr "Letzte Zeile"
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "GROSZ/klein" msgstr "GROSZ/klein"
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:975 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "Keine Ersetzung" msgstr "Keine Ersetzung"
@ -419,87 +419,87 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Option\t\tlange Option\t\tBedeutung\n" msgstr "Option\t\tlange Option\t\tBedeutung\n"
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr " -T \t\t--tabsize=[Anzahl]\tTabulator-Größe auf Anzahl setzen\n" msgstr " -T \t\t--tabsize=[Anzahl]\tTabulator-Größe auf Anzahl setzen\n"
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr " -R\t\t--regexp\t\tRegulären Ausdruck zur Suche verwenden\n" msgstr " -R\t\t--regexp\t\tRegulären Ausdruck zur Suche verwenden\n"
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tVersionsinfo ausgeben und beenden\n" msgstr " -V \t\t--version\t\tVersionsinfo ausgeben und beenden\n"
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tCursorposition ständig anzeigen\n" msgstr " -c \t\t--const\t\t\tCursorposition ständig anzeigen\n"
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tDiese Meldung anzeigen\n" msgstr " -h \t\t--help\t\t\tDiese Meldung anzeigen\n"
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr " -k \t\t--cut\t\t\t^K schneidet vom Cursor bis zum Zeilenende aus\n" msgstr " -k \t\t--cut\t\t\t^K schneidet vom Cursor bis zum Zeilenende aus\n"
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tNeue Zeilen automatisch einrücken\n" msgstr " -i \t\t--autoindent\t\tNeue Zeilen automatisch einrücken\n"
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
" -l \t\t--nofollow\t\tSymbolischen Links nicht folgen, sondern " " -l \t\t--nofollow\t\tSymbolischen Links nicht folgen, sondern "
"überschreiben.\n" "überschreiben.\n"
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tMaus aktivieren\n" msgstr " -m \t\t--mouse\t\t\tMaus aktivieren\n"
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
" -r [#Spalten] \t--fill=[#Spalten]\tSpalten auffüllen (Zeilenumbruch bei) " " -r [#Spalten] \t--fill=[#Spalten]\tSpalten auffüllen (Zeilenumbruch bei) "
"#Spalten\n" "#Spalten\n"
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tErscheinungsbild von Pico stärker imitieren\n" msgstr " -p\t \t--pico\t\t\tErscheinungsbild von Pico stärker imitieren\n"
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "" msgstr ""
" -s [Programm] \t--speller=[Programm]\tAlternative Rechtschreibprüfung\n" " -s [Programm] \t--speller=[Programm]\tAlternative Rechtschreibprüfung\n"
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\t--tempfile\t\tBeim Beenden ohne Rückfrage speichern\n" msgstr " -t \t\t--tempfile\t\tBeim Beenden ohne Rückfrage speichern\n"
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr "" msgstr ""
" -v \t\t--view\t\t\tNur zum Lesen öffnen (keine Veränderungen möglich)\n" " -v \t\t--view\t\t\tNur zum Lesen öffnen (keine Veränderungen möglich)\n"
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tLange Zeilen nicht in neue Zeilen umbrechen\n" msgstr " -w \t\t--nowrap\t\tLange Zeilen nicht in neue Zeilen umbrechen\n"
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tHilfe-Fenster nicht anzeigen\n" msgstr " -x \t\t--nohelp\t\tHilfe-Fenster nicht anzeigen\n"
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr "" msgstr ""
" -z \t\t--suspend\t\tSuspend (anhalten und zurück zur Shell) aktivieren\n" " -z \t\t--suspend\t\tSuspend (anhalten und zurück zur Shell) aktivieren\n"
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +ZEILE\t\t\t\t\tBei Zeile ZEILE beginnen\n" msgstr " +ZEILE\t\t\t\t\tBei Zeile ZEILE beginnen\n"
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
@ -507,183 +507,183 @@ msgstr ""
"Aufruf: nano [Option] +ZEILE <Datei>\n" "Aufruf: nano [Option] +ZEILE <Datei>\n"
"\n" "\n"
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Option\t\tBedeutung\n" msgstr "Option\t\tBedeutung\n"
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr " -T [Anzahl]\tTabulator-Größe auf Anzahl setzen\n" msgstr " -T [Anzahl]\tTabulator-Größe auf Anzahl setzen\n"
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr " -R\t\tRegulären Ausdruck zur Suche verwenden\n" msgstr " -R\t\tRegulären Ausdruck zur Suche verwenden\n"
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tVersionsinfo ausgeben und beenden\n" msgstr " -V \t\tVersionsinfo ausgeben und beenden\n"
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tCursorposition ständig anzeigen\n" msgstr " -c \t\tCursorposition ständig anzeigen\n"
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tDiese Meldung anzeigen\n" msgstr " -h \t\tDiese Meldung anzeigen\n"
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" 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" msgstr " -k \t\t^K schneidet vom Cursor bis zum Zeilenende aus\n"
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -i \t\tNeue Zeilen automatisch einrücken\n" msgstr " -i \t\tNeue Zeilen automatisch einrücken\n"
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr " -l \t\tSymbolischen Links nicht folgen, sondern überschreiben\n" msgstr " -l \t\tSymbolischen Links nicht folgen, sondern überschreiben\n"
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tMaus aktivieren\n" msgstr " -m \t\tMaus aktivieren\n"
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#Spalten] \tSpalten auffüllen (Zeilenumbruch bei) #Spalten\n" msgstr " -r [#Spalten] \tSpalten auffüllen (Zeilenumbruch bei) #Spalten\n"
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [Programm] \tAlternative Rechtschreibprüfung\n" msgstr " -s [Programm] \tAlternative Rechtschreibprüfung\n"
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tErscheinungsbild von Pico stärker imitieren\n" msgstr " -p \t\tErscheinungsbild von Pico stärker imitieren\n"
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tBeim Beenden ohne Rückfrage speichern\n" msgstr " -t \t\tBeim Beenden ohne Rückfrage speichern\n"
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tNur zum Lesen öffnen (keine Veränderungen möglich)\n" msgstr " -v \t\tNur zum Lesen öffnen (keine Veränderungen möglich)\n"
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tLange Zeilen nicht in neue Zeilen umbrechen\n" msgstr " -w \t\tLange Zeilen nicht in neue Zeilen umbrechen\n"
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tHilfe-Fenster nicht anzeigen\n" msgstr " -x \t\tHilfe-Fenster nicht anzeigen\n"
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tSuspend (anhalten und zurück zur Shell) aktivieren\n" msgstr " -z \t\tSuspend (anhalten und zurück zur Shell) aktivieren\n"
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +ZEILE\t\tBei Zeile ZEILE beginnen\n" msgstr " +ZEILE\t\tBei Zeile ZEILE beginnen\n"
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano Version %s von Chris Allegretta (compiliert um %s, %s)\n" msgstr " nano Version %s von Chris Allegretta (compiliert um %s, %s)\n"
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Email: nano@asty.org\tWWW: http://www.asty.org/nano\n" msgstr " Email: nano@asty.org\tWWW: http://www.asty.org/nano\n"
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "Markierung gesetzt" msgstr "Markierung gesetzt"
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Markierung gelöscht" msgstr "Markierung gelöscht"
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap aufgerufen mit inptr->data=\"%s\"\n" msgstr "check_wrap aufgerufen mit inptr->data=\"%s\"\n"
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data jetzt = \"%s\"\n" msgstr "current->data jetzt = \"%s\"\n"
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Nachher, data = \"%s\"\n" msgstr "Nachher, data = \"%s\"\n"
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Konnte temporäre Datei nicht löschen" msgstr "Konnte temporäre Datei nicht löschen"
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Konnte keine temporäre Datei erzeugen: %s" msgstr "Konnte keine temporäre Datei erzeugen: %s"
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen" msgstr "Konnte Rechtschreibprogramm \"%s\" nicht aufrufen"
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Konnte \"ispell\" nicht aufrufen" msgstr "Konnte \"ispell\" nicht aufrufen"
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Rechtschreibprüfung abgeschlossen" msgstr "Rechtschreibprüfung abgeschlossen"
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Veränderten Puffer speichern (\"Nein\" verwirft die Änderungen) ? " msgstr "Veränderten Puffer speichern (\"Nein\" verwirft die Änderungen) ? "
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Kann die Größe des oberen Fensters nicht verändern" msgstr "Kann die Größe des oberen Fensters nicht verändern"
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Kann oberes Fenster nicht verschieben" msgstr "Kann oberes Fenster nicht verschieben"
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Kann Größe des Bearbeitungsfensters nicht verändern" msgstr "Kann Größe des Bearbeitungsfensters nicht verändern"
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Kann Bearbeitungsfenster nicht verschieben" msgstr "Kann Bearbeitungsfenster nicht verschieben"
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Kann Größe des unteren Fensters nicht verändern" msgstr "Kann Größe des unteren Fensters nicht verändern"
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Kann unteres Fenster nicht verschieben" msgstr "Kann unteres Fenster nicht verschieben"
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Hauptprogramm: Fenster konfigurieren\n" msgstr "Hauptprogramm: Fenster konfigurieren\n"
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Hauptprogramm: unteres Fenster\n" msgstr "Hauptprogramm: unteres Fenster\n"
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Hauptprogramm: Datei öffnen\n" msgstr "Hauptprogramm: Datei öffnen\n"
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Erhielt Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n"
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Erhielt Alt-%c! (%d)\n" msgstr "Erhielt Alt-%c! (%d)\n"
@ -789,51 +789,51 @@ msgstr " Datei: ..."
msgid "Modified" msgid "Modified"
msgstr "Verändert" msgstr "Verändert"
#: winio.c:891 #: winio.c:899
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n" msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n"
#: winio.c:902 #: winio.c:910
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:945 #: winio.c:953
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Erhielt \"%s\"\n" msgstr "Erhielt \"%s\"\n"
#: winio.c:970 #: winio.c:978
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: winio.c:972 #: winio.c:980
msgid "All" msgid "All"
msgstr "Alle" msgstr "Alle"
#: winio.c:974 #: winio.c:982
msgid "No" msgid "No"
msgstr "Nein" msgstr "Nein"
#: winio.c:1110 #: winio.c:1118
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1114 #: winio.c:1122
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)" msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)"
#: winio.c:1238 #: winio.c:1246
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Gebe Datei Puffer nach stderr aus...\n" msgstr "Gebe Datei Puffer nach stderr aus...\n"
#: winio.c:1240 #: winio.c:1248
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n" msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n"
#: winio.c:1242 #: winio.c:1250
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Gebe einen Puffer nach stderr aus...\n" msgstr "Gebe einen Puffer nach stderr aus...\n"

BIN
po/es.gmo

Binary file not shown.

274
po/es.po
View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.9.13\n" "Project-Id-Version: 0.9.13\n"
"POT-Creation-Date: 2000-08-01 18:28-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: 2000-07-13 04:57+0200\n" "PO-Revision-Date: 2000-07-13 04:57+0200\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n" "Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Spanish <jordi@sindominio.net>\n" "Language-Team: Spanish <jordi@sindominio.net>\n"
@ -55,7 +55,7 @@ msgstr "Leyendo Fichero"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichero a insertar [desde ./] " msgstr "Fichero a insertar [desde ./] "
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "Cancelado" msgstr "Cancelado"
@ -107,248 +107,248 @@ msgstr "filename es %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "El fichero existe, SOBREESCRIBIR ?" msgstr "El fichero existe, SOBREESCRIBIR ?"
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "Invocar el menú de ayuda" msgstr "Invocar el menú de ayuda"
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "Escribir el fichero actual a disco" msgstr "Escribir el fichero actual a disco"
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "Salir de nano" msgstr "Salir de nano"
#: global.c:119 #: global.c:121
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "Ir a un número de línea en concreto" msgstr "Ir a un número de línea en concreto"
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "Justificar el párrafo actual" msgstr "Justificar el párrafo actual"
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "Reemplazar texto en el editor" msgstr "Reemplazar texto en el editor"
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "Insertar otro fichero en el actual" msgstr "Insertar otro fichero en el actual"
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "Buscar un texto en el editor" msgstr "Buscar un texto en el editor"
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "Moverse a la página anterior" msgstr "Moverse a la página anterior"
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "Moverse a la página siguiente" msgstr "Moverse a la página siguiente"
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "Cortar la línea actual y guardarla en el cutbuffer" msgstr "Cortar la línea actual y guardarla en el cutbuffer"
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "Pegar el cutbuffer en la línea actual" msgstr "Pegar el cutbuffer en la línea actual"
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "Mostrar la posición del cursor" msgstr "Mostrar la posición del cursor"
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "Invocar el corrector ortográfico (si está disponible)" msgstr "Invocar el corrector ortográfico (si está disponible)"
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "Moverse una línea hacia arriba" msgstr "Moverse una línea hacia arriba"
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "Moverse una línea hacia abajo" msgstr "Moverse una línea hacia abajo"
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "Moverse hacia adelante un carácter" msgstr "Moverse hacia adelante un carácter"
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "Moverse hacia atrás un carácter" msgstr "Moverse hacia atrás un carácter"
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "Moverse al principio de la línea actual" msgstr "Moverse al principio de la línea actual"
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "Moverse al final de la línea actual" msgstr "Moverse al final de la línea actual"
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "Ir a la primera línea del fichero" msgstr "Ir a la primera línea del fichero"
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "Ir a la última línea del fichero" msgstr "Ir a la última línea del fichero"
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "Redibujar la pantalla actual" msgstr "Redibujar la pantalla actual"
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "Marcar texto en la posición actual del cursor" msgstr "Marcar texto en la posición actual del cursor"
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "Borrar el carácter bajo el cursor" msgstr "Borrar el carácter bajo el cursor"
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "Borrar el carácter a la izquierda del cursor" msgstr "Borrar el carácter a la izquierda del cursor"
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "Insertar un carácter tab" msgstr "Insertar un carácter tab"
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "Insertar un retorno de carro en la posición del cursor" msgstr "Insertar un retorno de carro en la posición del cursor"
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "Hacer que la búsqueda actual sea sensible a mayúsculas" msgstr "Hacer que la búsqueda actual sea sensible a mayúsculas"
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "Cancelar la función actual" msgstr "Cancelar la función actual"
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "Ver Ayuda" msgstr "Ver Ayuda"
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "Guardar" msgstr "Guardar"
#: global.c:159 global.c:323 #: global.c:161 global.c:325
msgid "Exit" msgid "Exit"
msgstr "Salir" msgstr "Salir"
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "Ir a Línea" msgstr "Ir a Línea"
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "Justificar" msgstr "Justificar"
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
msgid "Replace" msgid "Replace"
msgstr "Reemplazar" msgstr "Reemplazar"
#: global.c:179 #: global.c:181
msgid "Read File" msgid "Read File"
msgstr "L Fichero" msgstr "L Fichero"
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "Buscar" msgstr "Buscar"
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "Pag Prev" msgstr "Pag Prev"
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "Pag Sig" msgstr "Pag Sig"
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "CortarTxt" msgstr "CortarTxt"
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "PegarTxt" msgstr "PegarTxt"
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "Pos Act" msgstr "Pos Act"
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "Ortografía" msgstr "Ortografía"
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "Arriba" msgstr "Arriba"
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "Abajo" msgstr "Abajo"
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "Adelante" msgstr "Adelante"
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "Atrás" msgstr "Atrás"
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "Inicio" msgstr "Inicio"
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "Fin" msgstr "Fin"
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "Refrescar" msgstr "Refrescar"
#: global.c:231 #: global.c:233
msgid "Mark Text" msgid "Mark Text"
msgstr "MarcarTxt" msgstr "MarcarTxt"
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "Suprimir" msgstr "Suprimir"
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "Borrar" msgstr "Borrar"
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "Tab" msgstr "Tab"
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "Enter" msgstr "Enter"
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "Primera Línea" msgstr "Primera Línea"
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "Última Línea" msgstr "Última Línea"
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "May/Min" msgstr "May/Min"
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:975 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "No Reemplazar" msgstr "No Reemplazar"
@ -419,81 +419,81 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Opcion\t\tOpcion larga\t\tSignificado\n" msgstr "Opcion\t\tOpcion larga\t\tSignificado\n"
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr " -T \t\t--tabsize=[num]\t\tFijar el ancho de tab a num\n" msgstr " -T \t\t--tabsize=[num]\t\tFijar el ancho de tab a num\n"
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr " -R\t\t--regexp\t\tUsar expresiones regulares para las búsquedas\n" msgstr " -R\t\t--regexp\t\tUsar expresiones regulares para las búsquedas\n"
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tImprimir versión y salir\n" msgstr " -V \t\t--version\t\tImprimir versión y salir\n"
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tMostrar siempre la posición del cursor\n" msgstr " -c \t\t--const\t\t\tMostrar siempre la posición del cursor\n"
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tMostrar este mensaje\n" msgstr " -h \t\t--help\t\t\tMostrar este mensaje\n"
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr " -k \t\t--cut\t\t\t^K corta desde el cursor al final de línea\n" msgstr " -k \t\t--cut\t\t\t^K corta desde el cursor al final de línea\n"
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tIndentar automáticamente nuevas líneas\n" msgstr " -i \t\t--autoindent\t\tIndentar automáticamente nuevas líneas\n"
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
" -l \t\t--nofollow\t\tNo seguir enlaces simbólicos, sobreescribirlos.\n" " -l \t\t--nofollow\t\tNo seguir enlaces simbólicos, sobreescribirlos.\n"
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tHabilitar ratón\n" msgstr " -m \t\t--mouse\t\t\tHabilitar ratón\n"
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \t--fill=[#cols]\t\tRellenar columnas (wrapear en) #cols\n" msgstr " -r [#cols] \t--fill=[#cols]\t\tRellenar columnas (wrapear en) #cols\n"
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tHacer el menú más parecido a Pico\n" msgstr " -p\t \t--pico\t\t\tHacer el menú más parecido a Pico\n"
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr " -s [prog] \t--speller=[prog]\tHabilitar corrector alternativo\n" msgstr " -s [prog] \t--speller=[prog]\tHabilitar corrector alternativo\n"
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\t--tempfile\t\tAutosalvar al salir, sin preguntar\n" msgstr " -t \t\t--tempfile\t\tAutosalvar al salir, sin preguntar\n"
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tModo visualización (sólo lectura)\n" msgstr " -v \t\t--view\t\t\tModo visualización (sólo lectura)\n"
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tNo wrapear líneas largas\n" msgstr " -w \t\t--nowrap\t\tNo wrapear líneas largas\n"
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tNo mostrar la ventana de ayuda\n" msgstr " -x \t\t--nohelp\t\tNo mostrar la ventana de ayuda\n"
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tHabilitar suspensión\n" msgstr " -z \t\t--suspend\t\tHabilitar suspensión\n"
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +LINE\t\t\t\t\tComenzar en la línea número LÍNEA\n" msgstr " +LINE\t\t\t\t\tComenzar en la línea número LÍNEA\n"
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
@ -501,183 +501,183 @@ msgstr ""
"Uso: nano [opción] +LÍNEA <fichero>\n" "Uso: nano [opción] +LÍNEA <fichero>\n"
"\n" "\n"
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Opción\t\tSignificado\n" msgstr "Opción\t\tSignificado\n"
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr " -T [num]\tFijar el ancho de tab a num\n" msgstr " -T [num]\tFijar el ancho de tab a num\n"
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr " -R\t\tUsar expresiones regulares para las búsquedas\n" msgstr " -R\t\tUsar expresiones regulares para las búsquedas\n"
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tImprimir información sobre la versión y salir\n" msgstr " -V \t\tImprimir información sobre la versión y salir\n"
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tMostrar constantemente la posición del cursor\n" msgstr " -c \t\tMostrar constantemente la posición del cursor\n"
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tMostrar este mensaje\n" msgstr " -h \t\tMostrar este mensaje\n"
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" 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" msgstr " -k \t\t^K corta desde el cursor al final de línea\n"
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -v \t\tIndentar automáticamente nuevas líneas\n" msgstr " -v \t\tIndentar automáticamente nuevas líneas\n"
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr " -l \t\tNo seguir enlaces simbólicos, sobreescribirlos.\n" msgstr " -l \t\tNo seguir enlaces simbólicos, sobreescribirlos.\n"
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tHabilitar ratón\n" msgstr " -m \t\tHabilitar ratón\n"
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \tRellenar columnas (wrapear líneas en) #cols\n" msgstr " -r [#cols] \tRellenar columnas (wrapear líneas en) #cols\n"
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [prog] \tHabilitar corrector alternativo\n" msgstr " -s [prog] \tHabilitar corrector alternativo\n"
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tHacer el menú más parecido a Pico\n" msgstr " -p \t\tHacer el menú más parecido a Pico\n"
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tAutosalvar al salir, no preguntar\n" msgstr " -t \t\tAutosalvar al salir, no preguntar\n"
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tModo visualización (sólo lectura)\n" msgstr " -v \t\tModo visualización (sólo lectura)\n"
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tNo wrapear líneas largas\n" msgstr " -w \t\tNo wrapear líneas largas\n"
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tNo mostrar la ventana de ayuda\n" msgstr " -x \t\tNo mostrar la ventana de ayuda\n"
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tHabilitar suspensión\n" msgstr " -z \t\tHabilitar suspensión\n"
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +LÍNEA\t\tComenzar en la línea número LÍNEA\n" msgstr " +LÍNEA\t\tComenzar en la línea número LÍNEA\n"
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano versión %s por Chris Allegretta (compilado %s, %s)\n" msgstr " nano versión %s por Chris Allegretta (compilado %s, %s)\n"
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Correo-e: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgstr " Correo-e: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "Marca Establecida" msgstr "Marca Establecida"
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Marca Borrada" msgstr "Marca Borrada"
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap llamada con inptr->data=\"%s\"\n" msgstr "check_wrap llamada con inptr->data=\"%s\"\n"
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data ahora = \"%d\"\n" msgstr "current->data ahora = \"%d\"\n"
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Después, data = \"%s\"\n" msgstr "Después, data = \"%s\"\n"
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Error borrando el fichero temporal, ouch!" msgstr "Error borrando el fichero temporal, ouch!"
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "No pude crear un fichero temporal: %s" msgstr "No pude crear un fichero temporal: %s"
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "No se pudo llamar al corrector \"%s\"" msgstr "No se pudo llamar al corrector \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "No pude llamar a \"ispell\"" msgstr "No pude llamar a \"ispell\""
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Revisión de ortografía finalizada" msgstr "Revisión de ortografía finalizada"
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIRÁ LOS CAMBIOS) ?" msgstr "Salvar el buffer modificado (RESPONDER \"No\" DESTRUIRÁ LOS CAMBIOS) ?"
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "No se puede cambiar el tamaño de la ventana superior" msgstr "No se puede cambiar el tamaño de la ventana superior"
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "No se puede mover la ventana superior" msgstr "No se puede mover la ventana superior"
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "No se puede cambiar el tamaño de la ventana de edición" msgstr "No se puede cambiar el tamaño de la ventana de edición"
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "No se puede mover la ventana de edición" msgstr "No se puede mover la ventana de edición"
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "No se puede cambiar el tamaño de la ventana inferior" msgstr "No se puede cambiar el tamaño de la ventana inferior"
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "No se puede mover la ventana inferior" msgstr "No se puede mover la ventana inferior"
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configurar las ventanas\n" msgstr "Main: configurar las ventanas\n"
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: ventana inferior\n" msgstr "Main: ventana inferior\n"
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: abrir fichero\n" msgstr "Main: abrir fichero\n"
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Pillé Alt-[-%c! (%d)\n" msgstr "Pillé Alt-[-%c! (%d)\n"
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Pillé Alt-%c! (%d)\n" msgstr "Pillé Alt-%c! (%d)\n"
@ -781,51 +781,51 @@ msgstr "Fichero: ..."
msgid "Modified" msgid "Modified"
msgstr "Modificado" msgstr "Modificado"
#: winio.c:891 #: winio.c:899
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Moviendo a (%d, %d) en buffer de edición\n" msgstr "Moviendo a (%d, %d) en buffer de edición\n"
#: winio.c:902 #: winio.c:910
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:945 #: winio.c:953
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Pillé \"%s\"\n" msgstr "Pillé \"%s\"\n"
#: winio.c:970 #: winio.c:978
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: winio.c:972 #: winio.c:980
msgid "All" msgid "All"
msgstr "Todas" msgstr "Todas"
#: winio.c:974 #: winio.c:982
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: winio.c:1110 #: winio.c:1118
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1114 #: winio.c:1122
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "línea %d de %d (%.0f%%), carácter %d de %d (%.0f%%)" msgstr "línea %d de %d (%.0f%%), carácter %d de %d (%.0f%%)"
#: winio.c:1238 #: winio.c:1246
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Volcando buffer de fichero a stderr...\n" msgstr "Volcando buffer de fichero a stderr...\n"
#: winio.c:1240 #: winio.c:1248
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Volcando el cutbuffer a stderr...\n" msgstr "Volcando el cutbuffer a stderr...\n"
#: winio.c:1242 #: winio.c:1250
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Volcando un buffer a stderr...\n" msgstr "Volcando un buffer a stderr...\n"

BIN
po/fi.gmo

Binary file not shown.

274
po/fi.po
View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano 0.9.11\n" "Project-Id-Version: nano 0.9.11\n"
"POT-Creation-Date: 2000-08-01 18:28-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: 2000-06-21 23:08+03:00\n" "PO-Revision-Date: 2000-06-21 23:08+03:00\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n" "Last-Translator: Pauli Virtanen <pauli.virtanen@saunalahti.fi>\n"
"Language-Team: Finnish <fi@li.org>\n" "Language-Team: Finnish <fi@li.org>\n"
@ -54,7 +54,7 @@ msgstr "Tiedostoa luetaan"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Lisättävä tiedosto [hakemistossa ./]" msgstr "Lisättävä tiedosto [hakemistossa ./]"
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "Peruttu" msgstr "Peruttu"
@ -106,248 +106,248 @@ msgstr "tiedoston nimi on %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Tiedosto on jo olemassa, korvataanko?" msgstr "Tiedosto on jo olemassa, korvataanko?"
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "Avaa ohjevalikko" msgstr "Avaa ohjevalikko"
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "Kirjoita nykyinen tiedosto levylle" msgstr "Kirjoita nykyinen tiedosto levylle"
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "Poistu nanosta" msgstr "Poistu nanosta"
#: global.c:119 #: global.c:121
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "Siirry tietylle riville" msgstr "Siirry tietylle riville"
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "Tasaa nykyinen kappale" msgstr "Tasaa nykyinen kappale"
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "Etsi ja korvaa tekstiä" msgstr "Etsi ja korvaa tekstiä"
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "Lisää toinen tiedosto nykyiseen tiedostoon" msgstr "Lisää toinen tiedosto nykyiseen tiedostoon"
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "Etsi tekstiä" msgstr "Etsi tekstiä"
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "Siirry edelliseen ruutuun" msgstr "Siirry edelliseen ruutuun"
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "Siirry seuraavaan ruutuun" msgstr "Siirry seuraavaan ruutuun"
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "Leikkaa nykyinen rivi leiketilaan" msgstr "Leikkaa nykyinen rivi leiketilaan"
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "Kopioi rivi leiketilasta nykyiselle riville" msgstr "Kopioi rivi leiketilasta nykyiselle riville"
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "Näytä kohdistimen sijainti" msgstr "Näytä kohdistimen sijainti"
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "Käynnistä oikoluin (jos saatavilla)" msgstr "Käynnistä oikoluin (jos saatavilla)"
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "Siirry yksi rivi ylöspäin" msgstr "Siirry yksi rivi ylöspäin"
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "Siirry yksi rivi alaspäin" msgstr "Siirry yksi rivi alaspäin"
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "Siirry yksi merkki eteenpäin" msgstr "Siirry yksi merkki eteenpäin"
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "Siirry yksi merkki taaksepäin" msgstr "Siirry yksi merkki taaksepäin"
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "Siirry nykyisen rivin alkuun" msgstr "Siirry nykyisen rivin alkuun"
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "Siirry nykyisen rivin loppuun" msgstr "Siirry nykyisen rivin loppuun"
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "Siirry tiedoston ensimmäiselle riville" msgstr "Siirry tiedoston ensimmäiselle riville"
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "Siirry tiedoston viimeiselle riville" msgstr "Siirry tiedoston viimeiselle riville"
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "Piirrä ruutu uudestaan" msgstr "Piirrä ruutu uudestaan"
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "Merkitse kohdistimen kohdalla oleva teksti" msgstr "Merkitse kohdistimen kohdalla oleva teksti"
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "Poista kohdistimen kohdalla oleva merkki" msgstr "Poista kohdistimen kohdalla oleva merkki"
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "Poista kohdistimesta vasemmalle oleva merkki" msgstr "Poista kohdistimesta vasemmalle oleva merkki"
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "Lisää sarkainmerkki" msgstr "Lisää sarkainmerkki"
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "Lisää rivinvaihto kohdistimen kohdalle" msgstr "Lisää rivinvaihto kohdistimen kohdalle"
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "Muuta etsintä- tai korvaustoiminnon kirjainkoosta piittaamista." msgstr "Muuta etsintä- tai korvaustoiminnon kirjainkoosta piittaamista."
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "Peru nykyinen toiminto." msgstr "Peru nykyinen toiminto."
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "Ohjeita" msgstr "Ohjeita"
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "Kirjoita" msgstr "Kirjoita"
#: global.c:159 global.c:323 #: global.c:161 global.c:325
msgid "Exit" msgid "Exit"
msgstr "Lopeta" msgstr "Lopeta"
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "Siirry" msgstr "Siirry"
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "Tasaa" msgstr "Tasaa"
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
msgid "Replace" msgid "Replace"
msgstr "Korvaa" msgstr "Korvaa"
#: global.c:179 #: global.c:181
msgid "Read File" msgid "Read File"
msgstr "Lue tied." msgstr "Lue tied."
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "Etsi" msgstr "Etsi"
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "Ed. sivu" msgstr "Ed. sivu"
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "Seur. sivu" msgstr "Seur. sivu"
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "Leikkaa" msgstr "Leikkaa"
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "Liitä" msgstr "Liitä"
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "Sijainti" msgstr "Sijainti"
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "Oikolue" msgstr "Oikolue"
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "Ylös" msgstr "Ylös"
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "Alas" msgstr "Alas"
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "Eteenpäin" msgstr "Eteenpäin"
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "Takaisin" msgstr "Takaisin"
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "Home" msgstr "Home"
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "End" msgstr "End"
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "Piirrä uudelleen" msgstr "Piirrä uudelleen"
#: global.c:231 #: global.c:233
msgid "Mark Text" msgid "Mark Text"
msgstr "Merkitse tekstiä" msgstr "Merkitse tekstiä"
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "Poista" msgstr "Poista"
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "Askelpalautin" msgstr "Askelpalautin"
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "Sarkain" msgstr "Sarkain"
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "Enter" msgstr "Enter"
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "1. rivi" msgstr "1. rivi"
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "Viim. rivi" msgstr "Viim. rivi"
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "Kirj. koko" msgstr "Kirj. koko"
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:975 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "Peru" msgstr "Peru"
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "" msgstr ""
@ -415,84 +415,84 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Asetus\t\tPitkä asetus\t\tMerkitys\n" msgstr "Asetus\t\tPitkä asetus\t\tMerkitys\n"
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr " -T \t\t--tabsize=[leveys]\tAseta sarkaimen leveys\n" msgstr " -T \t\t--tabsize=[leveys]\tAseta sarkaimen leveys\n"
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tTulosta versiotiedot ja lopeta\n" msgstr " -V \t\t--version\t\tTulosta versiotiedot ja lopeta\n"
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tNäytä kohdistimen sijainti jatkuvasti\n" msgstr " -c \t\t--const\t\t\tNäytä kohdistimen sijainti jatkuvasti\n"
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tNäytä tämä ohje\n" msgstr " -h \t\t--help\t\t\tNäytä tämä ohje\n"
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tSisennä uudet rivit automaattisesti\n" msgstr " -i \t\t--autoindent\t\tSisennä uudet rivit automaattisesti\n"
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
" -l \t\t--nofollow\t\tÄlä seuraa symbolisia linkkejä, vaan\n" " -l \t\t--nofollow\t\tÄlä seuraa symbolisia linkkejä, vaan\n"
"\t\t\t\t\tkorvaa ne tiedostoilla.\n" "\t\t\t\t\tkorvaa ne tiedostoilla.\n"
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tKäytä hiirtä\n" msgstr " -m \t\t--mouse\t\t\tKäytä hiirtä\n"
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#lkm] \t--fill=[#lkm]\t\tRivitä annettua pidemmät rivit\n" msgstr " -r [#lkm] \t--fill=[#lkm]\t\tRivitä annettua pidemmät rivit\n"
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tNäytä 2 alinta riviä kuin Pico\n" msgstr " -p\t \t--pico\t\t\tNäytä 2 alinta riviä kuin Pico\n"
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr " -s [ohjelma] \t--speller=[ohjelma]\tKäytä annettua oikolukuohjelmaa\n" msgstr " -s [ohjelma] \t--speller=[ohjelma]\tKäytä annettua oikolukuohjelmaa\n"
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
" -t \t\t--tempfile\t\tTallenna tiedosto kysymättä\n" " -t \t\t--tempfile\t\tTallenna tiedosto kysymättä\n"
"\t\t\t\t\tpoistettaessa \n" "\t\t\t\t\tpoistettaessa \n"
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tKatselutila (vain luku)\n" msgstr " -v \t\t--view\t\t\tKatselutila (vain luku)\n"
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tÄlä rivitä pitkiä rivejä\n" msgstr " -w \t\t--nowrap\t\tÄlä rivitä pitkiä rivejä\n"
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tÄlä näytä ohjeikkunaa\n" msgstr " -x \t\t--nohelp\t\tÄlä näytä ohjeikkunaa\n"
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tMahdollista keskeyttäminen\n" msgstr " -z \t\t--suspend\t\tMahdollista keskeyttäminen\n"
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +RIVI\t\t\t\t\tSiirry riville RIVI\n" msgstr " +RIVI\t\t\t\t\tSiirry riville RIVI\n"
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
@ -500,183 +500,183 @@ msgstr ""
"Käyttö: nano [asetukset] +RIVI <tiedosto>\n" "Käyttö: nano [asetukset] +RIVI <tiedosto>\n"
"\n" "\n"
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Asetus\t\tMerkitys\n" msgstr "Asetus\t\tMerkitys\n"
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr " -T [leveys]\tAseta sarkaimen leveys\n" msgstr " -T [leveys]\tAseta sarkaimen leveys\n"
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tTulosta versiotiedot ja lopeta\n" msgstr " -V \t\tTulosta versiotiedot ja lopeta\n"
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tNäytä kohdistimen sijainti jatkuvasti\n" msgstr " -c \t\tNäytä kohdistimen sijainti jatkuvasti\n"
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tNäytä tämä ohje\n" msgstr " -h \t\tNäytä tämä ohje\n"
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -i \t\tSisennä uudet rivit automaattisesti\n" msgstr " -i \t\tSisennä uudet rivit automaattisesti\n"
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr " -l \t\tÄlä seuraa symbolisia linkkejä, vaan korvaa ne tiedostoilla.\n" msgstr " -l \t\tÄlä seuraa symbolisia linkkejä, vaan korvaa ne tiedostoilla.\n"
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tKäytä hiirtä\n" msgstr " -m \t\tKäytä hiirtä\n"
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#lkm] \tRivitä annettua pidemmät rivit\n" msgstr " -r [#lkm] \tRivitä annettua pidemmät rivit\n"
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [ohjelma] \tKäytä annettua oikolukuohjelmaa\n" msgstr " -s [ohjelma] \tKäytä annettua oikolukuohjelmaa\n"
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tNäytä 2 alinta riviä kuin Pico\n" msgstr " -p \t\tNäytä 2 alinta riviä kuin Pico\n"
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tTallenna tiedosto kysymättä poistettaessa\n" msgstr " -t \t\tTallenna tiedosto kysymättä poistettaessa\n"
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tKatselutila (vain luku)\n" msgstr " -v \t\tKatselutila (vain luku)\n"
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tÄlä rivitä pitkiä rivejä\n" msgstr " -w \t\tÄlä rivitä pitkiä rivejä\n"
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tÄlä näytä ohjeikkunaa\n" msgstr " -x \t\tÄlä näytä ohjeikkunaa\n"
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tMahdollista keskeyttäminen\n" msgstr " -z \t\tMahdollista keskeyttäminen\n"
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +RIVI\t\tSiirry riville RIVI\n" msgstr " +RIVI\t\tSiirry riville RIVI\n"
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano, versio %s. Chris Allegretta (käännetty %s, %s)\n" msgstr " nano, versio %s. Chris Allegretta (käännetty %s, %s)\n"
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Maili: nano@asty.org\tNetti: http://www.asty.org/nano\n" msgstr " Maili: nano@asty.org\tNetti: http://www.asty.org/nano\n"
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "Teksti merkitty" msgstr "Teksti merkitty"
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Merkintä poistettu" msgstr "Merkintä poistettu"
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap -funktion parametri inptr->data=\"%s\"\n" msgstr "check_wrap -funktion parametri inptr->data=\"%s\"\n"
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data nyt = \"%s\"\n" msgstr "current->data nyt = \"%s\"\n"
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Jälkeenpäin, data = \"%s\"\n" msgstr "Jälkeenpäin, data = \"%s\"\n"
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Väliaikaistiedostoa poistettaessa tapahtui virhe." msgstr "Väliaikaistiedostoa poistettaessa tapahtui virhe."
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Väliaikaista tiedostonnimeä ei voitu luoda: %s" msgstr "Väliaikaista tiedostonnimeä ei voitu luoda: %s"
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Oikoluinta \"%s\" ei voitu käynnistää" msgstr "Oikoluinta \"%s\" ei voitu käynnistää"
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "\"ispell\" -ohjelmaa ei voitu käynnistää" msgstr "\"ispell\" -ohjelmaa ei voitu käynnistää"
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Oikoluku on valmis" msgstr "Oikoluku on valmis"
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Tallenna muutettu teksti (Muutokset häviävät, jos vastaat \"ei\") ? " msgstr "Tallenna muutettu teksti (Muutokset häviävät, jos vastaat \"ei\") ? "
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Yläikkunan kokoa ei voi muuttaa" msgstr "Yläikkunan kokoa ei voi muuttaa"
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Yläikkunaa ei voi siirtää" msgstr "Yläikkunaa ei voi siirtää"
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Muokkausikkunan kokoa ei voi muuttaa" msgstr "Muokkausikkunan kokoa ei voi muuttaa"
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Muokkausikkunaa ei voi siirtää" msgstr "Muokkausikkunaa ei voi siirtää"
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Alaikkunan kokoa ei voi muuttaa" msgstr "Alaikkunan kokoa ei voi muuttaa"
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Alaikkunaa ei voi siirtää" msgstr "Alaikkunaa ei voi siirtää"
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Päätila: ikkunoiden asettelu\n" msgstr "Päätila: ikkunoiden asettelu\n"
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Päätila: alaikkuna\n" msgstr "Päätila: alaikkuna\n"
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Päätila: avaa tiedosto\n" msgstr "Päätila: avaa tiedosto\n"
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Vastaanotettu Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n"
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Vastaanotettu Alt-%c! (%d)\n" msgstr "Vastaanotettu Alt-%c! (%d)\n"
@ -781,51 +781,51 @@ msgstr " Tiedosto: ..."
msgid "Modified" msgid "Modified"
msgstr "Muokattu" msgstr "Muokattu"
#: winio.c:891 #: winio.c:899
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n" msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n"
#: winio.c:902 #: winio.c:910
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:945 #: winio.c:953
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Saatiin \"%s\"\n" msgstr "Saatiin \"%s\"\n"
#: winio.c:970 #: winio.c:978
msgid "Yes" msgid "Yes"
msgstr "Kyllä" msgstr "Kyllä"
#: winio.c:972 #: winio.c:980
msgid "All" msgid "All"
msgstr "Kaikki" msgstr "Kaikki"
#: winio.c:974 #: winio.c:982
msgid "No" msgid "No"
msgstr "Ei" msgstr "Ei"
#: winio.c:1110 #: winio.c:1118
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1114 #: winio.c:1122
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)" msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)"
#: winio.c:1238 #: winio.c:1246
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Syötetään tiedosto stderriin...\n" msgstr "Syötetään tiedosto stderriin...\n"
#: winio.c:1240 #: winio.c:1248
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Syötetään leiketila stderriin...\n" msgstr "Syötetään leiketila stderriin...\n"
#: winio.c:1242 #: winio.c:1250
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Syötetään teksti stderriin...\n" msgstr "Syötetään teksti stderriin...\n"

274
po/fr.po
View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.9\n" "Project-Id-Version: 0.8.9\n"
"POT-Creation-Date: 2000-08-01 18:28-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: 2000-07-09 01:32+0100\n" "PO-Revision-Date: 2000-07-09 01:32+0100\n"
"Last-Translator: Clement Laforet <sheep.killer@free.fr>\n" "Last-Translator: Clement Laforet <sheep.killer@free.fr>\n"
"Language-Team: French <LL@li.org>\n" "Language-Team: French <LL@li.org>\n"
@ -57,7 +57,7 @@ msgstr "Lecture du fichier"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "Fichier à insérer [depuis ./] " msgstr "Fichier à insérer [depuis ./] "
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "Annulé" msgstr "Annulé"
@ -109,253 +109,253 @@ msgstr "Le nom du fichier est %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "Fichier existant, écrire par-dessus ?" msgstr "Fichier existant, écrire par-dessus ?"
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "Appelle le menu d'aide" msgstr "Appelle le menu d'aide"
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "Ecrit le fichier en cours sur le disque" msgstr "Ecrit le fichier en cours sur le disque"
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "Quitte Nano" msgstr "Quitte Nano"
#: global.c:119 #: global.c:121
#, fuzzy #, fuzzy
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "Entrer le numéro de ligne" msgstr "Entrer le numéro de ligne"
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "Justifie le paragraphe courant" msgstr "Justifie le paragraphe courant"
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "Remplace le texte dans l'éditeur" msgstr "Remplace le texte dans l'éditeur"
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "Insère un autre fichier dans le fichier courant" msgstr "Insère un autre fichier dans le fichier courant"
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "Recherche d'une chaîne dans l'éditeur" msgstr "Recherche d'une chaîne dans l'éditeur"
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "Retourne a l'écran précèdent" msgstr "Retourne a l'écran précèdent"
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "Aller au prochain écran" msgstr "Aller au prochain écran"
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "Supprime la ligne courante et la stocke en mémoire" msgstr "Supprime la ligne courante et la stocke en mémoire"
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "Copie la chaîne en mémoire vers la ligne courante" msgstr "Copie la chaîne en mémoire vers la ligne courante"
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "Affiche la position du curseur" msgstr "Affiche la position du curseur"
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "Appel du correcteur orthographique (s'il est disponible)" msgstr "Appel du correcteur orthographique (s'il est disponible)"
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "Déplace d'une ligne vers le haut" msgstr "Déplace d'une ligne vers le haut"
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "Déplace d'une ligne vers le bas" msgstr "Déplace d'une ligne vers le bas"
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "Déplace d'un caractère en avant" msgstr "Déplace d'un caractère en avant"
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "Déplace d'un caractère en arriere" msgstr "Déplace d'un caractère en arriere"
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "Déplace vers le début de la ligne courante" msgstr "Déplace vers le début de la ligne courante"
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "Déplace vers la fin de la ligne courante" msgstr "Déplace vers la fin de la ligne courante"
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "Va à la première ligne du fichier" msgstr "Va à la première ligne du fichier"
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "Va à la dernière ligne du fichier" msgstr "Va à la dernière ligne du fichier"
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "Rafraichit (redessine) l'ecran courant" msgstr "Rafraichit (redessine) l'ecran courant"
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "Marquer le texte à la position actuelle du curseur" msgstr "Marquer le texte à la position actuelle du curseur"
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "Supprime le caractère où se trouve le curseur" msgstr "Supprime le caractère où se trouve le curseur"
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "Supprime le caractère à la gauche du curseur" msgstr "Supprime le caractère à la gauche du curseur"
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "Insère une tabulation" msgstr "Insère une tabulation"
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "Insère un retour-chariot à la position du curseur" msgstr "Insère un retour-chariot à la position du curseur"
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "Exécuter rechercher/remplacer avec/sans rspect de la casse" msgstr "Exécuter rechercher/remplacer avec/sans rspect de la casse"
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "Annule la fonction courante" msgstr "Annule la fonction courante"
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "Appelle l'aide" msgstr "Appelle l'aide"
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "Sauvegarde" msgstr "Sauvegarde"
#: global.c:159 global.c:323 #: global.c:161 global.c:325
msgid "Exit" msgid "Exit"
msgstr "Quitte" msgstr "Quitte"
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "-> ligne" msgstr "-> ligne"
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "Justifier" msgstr "Justifier"
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
#, fuzzy #, fuzzy
msgid "Replace" msgid "Replace"
msgstr "Remplacer par" msgstr "Remplacer par"
#: global.c:179 #: global.c:181
#, fuzzy #, fuzzy
msgid "Read File" msgid "Read File"
msgstr "Lect. fichier" msgstr "Lect. fichier"
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "Recherche" msgstr "Recherche"
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "Page préc." msgstr "Page préc."
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "Page suiv." msgstr "Page suiv."
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "Couper" msgstr "Couper"
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "Annul. Coup" msgstr "Annul. Coup"
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "Pos. curseur" msgstr "Pos. curseur"
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "Corriger" msgstr "Corriger"
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "Haut" msgstr "Haut"
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "Bas" msgstr "Bas"
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "En avant" msgstr "En avant"
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "En arrière" msgstr "En arrière"
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "Debut Doc." msgstr "Debut Doc."
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "Fin Doc0" msgstr "Fin Doc0"
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "Rafraîchir" msgstr "Rafraîchir"
#: global.c:231 #: global.c:233
#, fuzzy #, fuzzy
msgid "Mark Text" msgid "Mark Text"
msgstr "Marque enregistrée" msgstr "Marque enregistrée"
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "Backspace" msgstr "Backspace"
# No translation... # No translation...
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "Tabulation" msgstr "Tabulation"
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "Entrée" msgstr "Entrée"
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "Première ligne" msgstr "Première ligne"
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "Dernière Ligne" msgstr "Dernière Ligne"
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "Casse respectée" msgstr "Casse respectée"
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:975 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "Pas de remplacement" msgstr "Pas de remplacement"
@ -425,91 +425,91 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Option\t\tOption Longue\t\tSignification\n" msgstr "Option\t\tOption Longue\t\tSignification\n"
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr "" msgstr ""
"-T \t\t--tabsize=[num]\t\tDefini la profondeur d'une tabulation à num\n" "-T \t\t--tabsize=[num]\t\tDefini la profondeur d'une tabulation à num\n"
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
"-R\t\t--regexp\t\tUtilise les expressions regulières pour la recherche\n" "-R\t\t--regexp\t\tUtilise les expressions regulières pour la recherche\n"
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--version\t\tAfficher les informations de version et sortir\n" msgstr " -V \t\t--version\t\tAfficher les informations de version et sortir\n"
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tAfficher constamment la position du curseur\n" msgstr " -c \t\t--const\t\t\tAfficher constamment la position du curseur\n"
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tAfficher ce message\n" msgstr " -h \t\t--help\t\t\tAfficher ce message\n"
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr "" msgstr ""
" -i \t\t--autoindent\t\tIndenter automatiquement les nouvelles lignes\n" " -i \t\t--autoindent\t\tIndenter automatiquement les nouvelles lignes\n"
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
" -l \t\t--nofollow\t\tNe suit pas les liens symboliques. Outrepasse " " -l \t\t--nofollow\t\tNe suit pas les liens symboliques. Outrepasse "
"l'écriture\n" "l'écriture\n"
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tActiver le support souris\n" msgstr " -m \t\t--mouse\t\t\tActiver le support souris\n"
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
" -r [#cols] \t--fill=[#cols]\t\tMettre la colonne de fin de ligne à (couper " " -r [#cols] \t--fill=[#cols]\t\tMettre la colonne de fin de ligne à (couper "
"les lignes à) #cols\n" "les lignes à) #cols\n"
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr "" msgstr ""
" -p\t \t--pico\t\t\tRendre les deux lignes du bas plus semblables à Pico\n" " -p\t \t--pico\t\t\tRendre les deux lignes du bas plus semblables à Pico\n"
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "" msgstr ""
" -s [prog] \t--speller=[prog]\tActiver un vérificateur orthographique " " -s [prog] \t--speller=[prog]\tActiver un vérificateur orthographique "
"alternatif\n" "alternatif\n"
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
" -t \t\t--tempfile\t\tSauver automatiquement à la sortie, sans demander\n" " -t \t\t--tempfile\t\tSauver automatiquement à la sortie, sans demander\n"
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tMode Visualisation (lecture seule)\n" msgstr " -v \t\t--view\t\t\tMode Visualisation (lecture seule)\n"
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tNe pas couper les lignes trop longues\n" msgstr " -w \t\t--nowrap\t\tNe pas couper les lignes trop longues\n"
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tNe pas afficher la fenêtre d'aide\n" msgstr " -x \t\t--nohelp\t\tNe pas afficher la fenêtre d'aide\n"
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tAutoriser la suspension\n" msgstr " -z \t\t--suspend\t\tAutoriser la suspension\n"
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +LIGNE\t\t\t\t\tCommencer à la ligne LIGNE\n" msgstr " +LIGNE\t\t\t\t\tCommencer à la ligne LIGNE\n"
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
@ -517,185 +517,185 @@ msgstr ""
"Utilisation: nano [option] +LIGNE <fichier>\n" "Utilisation: nano [option] +LIGNE <fichier>\n"
"\n" "\n"
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Option\t\tSignification\n" msgstr "Option\t\tSignification\n"
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr "-T [num]\tDéfini la pronfondeur de tabulation à num\n" msgstr "-T [num]\tDéfini la pronfondeur de tabulation à num\n"
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr "-R\t\tUtilisation des expressions régulières pour la recherche\n" msgstr "-R\t\tUtilisation des expressions régulières pour la recherche\n"
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tAfficher les informations de version et sortir\n" msgstr " -V \t\tAfficher les informations de version et sortir\n"
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tAfficher constamment la position du curseur\n" msgstr " -c \t\tAfficher constamment la position du curseur\n"
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tAfficher ce message\n" msgstr " -h \t\tAfficher ce message\n"
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -i \t\tIndenter automatiquement les nouvelles lignes\n" msgstr " -i \t\tIndenter automatiquement les nouvelles lignes\n"
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "-l \t\tNe pas suivre les liens symboliques. Outrepasse à l'écriture\n" msgstr "-l \t\tNe pas suivre les liens symboliques. Outrepasse à l'écriture\n"
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tActiver la souris\n" msgstr " -m \t\tActiver la souris\n"
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
" -r [#cols] \tMettre la colonne de fin de ligne à (couper les lignes à) " " -r [#cols] \tMettre la colonne de fin de ligne à (couper les lignes à) "
"#cols\n" "#cols\n"
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [prog] \tActiver un vérificateur orthographique alternatif\n" msgstr " -s [prog] \tActiver un vérificateur orthographique alternatif\n"
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tRendre les 2 lignes du bas plus semblables à Pico\n" msgstr " -p \t\tRendre les 2 lignes du bas plus semblables à Pico\n"
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tSauver automatiquement à la sortie, sans demander\n" msgstr " -t \t\tSauver automatiquement à la sortie, sans demander\n"
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tMode Visualisation seule (lecture seule)\n" msgstr " -v \t\tMode Visualisation seule (lecture seule)\n"
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tNe pas couper les lignes longues\n" msgstr " -w \t\tNe pas couper les lignes longues\n"
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tNe pas afficher la fenêtre d'aide\n" msgstr " -x \t\tNe pas afficher la fenêtre d'aide\n"
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tAutoriser la suspension\n" msgstr " -z \t\tAutoriser la suspension\n"
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +LIGNE\t\tDémarrer à la ligne LIGNE\n" msgstr " +LIGNE\t\tDémarrer à la ligne LIGNE\n"
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano version %s de Chris Allegretta (compilée %s, %s)\n" msgstr " nano version %s de Chris Allegretta (compilée %s, %s)\n"
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "Marque enregistrée" msgstr "Marque enregistrée"
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Marque effacée" msgstr "Marque effacée"
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap appelée avec inptr->data=\"%s\"\n" msgstr "check_wrap appelée avec inptr->data=\"%s\"\n"
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data vaut maintenant \"%s\"\n" msgstr "current->data vaut maintenant \"%s\"\n"
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Après, data = \"%s\"\n" msgstr "Après, data = \"%s\"\n"
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Erreur lors de l'effacement du fichier temporaire, zut!" msgstr "Erreur lors de l'effacement du fichier temporaire, zut!"
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Impossible de créer un nom de fichier temporaire: %s" msgstr "Impossible de créer un nom de fichier temporaire: %s"
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Impossible d'invoquer le programme spell \"%s\"" msgstr "Impossible d'invoquer le programme spell \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Impossible d'invoquer \"ispell\"" msgstr "Impossible d'invoquer \"ispell\""
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Vérification orthographique terminée" msgstr "Vérification orthographique terminée"
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Sauver le buffer modifié (RÉPONDRE \"No\" EFFACERA LES CHANGEMENTS" msgstr "Sauver le buffer modifié (RÉPONDRE \"No\" EFFACERA LES CHANGEMENTS"
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Impossible de redimensionner la fenêtre du haut" msgstr "Impossible de redimensionner la fenêtre du haut"
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossible de bouger la fenêtre du haut" msgstr "Impossible de bouger la fenêtre du haut"
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossible de redimensionner la fenêtre d'édition" msgstr "Impossible de redimensionner la fenêtre d'édition"
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossible de bouger la fenêtre d'édition" msgstr "Impossible de bouger la fenêtre d'édition"
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossible de redimensionner la fenêtre du bas" msgstr "Impossible de redimensionner la fenêtre du bas"
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossible de bouger la fenêtre du bas" msgstr "Impossible de bouger la fenêtre du bas"
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configuration des fenêtres\n" msgstr "Main: configuration des fenêtres\n"
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: fenêtre du bas\n" msgstr "Main: fenêtre du bas\n"
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: ouvrir fichier\n" msgstr "Main: ouvrir fichier\n"
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "J'ai reçu Alt-[-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n"
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "J'ai reçu Alt-%c! (%d)\n" msgstr "J'ai reçu Alt-%c! (%d)\n"
@ -800,51 +800,51 @@ msgstr " Fichier: ..."
msgid "Modified" msgid "Modified"
msgstr "Modifié" msgstr "Modifié"
#: winio.c:891 #: winio.c:899
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Déplacement jusqu'à (%d, %d) dans le buffer d'édition\n" msgstr "Déplacement jusqu'à (%d, %d) dans le buffer d'édition\n"
#: winio.c:902 #: winio.c:910
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:945 #: winio.c:953
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "J'ai reçu \"%s\"\n" msgstr "J'ai reçu \"%s\"\n"
#: winio.c:970 #: winio.c:978
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
#: winio.c:972 #: winio.c:980
msgid "All" msgid "All"
msgstr "Tous" msgstr "Tous"
#: winio.c:974 #: winio.c:982
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#: winio.c:1110 #: winio.c:1118
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1114 #: winio.c:1122
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "ligne %d sur %d (%.0f%%), caractère %d sur %d (%.0f%%)" msgstr "ligne %d sur %d (%.0f%%), caractère %d sur %d (%.0f%%)"
#: winio.c:1238 #: winio.c:1246
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Envoi du buffer fichier sur stderr...\n" msgstr "Envoi du buffer fichier sur stderr...\n"
#: winio.c:1240 #: winio.c:1248
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Envoi du cutbuffer sur stderr...\n" msgstr "Envoi du cutbuffer sur stderr...\n"
#: winio.c:1242 #: winio.c:1250
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Envoi d'un buffer sur stderr...\n" msgstr "Envoi d'un buffer sur stderr...\n"

BIN
po/id.gmo

Binary file not shown.

274
po/id.po
View File

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nano-0.9.10\n" "Project-Id-Version: nano-0.9.10\n"
"POT-Creation-Date: 2000-08-01 18:28-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: 2000-06-08 20:56+07:00\n" "PO-Revision-Date: 2000-06-08 20:56+07:00\n"
"Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n" "Last-Translator: Tedi Heriyanto <tedi-h@usa.net>\n"
"Language-Team: Indonesian <id@li.org>\n" "Language-Team: Indonesian <id@li.org>\n"
@ -54,7 +54,7 @@ msgstr "Membaca File"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File untuk disisipkan " msgstr "File untuk disisipkan "
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "Dibatalkan" msgstr "Dibatalkan"
@ -106,249 +106,249 @@ msgstr "Namafile adalah %s"
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "File ada, DITIMPA ?" msgstr "File ada, DITIMPA ?"
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "Panggil menu bantuan" msgstr "Panggil menu bantuan"
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "Tulis file ini ke disk" msgstr "Tulis file ini ke disk"
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "Keluar dari nano" msgstr "Keluar dari nano"
#: global.c:119 #: global.c:121
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "Ke nomor baris tertentu" msgstr "Ke nomor baris tertentu"
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "Justifikasi paragraf ini" msgstr "Justifikasi paragraf ini"
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "Ganti teks dalam editor" msgstr "Ganti teks dalam editor"
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "Sertakan file lain ke file ini" msgstr "Sertakan file lain ke file ini"
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "Cari teks dalam editor" msgstr "Cari teks dalam editor"
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "Pindah ke layar sebelumnya" msgstr "Pindah ke layar sebelumnya"
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "Pindah ke layar berikut" msgstr "Pindah ke layar berikut"
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "Hapus baris saat ini dan taruh dalam cutbuffer" msgstr "Hapus baris saat ini dan taruh dalam cutbuffer"
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "Kembalikan dari cutbuffer ke baris ini" msgstr "Kembalikan dari cutbuffer ke baris ini"
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "Tampilkan posisi kursor" msgstr "Tampilkan posisi kursor"
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "Panggil spell checker (jika ada)" msgstr "Panggil spell checker (jika ada)"
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "Naik satu baris" msgstr "Naik satu baris"
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "Turun satu baris" msgstr "Turun satu baris"
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "Pindah satu karakter ke depan" msgstr "Pindah satu karakter ke depan"
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "Pindah satu karakter ke belakang" msgstr "Pindah satu karakter ke belakang"
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "Pindah ke awal baris ini" msgstr "Pindah ke awal baris ini"
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "Pindah ke akhir baris ini" msgstr "Pindah ke akhir baris ini"
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "Ke baris terawal file" msgstr "Ke baris terawal file"
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "Ke baris terakhir file" msgstr "Ke baris terakhir file"
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "Refresh layar saat ini" msgstr "Refresh layar saat ini"
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "Tandai teks pada lokasi kursor saat ini" msgstr "Tandai teks pada lokasi kursor saat ini"
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "Hapus karakter pada kursor" msgstr "Hapus karakter pada kursor"
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "Hapus satu karakter di kiri kursor" msgstr "Hapus satu karakter di kiri kursor"
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "Masukkan karakter tab" msgstr "Masukkan karakter tab"
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "Sertakan carriage return di posisi kursor" msgstr "Sertakan carriage return di posisi kursor"
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "Jadikan pencarian/penggantian saat ini case (in)sensitive" msgstr "Jadikan pencarian/penggantian saat ini case (in)sensitive"
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "Batalkan fungsi ini" msgstr "Batalkan fungsi ini"
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "Cari Bantuan" msgstr "Cari Bantuan"
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "Tulis" msgstr "Tulis"
#: global.c:159 global.c:323 #: global.c:161 global.c:325
#, fuzzy #, fuzzy
msgid "Exit" msgid "Exit"
msgstr "Keluar" msgstr "Keluar"
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "Ke baris" msgstr "Ke baris"
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "Justifikasi" msgstr "Justifikasi"
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
msgid "Replace" msgid "Replace"
msgstr "Ganti" msgstr "Ganti"
#: global.c:179 #: global.c:181
msgid "Read File" msgid "Read File"
msgstr "Baca File" msgstr "Baca File"
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "Di mana" msgstr "Di mana"
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "Halaman sebelumnya" msgstr "Halaman sebelumnya"
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "Halaman berikutnya" msgstr "Halaman berikutnya"
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "Potong Teks" msgstr "Potong Teks"
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "UnCut Teks" msgstr "UnCut Teks"
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "Pos Kursor" msgstr "Pos Kursor"
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "Mengeja" msgstr "Mengeja"
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "Naik" msgstr "Naik"
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "Turun" msgstr "Turun"
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "Depan" msgstr "Depan"
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "Belakang" msgstr "Belakang"
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "Awal" msgstr "Awal"
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "Akhir" msgstr "Akhir"
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "Refresh" msgstr "Refresh"
#: global.c:231 #: global.c:233
msgid "Mark Text" msgid "Mark Text"
msgstr "Tandai Teks" msgstr "Tandai Teks"
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "Hapus" msgstr "Hapus"
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "Backspace" msgstr "Backspace"
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "Tab" msgstr "Tab"
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "Enter" msgstr "Enter"
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "Baris pertama" msgstr "Baris pertama"
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "Baris terakhir" msgstr "Baris terakhir"
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "Case Sens" msgstr "Case Sens"
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:975 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "Batal" msgstr "Batal"
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "" msgstr ""
@ -417,81 +417,81 @@ msgstr "Pemakaian: nano [GNU long option] [option] +LINE <file>\n"
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Option: Long option Arti\n" msgstr "Option: Long option Arti\n"
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr "" msgstr ""
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr "-V --version Tampilkan versi dan keluar\n" msgstr "-V --version Tampilkan versi dan keluar\n"
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr "-c --const Menampilkan posisi kursor secara konstan\n" msgstr "-c --const Menampilkan posisi kursor secara konstan\n"
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr "-h --help Tampilkan pesan ini\n" msgstr "-h --help Tampilkan pesan ini\n"
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr "-i --autoindent Indentasi baris barus secara otomatis\n" msgstr "-i --autoindent Indentasi baris barus secara otomatis\n"
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "-l --nofollow Jangan ikuti link simbolik, timpa.\n" msgstr "-l --nofollow Jangan ikuti link simbolik, timpa.\n"
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr "-m --mouse Aktifkan mouse\n" msgstr "-m --mouse Aktifkan mouse\n"
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "-r [#cols] --fill=[#cols] Set fill col ke (wrap line di) #cols\n" msgstr "-r [#cols] --fill=[#cols] Set fill col ke (wrap line di) #cols\n"
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr "-p --pico Buat dua baris terbawah seperti Pico\n" msgstr "-p --pico Buat dua baris terbawah seperti Pico\n"
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "-s [prog] --speller=[prog] Aktifkan speller alternatif\n" msgstr "-s [prog] --speller=[prog] Aktifkan speller alternatif\n"
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
"-t --tempfile Autosave saat keluar, jangan minta konfirmasi\n" "-t --tempfile Autosave saat keluar, jangan minta konfirmasi\n"
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr "-v --view Mode Tampil (baca saja)\n" msgstr "-v --view Mode Tampil (baca saja)\n"
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr "-w --nowrap Jangan wrap baris panjang\n" msgstr "-w --nowrap Jangan wrap baris panjang\n"
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr "-x --nohelp Jangan tampilkan jendela bantuan\n" msgstr "-x --nohelp Jangan tampilkan jendela bantuan\n"
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr "-z --suspend Aktifkan suspend\n" msgstr "-z --suspend Aktifkan suspend\n"
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr "+LINE Mulai pada nomor baris LINE\n" msgstr "+LINE Mulai pada nomor baris LINE\n"
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
@ -499,183 +499,183 @@ msgstr ""
"Pemakaian: nano [option] +LINE <file>\n" "Pemakaian: nano [option] +LINE <file>\n"
"\n" "\n"
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Option Arti\n" msgstr "Option Arti\n"
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr " -T [num]\tGanti lebar tabulasi manjadi num\n" msgstr " -T [num]\tGanti lebar tabulasi manjadi num\n"
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr "-V Tampilkan informasi versi dan keluar\n" msgstr "-V Tampilkan informasi versi dan keluar\n"
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr "-c Menampilkan posisi kursor secara konstan\n" msgstr "-c Menampilkan posisi kursor secara konstan\n"
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr "-h Tampilkan pesan ini\n" msgstr "-h Tampilkan pesan ini\n"
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr "-i Indent baris barus secara otomatis\n" msgstr "-i Indent baris barus secara otomatis\n"
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "-l Jangan ikuti link simbolik, timpa.\n" msgstr "-l Jangan ikuti link simbolik, timpa.\n"
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr "-m Aktifkan mouse\n" msgstr "-m Aktifkan mouse\n"
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr "-r [#cols] Set fill col ke (wrap line di) #cols\n" msgstr "-r [#cols] Set fill col ke (wrap line di) #cols\n"
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr "-s [prog] Aktifkan speller alternatif\n" msgstr "-s [prog] Aktifkan speller alternatif\n"
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr "-p Buat dua baris terbawah seperti Pico\n" msgstr "-p Buat dua baris terbawah seperti Pico\n"
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr "-t Autosave saat keluar, jangan minta konfirmasi.\n" msgstr "-t Autosave saat keluar, jangan minta konfirmasi.\n"
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr "-v Mode Tampil (baca saja)\n" msgstr "-v Mode Tampil (baca saja)\n"
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr "-w Jangan wrap baris panjang\n" msgstr "-w Jangan wrap baris panjang\n"
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr "-x Jangan tampilkan jendela bantuan\n" msgstr "-x Jangan tampilkan jendela bantuan\n"
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr "-z Aktifkan suspend\n" msgstr "-z Aktifkan suspend\n"
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr "+LINE Mulai pada nomor baris LINE\n" msgstr "+LINE Mulai pada nomor baris LINE\n"
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr "nano versi %s oleh Chris Allegretta (compiled %s, %s)\n" msgstr "nano versi %s oleh Chris Allegretta (compiled %s, %s)\n"
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr "Email: nano@asty.org Web: http://www.asty.org/nano\n" msgstr "Email: nano@asty.org Web: http://www.asty.org/nano\n"
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "Set Tanda" msgstr "Set Tanda"
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "Unset Tanda" msgstr "Unset Tanda"
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap dipanggil dengan inptr->data=\"%s\"\n" msgstr "check_wrap dipanggil dengan inptr->data=\"%s\"\n"
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data sekarang =\"%s\"\n" msgstr "current->data sekarang =\"%s\"\n"
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Setelah, data= \"%s\"\n" msgstr "Setelah, data= \"%s\"\n"
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "Kesalahan menghapus tempfile, ack!" msgstr "Kesalahan menghapus tempfile, ack!"
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Tidak dapat membuat nama file sementara: %s" msgstr "Tidak dapat membuat nama file sementara: %s"
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Tidak dapat memanggil program ejaan \"%s\"" msgstr "Tidak dapat memanggil program ejaan \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Tidak dapat memanggil \"ispell\"" msgstr "Tidak dapat memanggil \"ispell\""
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Selesai memeriksa ejaan" msgstr "Selesai memeriksa ejaan"
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?" msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?"
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Tidak dapat menganti ukuran jendela atas" msgstr "Tidak dapat menganti ukuran jendela atas"
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Tidak dapat memindahkan jendela atas" msgstr "Tidak dapat memindahkan jendela atas"
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Tidak dapat mengganti ukuran jendela edit" msgstr "Tidak dapat mengganti ukuran jendela edit"
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Tidak dapat memindah jendela edit" msgstr "Tidak dapat memindah jendela edit"
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Tidak dapat mengganti ukuran jendela bawah" msgstr "Tidak dapat mengganti ukuran jendela bawah"
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Tidak dapat memindah jendela bawah" msgstr "Tidak dapat memindah jendela bawah"
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: menset jendela\n" msgstr "Main: menset jendela\n"
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: jendela bawah\n" msgstr "Main: jendela bawah\n"
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: membuka file\n" msgstr "Main: membuka file\n"
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Saya mendapat Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n"
@ -780,51 +780,51 @@ msgstr " File: ..."
msgid "Modified" msgid "Modified"
msgstr "Dimodifikasi" msgstr "Dimodifikasi"
#: winio.c:891 #: winio.c:899
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Pindah ke (%d, %d) dalam buffer edit\n" msgstr "Pindah ke (%d, %d) dalam buffer edit\n"
#: winio.c:902 #: winio.c:910
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:945 #: winio.c:953
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Saya mendapat \"%s\"\n" msgstr "Saya mendapat \"%s\"\n"
#: winio.c:970 #: winio.c:978
msgid "Yes" msgid "Yes"
msgstr "Ya" msgstr "Ya"
#: winio.c:972 #: winio.c:980
msgid "All" msgid "All"
msgstr "Semua" msgstr "Semua"
#: winio.c:974 #: winio.c:982
msgid "No" msgid "No"
msgstr "Tidak" msgstr "Tidak"
#: winio.c:1110 #: winio.c:1118
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1114 #: winio.c:1122
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)" msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)"
#: winio.c:1238 #: winio.c:1246
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Kirim buffer file ke stderr...\n" msgstr "Kirim buffer file ke stderr...\n"
#: winio.c:1240 #: winio.c:1248
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Kirim cutbuffer ke stderr...\n" msgstr "Kirim cutbuffer ke stderr...\n"
#: winio.c:1242 #: winio.c:1250
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Kirim buffer ke stderr...\n" msgstr "Kirim buffer ke stderr...\n"

BIN
po/it.gmo

Binary file not shown.

274
po/it.po
View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.8.7\n" "Project-Id-Version: 0.8.7\n"
"POT-Creation-Date: 2000-08-01 18:28-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: 2000-03-03 04:57+0100\n" "PO-Revision-Date: 2000-03-03 04:57+0100\n"
"Last-Translator: Daniele Medri <madrid@linux.it>\n" "Last-Translator: Daniele Medri <madrid@linux.it>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -54,7 +54,7 @@ msgstr "Lettura file"
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "File da inserire [da ./] " msgstr "File da inserire [da ./] "
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "Cancellato" msgstr "Cancellato"
@ -106,248 +106,248 @@ msgstr "Il nome file
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "File esistente, SOVRASCRIVERE?" msgstr "File esistente, SOVRASCRIVERE?"
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "Invoca menu aiuti" msgstr "Invoca menu aiuti"
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "Salva il file corrente sul disco" msgstr "Salva il file corrente sul disco"
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "Esci da nano" msgstr "Esci da nano"
#: global.c:119 #: global.c:121
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "Vai ad un numero linea specifico" msgstr "Vai ad un numero linea specifico"
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "Giustifica il paragrafo corrente" msgstr "Giustifica il paragrafo corrente"
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "Sostituisci testo senza editor" msgstr "Sostituisci testo senza editor"
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "Inserisci un file dentro il corrente" msgstr "Inserisci un file dentro il corrente"
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "Cerca testo senza editor" msgstr "Cerca testo senza editor"
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "Vai alla schermata precedente" msgstr "Vai alla schermata precedente"
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "Vai alla schermata successiva" msgstr "Vai alla schermata successiva"
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "Taglia la linea corrente e memorizzala nel cutbuffer" msgstr "Taglia la linea corrente e memorizzala nel cutbuffer"
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "Uncut dal cutbuffer dentro la linea corrente" msgstr "Uncut dal cutbuffer dentro la linea corrente"
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "Mostra la posizione del cursore" msgstr "Mostra la posizione del cursore"
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "Invocar el corrector ortográfico (si está disponible)" msgstr "Invocar el corrector ortográfico (si está disponible)"
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "Sposta in alto una linea" msgstr "Sposta in alto una linea"
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "Sposta in basso una linea" msgstr "Sposta in basso una linea"
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "Sposta avanti un carattere" msgstr "Sposta avanti un carattere"
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "Sposta indietro un carattere" msgstr "Sposta indietro un carattere"
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "Sposta all'inizio della linea corrente" msgstr "Sposta all'inizio della linea corrente"
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "Sposta alla fine delle linea corrente" msgstr "Sposta alla fine delle linea corrente"
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "Vai alla prima linea del file" msgstr "Vai alla prima linea del file"
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "Vai all'ultima linea del file" msgstr "Vai all'ultima linea del file"
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "Aggiorna la schermata corrente" msgstr "Aggiorna la schermata corrente"
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "Marca testo nella posizione corrente del cursore" msgstr "Marca testo nella posizione corrente del cursore"
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "Elimina i caratteri sotto il cursore" msgstr "Elimina i caratteri sotto il cursore"
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "Elimina i caratteri a sinistra del cursore" msgstr "Elimina i caratteri a sinistra del cursore"
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "Inserisci un carattere tab" msgstr "Inserisci un carattere tab"
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "Inserisci un ritorno a capo alla posizione del cursore" msgstr "Inserisci un ritorno a capo alla posizione del cursore"
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "Ricerca/Sostituisci con case (in)sensitive" msgstr "Ricerca/Sostituisci con case (in)sensitive"
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "Cancella la funzione corrente" msgstr "Cancella la funzione corrente"
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "Aiuto" msgstr "Aiuto"
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "Sovrascrivi" msgstr "Sovrascrivi"
#: global.c:159 global.c:323 #: global.c:161 global.c:325
msgid "Exit" msgid "Exit"
msgstr "Esci" msgstr "Esci"
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "Vai alla linea" msgstr "Vai alla linea"
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "Giustifica" msgstr "Giustifica"
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
msgid "Replace" msgid "Replace"
msgstr "Sostituisci" msgstr "Sostituisci"
#: global.c:179 #: global.c:181
msgid "Read File" msgid "Read File"
msgstr "Leggi file" msgstr "Leggi file"
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "Dov'è" msgstr "Dov'è"
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "Pag Prec" msgstr "Pag Prec"
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "Pag Seg" msgstr "Pag Seg"
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "Taglia" msgstr "Taglia"
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "UnCut Txt" msgstr "UnCut Txt"
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "Posizione" msgstr "Posizione"
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "Ortografia" msgstr "Ortografia"
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "Alza" msgstr "Alza"
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "Abbassa" msgstr "Abbassa"
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "Avanti" msgstr "Avanti"
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "Indietro" msgstr "Indietro"
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "Inizio" msgstr "Inizio"
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "Fine" msgstr "Fine"
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "Aggiorna" msgstr "Aggiorna"
#: global.c:231 #: global.c:233
msgid "Mark Text" msgid "Mark Text"
msgstr "Marca testo" msgstr "Marca testo"
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "Backspace" msgstr "Backspace"
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "Tab" msgstr "Tab"
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "Invio" msgstr "Invio"
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "Prima linea" msgstr "Prima linea"
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "Ultima linea" msgstr "Ultima linea"
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "Case sens" msgstr "Case sens"
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:975 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "Cancella" msgstr "Cancella"
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "" msgstr ""
@ -402,81 +402,81 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "Opzioni\t\tLunghe opzioni\t\tSignificato\n" msgstr "Opzioni\t\tLunghe opzioni\t\tSignificato\n"
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr "" msgstr ""
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr " -V \t\t--versione\t\tStampa informazioni sulla versione ed esci\n" msgstr " -V \t\t--versione\t\tStampa informazioni sulla versione ed esci\n"
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr " -c \t\t--const\t\t\tMostra sempre la posizione del cursore\n" msgstr " -c \t\t--const\t\t\tMostra sempre la posizione del cursore\n"
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr " -h \t\t--help\t\t\tMostra questo messaggio\n" msgstr " -h \t\t--help\t\t\tMostra questo messaggio\n"
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr " -i \t\t--autoindent\t\tIndentar automáticamente nuevas líneas\n" msgstr " -i \t\t--autoindent\t\tIndentar automáticamente nuevas líneas\n"
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr " -m \t\t--mouse\t\t\tAttiva mouse\n" msgstr " -m \t\t--mouse\t\t\tAttiva mouse\n"
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \t--fill=[#cols]\t\tConfigura riempimento colonne\n" msgstr " -r [#cols] \t--fill=[#cols]\t\tConfigura riempimento colonne\n"
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p\t \t--pico\t\t\tCrea in basso 2 linee come l'aspetto di Pico\n" msgstr " -p\t \t--pico\t\t\tCrea in basso 2 linee come l'aspetto di Pico\n"
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr " -s [prog] \t--speller=[prog]\tAttiva correttore alternativo\n" msgstr " -s [prog] \t--speller=[prog]\tAttiva correttore alternativo\n"
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
" -t \t\t--tempfile\t\tSalvataggio automatico in uscita senza richiesta\n" " -t \t\t--tempfile\t\tSalvataggio automatico in uscita senza richiesta\n"
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr " -v \t\t--view\t\t\tVisualizzazione (sola lettura)\n" msgstr " -v \t\t--view\t\t\tVisualizzazione (sola lettura)\n"
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr " -w \t\t--nowrap\t\tNon interrompere linee lunghe\n" msgstr " -w \t\t--nowrap\t\tNon interrompere linee lunghe\n"
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr " -x \t\t--nohelp\t\tNon mostrare finestra aiuti\n" msgstr " -x \t\t--nohelp\t\tNon mostrare finestra aiuti\n"
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr " -z \t\t--suspend\t\tAbilita sospensione\n" msgstr " -z \t\t--suspend\t\tAbilita sospensione\n"
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr " +LINE\t\t\t\t\tInizia alla linea numero\n" msgstr " +LINE\t\t\t\t\tInizia alla linea numero\n"
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
@ -484,185 +484,185 @@ msgstr ""
"Uso: nano [opzioni] +LINEA <file>\n" "Uso: nano [opzioni] +LINEA <file>\n"
"\n" "\n"
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "Opzioni\t\tSignificato\n" msgstr "Opzioni\t\tSignificato\n"
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr "" msgstr ""
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr " -V \t\tStampa informazioni sulla versione ed esci\n" msgstr " -V \t\tStampa informazioni sulla versione ed esci\n"
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr " -c \t\tMostra sempre la posizione del cursore\n" msgstr " -c \t\tMostra sempre la posizione del cursore\n"
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr " -h \t\tMostra questo messaggio\n" msgstr " -h \t\tMostra questo messaggio\n"
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr " -v \t\tIndentazione automatica nuove linee\n" msgstr " -v \t\tIndentazione automatica nuove linee\n"
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr " -l \t\tNon seguire i link simbolici, sovrascrivi.\n" msgstr " -l \t\tNon seguire i link simbolici, sovrascrivi.\n"
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr " -m \t\tAttiva mouse\n" msgstr " -m \t\tAttiva mouse\n"
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr " -r [#cols] \tRiempimento colonne (interrompi linee a) #cols\n" msgstr " -r [#cols] \tRiempimento colonne (interrompi linee a) #cols\n"
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr " -s [prog] \tAttiva correttore alternativo\n" msgstr " -s [prog] \tAttiva correttore alternativo\n"
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr " -p \t\tCrea in basso 2 linee sullo stile di Pico\n" msgstr " -p \t\tCrea in basso 2 linee sullo stile di Pico\n"
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr " -t \t\tSalvataggio automatico in uscita senza avviso\n" msgstr " -t \t\tSalvataggio automatico in uscita senza avviso\n"
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr " -v \t\tVisualizza (sola lettura)\n" msgstr " -v \t\tVisualizza (sola lettura)\n"
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr " -w \t\tNon interrompere linee lunghe\n" msgstr " -w \t\tNon interrompere linee lunghe\n"
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr " -x \t\tNon mostrare la finestra Aiuti\n" msgstr " -x \t\tNon mostrare la finestra Aiuti\n"
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr " -z \t\tAttiva sospensione\n" msgstr " -z \t\tAttiva sospensione\n"
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr " +LINEA\t\tInizia alla LINEA numero\n" msgstr " +LINEA\t\tInizia alla LINEA numero\n"
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr " nano versione %s di Chris Allegretta (compilato %s, %s\n" msgstr " nano versione %s di Chris Allegretta (compilato %s, %s\n"
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr "Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgstr "Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "" msgstr ""
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "" msgstr ""
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "check_wrap chiamata con inptr->data=\"%s\"\n" msgstr "check_wrap chiamata con inptr->data=\"%s\"\n"
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "current->data ora = \"%d\"\n" msgstr "current->data ora = \"%d\"\n"
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "Dopo, data = \"%s\"\n" msgstr "Dopo, data = \"%s\"\n"
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "" msgstr ""
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "Impossibile creare un nome file temporaneo: %s" msgstr "Impossibile creare un nome file temporaneo: %s"
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "Impossibile invocare correttore ortografico \"%s\"" msgstr "Impossibile invocare correttore ortografico \"%s\""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "Impossibile invocare \"ispell\"" msgstr "Impossibile invocare \"ispell\""
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "Controllo ortografico terminato" msgstr "Controllo ortografico terminato"
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "" msgstr ""
"Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI " "Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI "
"AVVENUTI) ?" "AVVENUTI) ?"
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "Impossibile ridimensionare la finestra superiore" msgstr "Impossibile ridimensionare la finestra superiore"
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "Impossibile spostare la finestra superiore" msgstr "Impossibile spostare la finestra superiore"
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "Impossibile ridimensionare la finestra di modifica" msgstr "Impossibile ridimensionare la finestra di modifica"
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "Impossibile spostare finestra di modifica" msgstr "Impossibile spostare finestra di modifica"
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "Impossibile ridimensionare la finestra inferiore" msgstr "Impossibile ridimensionare la finestra inferiore"
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "Impossibile spostare la finestra inferiore" msgstr "Impossibile spostare la finestra inferiore"
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "Main: configura finestre\n" msgstr "Main: configura finestre\n"
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "Main: finestra inferiore\n" msgstr "Main: finestra inferiore\n"
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "Main: apri file\n" msgstr "Main: apri file\n"
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "Premuto Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n"
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "Premuto Alt-%c! (%d)\n" msgstr "Premuto Alt-%c! (%d)\n"
@ -767,51 +767,51 @@ msgstr "File: ..."
msgid "Modified" msgid "Modified"
msgstr "Modificato" msgstr "Modificato"
#: winio.c:891 #: winio.c:899
#, c-format #, c-format
msgid "Moved to (%d, %d) in edit buffer\n" msgid "Moved to (%d, %d) in edit buffer\n"
msgstr "Mosso in (%d, %d) nel buffer di modifica\n" msgstr "Mosso in (%d, %d) nel buffer di modifica\n"
#: winio.c:902 #: winio.c:910
#, c-format #, c-format
msgid "current->data = \"%s\"\n" msgid "current->data = \"%s\"\n"
msgstr "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n"
#: winio.c:945 #: winio.c:953
#, c-format #, c-format
msgid "I got \"%s\"\n" msgid "I got \"%s\"\n"
msgstr "Premuto \"%s\"\n" msgstr "Premuto \"%s\"\n"
#: winio.c:970 #: winio.c:978
msgid "Yes" msgid "Yes"
msgstr " Sì" msgstr " Sì"
#: winio.c:972 #: winio.c:980
msgid "All" msgid "All"
msgstr " Tutti" msgstr " Tutti"
#: winio.c:974 #: winio.c:982
msgid "No" msgid "No"
msgstr " No" msgstr " No"
#: winio.c:1110 #: winio.c:1118
#, c-format #, c-format
msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgid "do_cursorpos: linepct = %f, bytepct = %f\n"
msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n"
#: winio.c:1114 #: winio.c:1122
msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)"
msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)" msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)"
#: winio.c:1238 #: winio.c:1246
msgid "Dumping file buffer to stderr...\n" msgid "Dumping file buffer to stderr...\n"
msgstr "Copia file buffer sullo stderr...\n" msgstr "Copia file buffer sullo stderr...\n"
#: winio.c:1240 #: winio.c:1248
msgid "Dumping cutbuffer to stderr...\n" msgid "Dumping cutbuffer to stderr...\n"
msgstr "Copia cutbuffer sullo stderr...\n" msgstr "Copia cutbuffer sullo stderr...\n"
#: winio.c:1242 #: winio.c:1250
msgid "Dumping a buffer to stderr...\n" msgid "Dumping a buffer to stderr...\n"
msgstr "Copia un buffer sullo stderr...\n" msgstr "Copia un buffer sullo stderr...\n"

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-08-03 12:58-0400\n" "POT-Creation-Date: 2000-08-03 18:45-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -55,7 +55,7 @@ msgstr ""
msgid "File to insert [from ./] " msgid "File to insert [from ./] "
msgstr "" msgstr ""
#: files.c:272 files.c:296 files.c:486 nano.c:1150 #: files.c:272 files.c:296 files.c:486 nano.c:1146
msgid "Cancelled" msgid "Cancelled"
msgstr "" msgstr ""
@ -107,248 +107,248 @@ msgstr ""
msgid "File exists, OVERWRITE ?" msgid "File exists, OVERWRITE ?"
msgstr "" msgstr ""
#: global.c:116 #: global.c:118
msgid "Invoke the help menu" msgid "Invoke the help menu"
msgstr "" msgstr ""
#: global.c:117 #: global.c:119
msgid "Write the current file to disk" msgid "Write the current file to disk"
msgstr "" msgstr ""
#: global.c:118 #: global.c:120
msgid "Exit from nano" msgid "Exit from nano"
msgstr "" msgstr ""
#: global.c:119 #: global.c:121
msgid "Goto a specific line number" msgid "Goto a specific line number"
msgstr "" msgstr ""
#: global.c:120 #: global.c:122
msgid "Justify the current paragraph" msgid "Justify the current paragraph"
msgstr "" msgstr ""
#: global.c:121 #: global.c:123
msgid "Replace text within the editor" msgid "Replace text within the editor"
msgstr "" msgstr ""
#: global.c:122 #: global.c:124
msgid "Insert another file into the current one" msgid "Insert another file into the current one"
msgstr "" msgstr ""
#: global.c:123 #: global.c:125
msgid "Search for text within the editor" msgid "Search for text within the editor"
msgstr "" msgstr ""
#: global.c:124 #: global.c:126
msgid "Move to the previous screen" msgid "Move to the previous screen"
msgstr "" msgstr ""
#: global.c:125 #: global.c:127
msgid "Move to the next screen" msgid "Move to the next screen"
msgstr "" msgstr ""
#: global.c:126 #: global.c:128
msgid "Cut the current line and store it in the cutbuffer" msgid "Cut the current line and store it in the cutbuffer"
msgstr "" msgstr ""
#: global.c:127 #: global.c:129
msgid "Uncut from the cutbuffer into the current line" msgid "Uncut from the cutbuffer into the current line"
msgstr "" msgstr ""
#: global.c:128 #: global.c:130
msgid "Show the posititon of the cursor" msgid "Show the posititon of the cursor"
msgstr "" msgstr ""
#: global.c:129 #: global.c:131
msgid "Invoke the spell checker (if available)" msgid "Invoke the spell checker (if available)"
msgstr "" msgstr ""
#: global.c:130 #: global.c:132
msgid "Move up one line" msgid "Move up one line"
msgstr "" msgstr ""
#: global.c:131 #: global.c:133
msgid "Move down one line" msgid "Move down one line"
msgstr "" msgstr ""
#: global.c:132 #: global.c:134
msgid "Move forward one character" msgid "Move forward one character"
msgstr "" msgstr ""
#: global.c:133 #: global.c:135
msgid "Move back one character" msgid "Move back one character"
msgstr "" msgstr ""
#: global.c:134 #: global.c:136
msgid "Move to the beginning of the current line" msgid "Move to the beginning of the current line"
msgstr "" msgstr ""
#: global.c:135 #: global.c:137
msgid "Move to the end of the current line" msgid "Move to the end of the current line"
msgstr "" msgstr ""
#: global.c:136 #: global.c:138
msgid "Go to the first line of the file" msgid "Go to the first line of the file"
msgstr "" msgstr ""
#: global.c:137 #: global.c:139
msgid "Go to the last line of the file" msgid "Go to the last line of the file"
msgstr "" msgstr ""
#: global.c:138 #: global.c:140
msgid "Refresh (redraw) the current screen" msgid "Refresh (redraw) the current screen"
msgstr "" msgstr ""
#: global.c:139 #: global.c:141
msgid "Mark text at the current cursor location" msgid "Mark text at the current cursor location"
msgstr "" msgstr ""
#: global.c:140 #: global.c:142
msgid "Delete the character under the cursor" msgid "Delete the character under the cursor"
msgstr "" msgstr ""
#: global.c:142 #: global.c:144
msgid "Delete the character to the left of the cursor" msgid "Delete the character to the left of the cursor"
msgstr "" msgstr ""
#: global.c:143 #: global.c:145
msgid "Insert a tab character" msgid "Insert a tab character"
msgstr "" msgstr ""
#: global.c:144 #: global.c:146
msgid "Insert a carriage return at the cursor position" msgid "Insert a carriage return at the cursor position"
msgstr "" msgstr ""
#: global.c:146 #: global.c:148
msgid "Make the current search or replace case (in)sensitive" msgid "Make the current search or replace case (in)sensitive"
msgstr "" msgstr ""
#: global.c:147 #: global.c:149
msgid "Cancel the current function" msgid "Cancel the current function"
msgstr "" msgstr ""
#: global.c:152 global.c:262 global.c:334 #: global.c:154 global.c:264 global.c:336
msgid "Get Help" msgid "Get Help"
msgstr "" msgstr ""
#: global.c:155 global.c:163 #: global.c:157 global.c:165
msgid "WriteOut" msgid "WriteOut"
msgstr "" msgstr ""
#: global.c:159 global.c:323 #: global.c:161 global.c:325
msgid "Exit" msgid "Exit"
msgstr "" msgstr ""
#: global.c:167 global.c:258 global.c:279 global.c:298 #: global.c:169 global.c:260 global.c:281 global.c:300
msgid "Goto Line" msgid "Goto Line"
msgstr "" msgstr ""
#: global.c:172 global.c:250 #: global.c:174 global.c:252
msgid "Justify" msgid "Justify"
msgstr "" msgstr ""
#: global.c:175 global.c:246 global.c:276 #: global.c:177 global.c:248 global.c:278
msgid "Replace" msgid "Replace"
msgstr "" msgstr ""
#: global.c:179 #: global.c:181
msgid "Read File" msgid "Read File"
msgstr "" msgstr ""
#: global.c:183 #: global.c:185
msgid "Where Is" msgid "Where Is"
msgstr "" msgstr ""
#: global.c:187 global.c:315 #: global.c:189 global.c:317
msgid "Prev Page" msgid "Prev Page"
msgstr "" msgstr ""
#: global.c:191 global.c:319 #: global.c:193 global.c:321
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: global.c:195 #: global.c:197
msgid "Cut Text" msgid "Cut Text"
msgstr "" msgstr ""
#: global.c:198 #: global.c:200
msgid "UnCut Txt" msgid "UnCut Txt"
msgstr "" msgstr ""
#: global.c:202 #: global.c:204
msgid "Cur Pos" msgid "Cur Pos"
msgstr "" msgstr ""
#: global.c:206 #: global.c:208
msgid "To Spell" msgid "To Spell"
msgstr "" msgstr ""
#: global.c:210 #: global.c:212
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: global.c:213 #: global.c:215
msgid "Down" msgid "Down"
msgstr "" msgstr ""
#: global.c:216 #: global.c:218
msgid "Forward" msgid "Forward"
msgstr "" msgstr ""
#: global.c:219 #: global.c:221
msgid "Back" msgid "Back"
msgstr "" msgstr ""
#: global.c:222 #: global.c:224
msgid "Home" msgid "Home"
msgstr "" msgstr ""
#: global.c:225 #: global.c:227
msgid "End" msgid "End"
msgstr "" msgstr ""
#: global.c:228 #: global.c:230
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: global.c:231 #: global.c:233
msgid "Mark Text" msgid "Mark Text"
msgstr "" msgstr ""
#: global.c:234 #: global.c:236
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
#: global.c:238 #: global.c:240
msgid "Backspace" msgid "Backspace"
msgstr "" msgstr ""
#: global.c:242 #: global.c:244
msgid "Tab" msgid "Tab"
msgstr "" msgstr ""
#: global.c:253 #: global.c:255
msgid "Enter" msgid "Enter"
msgstr "" msgstr ""
#: global.c:266 global.c:286 global.c:305 #: global.c:268 global.c:288 global.c:307
msgid "First Line" msgid "First Line"
msgstr "" msgstr ""
#: global.c:269 global.c:289 global.c:308 #: global.c:271 global.c:291 global.c:310
msgid "Last Line" msgid "Last Line"
msgstr "" msgstr ""
#: global.c:272 global.c:292 #: global.c:274 global.c:294
msgid "Case Sens" msgid "Case Sens"
msgstr "" msgstr ""
#: global.c:282 global.c:301 global.c:311 global.c:327 global.c:331 #: global.c:284 global.c:303 global.c:313 global.c:329 global.c:333
#: global.c:337 winio.c:983 #: global.c:339 winio.c:983
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: global.c:295 #: global.c:297
msgid "No Replace" msgid "No Replace"
msgstr "" msgstr ""
@ -399,262 +399,262 @@ msgstr ""
msgid "Option\t\tLong option\t\tMeaning\n" msgid "Option\t\tLong option\t\tMeaning\n"
msgstr "" msgstr ""
#: nano.c:324 #: nano.c:323
msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n" msgid " -T \t\t--tabsize=[num]\t\tSet width of a tab to num\n"
msgstr "" msgstr ""
#: nano.c:328 #: nano.c:326
msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgid " -R\t\t--regexp\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:332 #: nano.c:330
msgid " -V \t\t--version\t\tPrint version information and exit\n" msgid " -V \t\t--version\t\tPrint version information and exit\n"
msgstr "" msgstr ""
#: nano.c:334 #: nano.c:332
msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgid " -c \t\t--const\t\t\tConstantly show cursor position\n"
msgstr "" msgstr ""
#: nano.c:336 #: nano.c:334
msgid " -h \t\t--help\t\t\tShow this message\n" msgid " -h \t\t--help\t\t\tShow this message\n"
msgstr "" msgstr ""
#: nano.c:339 #: nano.c:337
msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:342 #: nano.c:340
msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n"
msgstr "" msgstr ""
#: nano.c:344 #: nano.c:342
msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:347 #: nano.c:345
msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgid " -m \t\t--mouse\t\t\tEnable mouse\n"
msgstr "" msgstr ""
#: nano.c:352 #: nano.c:350
msgid "" msgid ""
" -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
#: nano.c:354 #: nano.c:352
msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n" msgid " -p\t \t--pico\t\t\tMake bottom 2 lines more Pico-like\n"
msgstr "" msgstr ""
#: nano.c:356 #: nano.c:354
msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n"
msgstr "" msgstr ""
#: nano.c:358 #: nano.c:356
msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
#: nano.c:360 #: nano.c:358
msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgid " -v \t\t--view\t\t\tView (read only) mode\n"
msgstr "" msgstr ""
#: nano.c:362 #: nano.c:360
msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n"
msgstr "" msgstr ""
#: nano.c:364 #: nano.c:362
msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgid " -x \t\t--nohelp\t\tDon't show help window\n"
msgstr "" msgstr ""
#: nano.c:366 #: nano.c:364
msgid " -z \t\t--suspend\t\tEnable suspend\n" msgid " -z \t\t--suspend\t\tEnable suspend\n"
msgstr "" msgstr ""
#: nano.c:368 #: nano.c:366
msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgid " +LINE\t\t\t\t\tStart at line number LINE\n"
msgstr "" msgstr ""
#: nano.c:370 #: nano.c:368
msgid "" msgid ""
"Usage: nano [option] +LINE <file>\n" "Usage: nano [option] +LINE <file>\n"
"\n" "\n"
msgstr "" msgstr ""
#: nano.c:371 #: nano.c:369
msgid "Option\t\tMeaning\n" msgid "Option\t\tMeaning\n"
msgstr "" msgstr ""
#: nano.c:373 #: nano.c:370
msgid " -T [num]\tSet width of a tab to num\n" msgid " -T [num]\tSet width of a tab to num\n"
msgstr "" msgstr ""
#: nano.c:375 #: nano.c:371
msgid " -R\t\tUse regular expressions for search\n" msgid " -R\t\tUse regular expressions for search\n"
msgstr "" msgstr ""
#: nano.c:376 #: nano.c:372
msgid " -V \t\tPrint version information and exit\n" msgid " -V \t\tPrint version information and exit\n"
msgstr "" msgstr ""
#: nano.c:377 #: nano.c:373
msgid " -c \t\tConstantly show cursor position\n" msgid " -c \t\tConstantly show cursor position\n"
msgstr "" msgstr ""
#: nano.c:378 #: nano.c:374
msgid " -h \t\tShow this message\n" msgid " -h \t\tShow this message\n"
msgstr "" msgstr ""
#: nano.c:380 #: nano.c:376
msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgid " -k \t\tLet ^K cut from cursor to end of line\n"
msgstr "" msgstr ""
#: nano.c:382 #: nano.c:378
msgid " -i \t\tAutomatically indent new lines\n" msgid " -i \t\tAutomatically indent new lines\n"
msgstr "" msgstr ""
#: nano.c:384 #: nano.c:380
msgid " -l \t\tDon't follow symbolic links, overwrite.\n" msgid " -l \t\tDon't follow symbolic links, overwrite.\n"
msgstr "" msgstr ""
#: nano.c:387 #: nano.c:383
msgid " -m \t\tEnable mouse\n" msgid " -m \t\tEnable mouse\n"
msgstr "" msgstr ""
#: nano.c:391 #: nano.c:387
msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n"
msgstr "" msgstr ""
#: nano.c:392 #: nano.c:388
msgid " -s [prog] \tEnable alternate speller\n" msgid " -s [prog] \tEnable alternate speller\n"
msgstr "" msgstr ""
#: nano.c:393 #: nano.c:389
msgid " -p \t\tMake bottom 2 lines more Pico-like\n" msgid " -p \t\tMake bottom 2 lines more Pico-like\n"
msgstr "" msgstr ""
#: nano.c:394 #: nano.c:390
msgid " -t \t\tAuto save on exit, don't prompt\n" msgid " -t \t\tAuto save on exit, don't prompt\n"
msgstr "" msgstr ""
#: nano.c:395 #: nano.c:391
msgid " -v \t\tView (read only) mode\n" msgid " -v \t\tView (read only) mode\n"
msgstr "" msgstr ""
#: nano.c:396 #: nano.c:392
msgid " -w \t\tDon't wrap long lines\n" msgid " -w \t\tDon't wrap long lines\n"
msgstr "" msgstr ""
#: nano.c:397 #: nano.c:393
msgid " -x \t\tDon't show help window\n" msgid " -x \t\tDon't show help window\n"
msgstr "" msgstr ""
#: nano.c:398 #: nano.c:394
msgid " -z \t\tEnable suspend\n" msgid " -z \t\tEnable suspend\n"
msgstr "" msgstr ""
#: nano.c:399 #: nano.c:395
msgid " +LINE\t\tStart at line number LINE\n" msgid " +LINE\t\tStart at line number LINE\n"
msgstr "" msgstr ""
#: nano.c:406 #: nano.c:402
#, c-format #, c-format
msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n" msgid " nano version %s by Chris Allegretta (compiled %s, %s)\n"
msgstr "" msgstr ""
#: nano.c:408 #: nano.c:404
msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" msgid " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n"
msgstr "" msgstr ""
#: nano.c:443 #: nano.c:439
msgid "Mark Set" msgid "Mark Set"
msgstr "" msgstr ""
#: nano.c:448 #: nano.c:444
msgid "Mark UNset" msgid "Mark UNset"
msgstr "" msgstr ""
#: nano.c:885 #: nano.c:881
#, c-format #, c-format
msgid "check_wrap called with inptr->data=\"%s\"\n" msgid "check_wrap called with inptr->data=\"%s\"\n"
msgstr "" msgstr ""
#: nano.c:936 #: nano.c:932
#, c-format #, c-format
msgid "current->data now = \"%s\"\n" msgid "current->data now = \"%s\"\n"
msgstr "" msgstr ""
#: nano.c:989 #: nano.c:985
#, c-format #, c-format
msgid "After, data = \"%s\"\n" msgid "After, data = \"%s\"\n"
msgstr "" msgstr ""
#: nano.c:1059 #: nano.c:1055
msgid "Error deleting tempfile, ack!" msgid "Error deleting tempfile, ack!"
msgstr "" msgstr ""
#: nano.c:1077 #: nano.c:1073
#, c-format #, c-format
msgid "Could not create a temporary filename: %s" msgid "Could not create a temporary filename: %s"
msgstr "" msgstr ""
#: nano.c:1100 #: nano.c:1096
#, c-format #, c-format
msgid "Could not invoke spell program \"%s\"" msgid "Could not invoke spell program \"%s\""
msgstr "" msgstr ""
#. Why 32512? I dont know! #. Why 32512? I dont know!
#: nano.c:1106 #: nano.c:1102
msgid "Could not invoke \"ispell\"" msgid "Could not invoke \"ispell\""
msgstr "" msgstr ""
#: nano.c:1119 #: nano.c:1115
msgid "Finished checking spelling" msgid "Finished checking spelling"
msgstr "" msgstr ""
#: nano.c:1137 #: nano.c:1133
msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? "
msgstr "" msgstr ""
#: nano.c:1260 #: nano.c:1256
msgid "Cannot resize top win" msgid "Cannot resize top win"
msgstr "" msgstr ""
#: nano.c:1262 #: nano.c:1258
msgid "Cannot move top win" msgid "Cannot move top win"
msgstr "" msgstr ""
#: nano.c:1264 #: nano.c:1260
msgid "Cannot resize edit win" msgid "Cannot resize edit win"
msgstr "" msgstr ""
#: nano.c:1266 #: nano.c:1262
msgid "Cannot move edit win" msgid "Cannot move edit win"
msgstr "" msgstr ""
#: nano.c:1268 #: nano.c:1264
msgid "Cannot resize bottom win" msgid "Cannot resize bottom win"
msgstr "" msgstr ""
#: nano.c:1270 #: nano.c:1266
msgid "Cannot move bottom win" msgid "Cannot move bottom win"
msgstr "" msgstr ""
#: nano.c:1747 #: nano.c:1733
msgid "Main: set up windows\n" msgid "Main: set up windows\n"
msgstr "" msgstr ""
#: nano.c:1769 #: nano.c:1755
msgid "Main: bottom win\n" msgid "Main: bottom win\n"
msgstr "" msgstr ""
#: nano.c:1775 #: nano.c:1761
msgid "Main: open file\n" msgid "Main: open file\n"
msgstr "" msgstr ""
#: nano.c:1848 #: nano.c:1832
#, c-format #, c-format
msgid "I got Alt-[-%c! (%d)\n" msgid "I got Alt-[-%c! (%d)\n"
msgstr "" msgstr ""
#: nano.c:1864 #: nano.c:1848
#, c-format #, c-format
msgid "I got Alt-%c! (%d)\n" msgid "I got Alt-%c! (%d)\n"
msgstr "" msgstr ""

View File

@ -29,7 +29,7 @@ extern int current_x, current_y, posible_max, totlines;
extern int placewewant; extern int placewewant;
extern int mark_beginx, samelinewrap; extern int mark_beginx, samelinewrap;
extern int totsize, temp_opt; extern int totsize, temp_opt;
extern int fill, flags; extern int fill, flags,tabsize;
extern WINDOW *edit, *topwin, *bottomwin; extern WINDOW *edit, *topwin, *bottomwin;
extern char *filename, *answer, *last_search, *last_replace; extern char *filename, *answer, *last_search, *last_replace;

14
winio.c
View File

@ -73,9 +73,9 @@ int xpt(filestruct * fileptr, int index)
tabs++; tabs++;
if (fileptr->data[i] == NANO_CONTROL_I) { if (fileptr->data[i] == NANO_CONTROL_I) {
if (tabs % TABSIZE == 0); if (tabs % tabsize == 0);
else else
tabs += TABSIZE - (tabs % TABSIZE); tabs += tabsize - (tabs % tabsize);
} else if (fileptr->data[i] & 0x80) } else if (fileptr->data[i] & 0x80)
/* Make 8 bit chars only 1 collumn! */ /* Make 8 bit chars only 1 collumn! */
; ;
@ -106,10 +106,10 @@ int actual_x_from_start(filestruct * fileptr, int xplus, int start)
for (i = start; tot <= xplus && fileptr->data[i] != 0; i++, tot++) for (i = start; tot <= xplus && fileptr->data[i] != 0; i++, tot++)
if (fileptr->data[i] == NANO_CONTROL_I) { if (fileptr->data[i] == NANO_CONTROL_I) {
if (tot % TABSIZE == 0) if (tot % tabsize == 0)
tot++; tot++;
else else
tot += TABSIZE - (tot % TABSIZE); tot += tabsize - (tot % tabsize);
} else if (fileptr->data[i] & 0x80) } else if (fileptr->data[i] & 0x80)
tot++; /* Make 8 bit chars only 1 column (again) */ tot++; /* Make 8 bit chars only 1 column (again) */
else if (fileptr->data[i] < 32) else if (fileptr->data[i] < 32)
@ -140,9 +140,9 @@ int strlenpt(char *buf)
tabs++; tabs++;
if (buf[i] == NANO_CONTROL_I) { if (buf[i] == NANO_CONTROL_I) {
if (tabs % TABSIZE == 0); if (tabs % tabsize == 0);
else else
tabs += TABSIZE - (tabs % TABSIZE); tabs += tabsize - (tabs % tabsize);
} else if (buf[i] & 0x80) } else if (buf[i] & 0x80)
/* Make 8 bit chars only 1 collumn! */ /* Make 8 bit chars only 1 collumn! */
; ;
@ -773,7 +773,7 @@ void update_line(filestruct * fileptr, int index)
virt_cur_x++; virt_cur_x++;
if (i < mark_beginx) if (i < mark_beginx)
virt_mark_beginx++; virt_mark_beginx++;
} while (pos % TABSIZE); } while (pos % tabsize);
/* must decrement once to account for tab-is-one-character */ /* must decrement once to account for tab-is-one-character */
if (i < current_x) if (i < current_x)
virt_cur_x--; virt_cur_x--;