From a82b2558ac1a1fdc2a77bd83049b139f26dc627b Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Mon, 30 Apr 2001 12:18:41 +0000 Subject: [PATCH] Added the .gl po file from 1.1 branch git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@626 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- Makefile.in | 13 +- aclocal.m4 | 456 +++++++++++------- config.h.in | 58 ++- configure | 1285 ++++++++++++++++++++------------------------------ configure.in | 2 +- po/ca.po | 461 +++++++++--------- po/cs.po | 461 +++++++++--------- po/de.po | 471 +++++++++--------- po/es.po | 461 +++++++++--------- po/fi.po | 461 +++++++++--------- po/fr.po | 467 +++++++++--------- po/hu.po | 461 +++++++++--------- po/id.po | 465 +++++++++--------- po/it.po | 461 +++++++++--------- 14 files changed, 2936 insertions(+), 3047 deletions(-) diff --git a/Makefile.in b/Makefile.in index c6373156..e364f00d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -57,24 +57,24 @@ POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +host_alias = @host_alias@ +host_triplet = @host@ +BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CURSES_LIB = @CURSES_LIB@ DATADIRNAME = @DATADIRNAME@ -GENCAT = @GENCAT@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_CONFIG = @GLIB_CONFIG@ GLIB_LIBS = @GLIB_LIBS@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ -GT_NO = @GT_NO@ -GT_YES = @GT_YES@ -INCLUDE_LOCALE_H = @INCLUDE_LOCALE_H@ -INSTOBJEXT = @INSTOBJEXT@ -INTLDEPS = @INTLDEPS@ +INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ +INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ +LIBICONV = @LIBICONV@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ PACKAGE = @PACKAGE@ @@ -84,7 +84,6 @@ RANLIB = @RANLIB@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ -l = @l@ bin_PROGRAMS = nano nano_SOURCES = cut.c files.c global.c move.c nano.c nano.h proto.h search.c utils.c winio.c diff --git a/aclocal.m4 b/aclocal.m4 index efced845..fbd0f506 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -125,6 +125,24 @@ for am_file in <<$1>>; do done<<>>dnl>>) changequote([,]))]) +#serial 1 +# This test replaces the one in autoconf. +# Currently this macro should have the same name as the autoconf macro +# because gettext's gettext.m4 (distributed in the automake package) +# still uses it. Otherwise, the use in gettext.m4 makes autoheader +# give these diagnostics: +# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX +# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX + +undefine([AC_ISC_POSIX]) + +AC_DEFUN([AC_ISC_POSIX], + [ + dnl This test replaces the obsolescent AC_ISC_POSIX kludge. + AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) + ] +) + # Configure paths for GLIB # Owen Taylor 97-11-3 @@ -330,9 +348,37 @@ main () # but which still want to provide support for the GNU gettext functionality. # Please note that the actual code is *not* freely available. -# serial 5 - -AC_DEFUN(AM_WITH_NLS, +# serial 9 + +dnl Usage: AM_WITH_NLS([TOOLSYMBOL], [NEEDSYMBOL], [LIBDIR]). +dnl If TOOLSYMBOL is specified and is 'use-libtool', then a libtool library +dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, +dnl depending on --{enable,disable}-{shared,static} and on the presence of +dnl AM-DISABLE-SHARED). Otherwise, a static library +dnl $(top_builddir)/intl/libintl.a will be created. +dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext +dnl implementations (in libc or libintl) without the ngettext() function +dnl will be ignored. +dnl LIBDIR is used to find the intl libraries. If empty, +dnl the value `$(top_builddir)/intl/' is used. +dnl +dnl The result of the configuration is one of three cases: +dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled +dnl and used. +dnl Catalog format: GNU --> install in $(datadir) +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 2) GNU gettext has been found in the system's C library. +dnl Catalog format: GNU --> install in $(datadir) +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 3) No internationalization, always use English msgid. +dnl Catalog format: none +dnl Catalog extension: none +dnl The use of .gmo is historical (it was needed to avoid overwriting the +dnl GNU format catalogs when building on a platform with an X/Open gettext), +dnl but we keep it in order not to force irrelevant filename changes on the +dnl maintainers. +dnl +AC_DEFUN([AM_WITH_NLS], [AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, @@ -341,11 +387,14 @@ AC_DEFUN(AM_WITH_NLS, AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) + BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then - AC_DEFINE(ENABLE_NLS) + AC_DEFINE(ENABLE_NLS, 1, + [Define to 1 if translation of program messages to the user's native language + is requested.]) AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH(included-gettext, [ --with-included-gettext use the GNU gettext library included here], @@ -356,86 +405,58 @@ AC_DEFUN(AM_WITH_NLS, nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then dnl User does not insist on using GNU NLS library. Figure out what - dnl to use. If gettext or catgets are available (in this order) we - dnl use this. Else we have to fall back to GNU NLS library. - dnl catgets is only used if permitted by option --with-catgets. - nls_cv_header_intl= - nls_cv_header_libgt= + dnl to use. If GNU gettext is available we use this. Else we have + dnl to fall back to GNU NLS library. CATOBJEXT=NONE + dnl Add a version number to the cache macros. + define(gt_cv_func_gnugettext_libc, [gt_cv_func_gnugettext]ifelse([$2], need-ngettext, 2, 1)[_libc]) + define(gt_cv_func_gnugettext_libintl, [gt_cv_func_gnugettext]ifelse([$2], need-ngettext, 2, 1)[_libintl]) + AC_CHECK_HEADER(libintl.h, - [AC_CACHE_CHECK([for gettext in libc], gt_cv_func_gettext_libc, - [AC_TRY_LINK([#include ], [return (int) gettext ("")], - gt_cv_func_gettext_libc=yes, gt_cv_func_gettext_libc=no)]) - - if test "$gt_cv_func_gettext_libc" != "yes"; then - AC_CHECK_LIB(intl, bindtextdomain, - [AC_CACHE_CHECK([for gettext in libintl], - gt_cv_func_gettext_libintl, - [AC_CHECK_LIB(intl, gettext, - gt_cv_func_gettext_libintl=yes, - gt_cv_func_gettext_libintl=no)], - gt_cv_func_gettext_libintl=no)]) + [AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, + [AC_TRY_LINK([#include +extern int _nl_msg_cat_cntr;], + [bindtextdomain ("", ""); +return (int) gettext ("")]ifelse([$2], need-ngettext, [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr], + gt_cv_func_gnugettext_libc=yes, + gt_cv_func_gnugettext_libc=no)]) + + if test "$gt_cv_func_gnugettext_libc" != "yes"; then + AC_CACHE_CHECK([for GNU gettext in libintl], + gt_cv_func_gnugettext_libintl, + [gt_save_LIBS="$LIBS" + LIBS="$LIBS -lintl" + AC_TRY_LINK([#include +extern int _nl_msg_cat_cntr;], + [bindtextdomain ("", ""); +return (int) gettext ("")]ifelse([$2], need-ngettext, [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr], + gt_cv_func_gnugettext_libintl=yes, + gt_cv_func_gnugettext_libintl=no) + LIBS="$gt_save_LIBS"]) fi - if test "$gt_cv_func_gettext_libc" = "yes" \ - || test "$gt_cv_func_gettext_libintl" = "yes"; then - AC_DEFINE(HAVE_GETTEXT) - AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl - if test "$MSGFMT" != "no"; then - AC_CHECK_FUNCS(dcgettext) - AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) - AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) - AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; - return _nl_msg_cat_cntr], - [CATOBJEXT=.gmo - DATADIRNAME=share], - [CATOBJEXT=.mo - DATADIRNAME=lib]) - INSTOBJEXT=.mo - fi - fi + if test "$gt_cv_func_gnugettext_libc" = "yes" \ + || test "$gt_cv_func_gnugettext_libintl" = "yes"; then + AC_DEFINE(HAVE_GETTEXT, 1, + [Define if the GNU gettext() function is already present or preinstalled.]) + AC_CHECK_FUNCS(dcgettext) + AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl + if test "$MSGFMT" != "no"; then + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + fi + AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) + CATOBJEXT=.gmo + if test "$gt_cv_func_gnugettext_libintl" = "yes"; then + INTLLIBS="-lintl" + fi + fi ]) if test "$CATOBJEXT" = "NONE"; then - AC_MSG_CHECKING([whether catgets can be used]) - AC_ARG_WITH(catgets, - [ --with-catgets use catgets functions if available], - nls_cv_use_catgets=$withval, nls_cv_use_catgets=no) - AC_MSG_RESULT($nls_cv_use_catgets) - - if test "$nls_cv_use_catgets" = "yes"; then - dnl No gettext in C library. Try catgets next. - AC_CHECK_LIB(i, main) - AC_CHECK_FUNC(catgets, - [AC_DEFINE(HAVE_CATGETS) - INTLOBJS="\$(CATOBJS)" - AC_PATH_PROG(GENCAT, gencat, no)dnl - if test "$GENCAT" != "no"; then - AC_PATH_PROG(GMSGFMT, gmsgfmt, no) - if test "$GMSGFMT" = "no"; then - AM_PATH_PROG_WITH_TEST(GMSGFMT, msgfmt, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no) - fi - AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) - USE_INCLUDED_LIBINTL=yes - CATOBJEXT=.cat - INSTOBJEXT=.cat - DATADIRNAME=lib - INTLDEPS='$(top_builddir)/intl/libintl.a' - INTLLIBS=$INTLDEPS - LIBS=`echo $LIBS | sed -e 's/-lintl//'` - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h - fi]) - fi - fi - - if test "$CATOBJEXT" = "NONE"; then - dnl Neither gettext nor catgets in included in the C library. + dnl GNU gettext is not found in the C library. dnl Fall back on GNU gettext library. nls_cv_use_gnu_gettext=yes fi @@ -450,15 +471,17 @@ AC_DEFUN(AM_WITH_NLS, AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) AC_SUBST(MSGFMT) + BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes CATOBJEXT=.gmo - INSTOBJEXT=.mo - DATADIRNAME=share - INTLDEPS='$(top_builddir)/intl/libintl.a' - INTLLIBS=$INTLDEPS - LIBS=`echo $LIBS | sed -e 's/-lintl//'` - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h + INTLLIBS='ifelse([$3],[],$(top_builddir)/intl,[$3])/libintl.ifelse([$1], use-libtool, [l], [])a' + LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` + fi + + dnl If iconv() is in a separate libiconv library, then anyone linking + dnl with libintl{.a,.so} also needs to link with libiconv. + if test -n "$LIBICONV" && test -n "$INTLLIBS"; then + INTLLIBS="$INTLLIBS $LIBICONV" fi dnl Test whether we really found GNU xgettext. @@ -474,25 +497,51 @@ AC_DEFUN(AM_WITH_NLS, fi fi - # We need to process the po/ directory. + dnl We need to process the po/ directory. POSUB=po - else - DATADIRNAME=share - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h fi - AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl) AC_OUTPUT_COMMANDS( - [case "$CONFIG_FILES" in *po/Makefile.in*) + [case " "$CONFIG_FILES" " in *" po/Makefile.in "* | *" po/Makefile.in:"*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + ;; esac]) - # If this is used in GNU gettext we have to set USE_NLS to `yes' - # because some of the sources are only built for this goal. + dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL + dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext; then - USE_NLS=yes - USE_INCLUDED_LIBINTL=yes + BUILD_INCLUDED_LIBINTL=yes + fi + + dnl intl/plural.c is generated from intl/plural.y. It requires bison, + dnl because plural.y uses bison specific features. It requires at least + dnl bison-1.26 because earlier versions generate a plural.c that doesn't + dnl compile. + dnl bison is only needed for the maintainer (who touches plural.y). But in + dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put + dnl the rule in general Makefile. Now, some people carelessly touch the + dnl files or have a broken "make" program, hence the plural.c rule will + dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not + dnl present or too old. + AC_CHECK_PROGS([INTLBISON], [bison]) + if test -z "$INTLBISON"; then + ac_verc_fail=yes + else + dnl Found it, now check the version. + AC_MSG_CHECKING([version of bison]) +changequote(<<,>>)dnl + ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison .* \([0-9]*\.[0-9.]*\).*$/\1/p'` + case $ac_prog_version in + '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; + 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) +changequote([,])dnl + ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; + *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; + esac + AC_MSG_RESULT([$ac_prog_version]) + fi + if test $ac_verc_fail = yes; then + INTLBISON=: fi dnl These rules are solely for the distribution goal. While doing this @@ -504,22 +553,30 @@ AC_DEFUN(AM_WITH_NLS, done dnl Make all variables we use known to autoconf. + AC_SUBST(BUILD_INCLUDED_LIBINTL) AC_SUBST(USE_INCLUDED_LIBINTL) AC_SUBST(CATALOGS) AC_SUBST(CATOBJEXT) - AC_SUBST(DATADIRNAME) AC_SUBST(GMOFILES) - AC_SUBST(INSTOBJEXT) - AC_SUBST(INTLDEPS) AC_SUBST(INTLLIBS) AC_SUBST(INTLOBJS) AC_SUBST(POFILES) AC_SUBST(POSUB) + + dnl For backward compatibility. Some configure.ins may be using this. + nls_cv_header_intl= + nls_cv_header_libgt= + + dnl For backward compatibility. Some Makefiles may be using this. + DATADIRNAME=share + AC_SUBST(DATADIRNAME) ]) -AC_DEFUN(AM_GNU_GETTEXT, +dnl Usage: Just like AM_WITH_NLS, which see. +AC_DEFUN([AM_GNU_GETTEXT], [AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([AC_ISC_POSIX])dnl AC_REQUIRE([AC_HEADER_STDC])dnl @@ -530,20 +587,16 @@ AC_DEFUN(AM_GNU_GETTEXT, AC_REQUIRE([AC_FUNC_ALLOCA])dnl AC_REQUIRE([AC_FUNC_MMAP])dnl - AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h string.h \ -unistd.h sys/param.h]) - AC_CHECK_FUNCS([getcwd munmap putenv setenv setlocale strchr strcasecmp \ -strdup __argz_count __argz_stringify __argz_next]) - - if test "${ac_cv_func_stpcpy+set}" != "set"; then - AC_CHECK_FUNCS(stpcpy) - fi - if test "${ac_cv_func_stpcpy}" = "yes"; then - AC_DEFINE(HAVE_STPCPY) - fi + AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ +stdlib.h string.h unistd.h sys/param.h]) + AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getcwd mempcpy munmap putenv \ +setenv setlocale stpcpy strchr strcasecmp strdup tsearch \ +__argz_count __argz_stringify __argz_next]) + AM_ICONV + AM_LANGINFO_CODESET AM_LC_MESSAGES - AM_WITH_NLS + AM_WITH_NLS([$1],[$2],[$3]) if test "x$CATOBJEXT" != "x"; then if test "x$ALL_LINGUAS" = "x"; then @@ -551,10 +604,21 @@ strdup __argz_count __argz_stringify __argz_next]) else AC_MSG_CHECKING(for catalogs to be installed) NEW_LINGUAS= - for lang in ${LINGUAS=$ALL_LINGUAS}; do - case "$ALL_LINGUAS" in - *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;; - esac + for presentlang in $ALL_LINGUAS; do + useit=no + for desiredlang in ${LINGUAS-$ALL_LINGUAS}; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi done LINGUAS=$NEW_LINGUAS AC_MSG_RESULT($LINGUAS) @@ -566,47 +630,8 @@ strdup __argz_count __argz_stringify __argz_next]) fi fi - dnl The reference to in the installed file - dnl must be resolved because we cannot expect the users of this - dnl to define HAVE_LOCALE_H. - if test $ac_cv_header_locale_h = yes; then - INCLUDE_LOCALE_H="#include " - else - INCLUDE_LOCALE_H="\ -/* The system does not provide the header . Take care yourself. */" - fi - AC_SUBST(INCLUDE_LOCALE_H) - - dnl Determine which catalog format we have (if any is needed) - dnl For now we know about two different formats: - dnl Linux libc-5 and the normal X/Open format - test -d intl || mkdir intl - if test "$CATOBJEXT" = ".cat"; then - AC_CHECK_HEADER(linux/version.h, msgformat=linux, msgformat=xopen) - - dnl Transform the SED scripts while copying because some dumb SEDs - dnl cannot handle comments. - sed -e '/^#/d' $srcdir/intl/$msgformat-msg.sed > intl/po2msg.sed - fi - dnl po2tbl.sed is always needed. - sed -e '/^#.*[^\\]$/d' -e '/^#$/d' \ - $srcdir/intl/po2tbl.sed.in > intl/po2tbl.sed - - dnl In the intl/Makefile.in we have a special dependency which makes - dnl only sense for gettext. We comment this out for non-gettext - dnl packages. - if test "$PACKAGE" = "gettext"; then - GT_NO="#NO#" - GT_YES= - else - GT_NO= - GT_YES="#YES#" - fi - AC_SUBST(GT_NO) - AC_SUBST(GT_YES) - dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly - dnl find the mkinstalldirs script in another subdir but ($top_srcdir). + dnl find the mkinstalldirs script in another subdir but $(top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then @@ -617,25 +642,28 @@ strdup __argz_count __argz_stringify __argz_next]) fi AC_SUBST(MKINSTALLDIRS) - dnl *** For now the libtool support in intl/Makefile is not for real. - l= - AC_SUBST(l) + dnl Enable libtool support if the surrounding package wishes it. + INTL_LIBTOOL_SUFFIX_PREFIX=ifelse([$1], use-libtool, [l], []) + AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) dnl Generate list of files to be processed by xgettext which will - dnl be included in po/Makefile. - test -d po || mkdir po - if test "x$srcdir" != "x."; then - if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then - posrcprefix="$srcdir/" - else - posrcprefix="../$srcdir/" - fi - else - posrcprefix="../" + dnl be included in po/Makefile. But only do this if the po directory + dnl exists in srcdir. + if test -d $srcdir/po; then + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES fi - rm -f po/POTFILES - sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ - < $srcdir/po/POTFILES.in > po/POTFILES ]) # Search path for a program which passes the given test. @@ -650,7 +678,7 @@ strdup __argz_count __argz_stringify __argz_next]) dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) -AC_DEFUN(AM_PATH_PROG_WITH_TEST, +AC_DEFUN([AM_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) @@ -686,6 +714,85 @@ fi AC_SUBST($1)dnl ]) +#serial AM1 + +dnl From Bruno Haible. + +AC_DEFUN([AM_ICONV], +[ + dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and + dnl those with the standalone portable GNU libiconv installed). + AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + AC_TRY_LINK([#include +#include ], + [iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);], + am_cv_func_iconv=yes) + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS -liconv" + AC_TRY_LINK([#include +#include ], + [iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);], + am_cv_lib_iconv=yes + am_cv_func_iconv=yes) + LIBS="$am_save_LIBS" + fi + ]) + if test "$am_cv_func_iconv" = yes; then + AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) + AC_MSG_CHECKING([for iconv declaration]) + AC_CACHE_VAL(am_cv_proto_iconv, [ + AC_TRY_COMPILE([ +#include +#include +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +#else +size_t iconv(); +#endif +], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) + am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` + AC_MSG_RESULT([$]{ac_t:- + }[$]am_cv_proto_iconv) + AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, + [Define as const if the declaration of iconv() needs const.]) + fi + LIBICONV= + if test "$am_cv_lib_iconv" = yes; then + LIBICONV="-liconv" + fi + AC_SUBST(LIBICONV) +]) + +#serial AM1 + +dnl From Bruno Haible. + +AC_DEFUN([AM_LANGINFO_CODESET], +[ + AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, + [AC_TRY_LINK([#include ], + [char* cs = nl_langinfo(CODESET);], + am_cv_langinfo_codeset=yes, + am_cv_langinfo_codeset=no) + ]) + if test $am_cv_langinfo_codeset = yes; then + AC_DEFINE(HAVE_LANGINFO_CODESET, 1, + [Define if you have and nl_langinfo(CODESET).]) + fi +]) + # Check whether LC_MESSAGES is available in . # Ulrich Drepper , 1995. # @@ -694,15 +801,16 @@ AC_SUBST($1)dnl # but which still want to provide support for the GNU gettext functionality. # Please note that the actual code is *not* freely available. -# serial 1 +# serial 2 -AC_DEFUN(AM_LC_MESSAGES, +AC_DEFUN([AM_LC_MESSAGES], [if test $ac_cv_header_locale_h = yes; then AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then - AC_DEFINE(HAVE_LC_MESSAGES) + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your file defines LC_MESSAGES.]) fi fi]) diff --git a/config.h.in b/config.h.in index 0bb4b94d..69409b0b 100644 --- a/config.h.in +++ b/config.h.in @@ -31,9 +31,6 @@ /* Define to `long' if doesn't define. */ #undef off_t -/* Define if you need to in order for stat and other things to work. */ -#undef _POSIX_SOURCE - /* Define as the return type of signal handlers (int or void). */ #undef RETSIGTYPE @@ -61,21 +58,6 @@ /* Define this if your curses lib has the _use_keypad flag */ #undef HAVE_USEKEYPAD -/* Define this if you have NLS */ -#undef ENABLE_NLS - -/* Define this is you have the catgets command */ -#undef HAVE_CATGETS - -/* Define this is you have GNU gettext */ -#undef HAVE_GETTEXT - -/* Define this for HAVE_LC_MESSAGES */ -#undef HAVE_LC_MESSAGES - -/* Define this if you have the stpcpy function (cool) */ -#undef HAVE_STPCPY - /* Define this to make the nano executable as small as possible */ #undef NANO_SMALL @@ -115,6 +97,12 @@ /* Define if you have the dcgettext function. */ #undef HAVE_DCGETTEXT +/* Define if you have the feof_unlocked function. */ +#undef HAVE_FEOF_UNLOCKED + +/* Define if you have the fgets_unlocked function. */ +#undef HAVE_FGETS_UNLOCKED + /* Define if you have the getcwd function. */ #undef HAVE_GETCWD @@ -124,6 +112,9 @@ /* Define if you have the getpagesize function. */ #undef HAVE_GETPAGESIZE +/* Define if you have the mempcpy function. */ +#undef HAVE_MEMPCPY + /* Define if you have the munmap function. */ #undef HAVE_MUNMAP @@ -151,6 +142,9 @@ /* Define if you have the strdup function. */ #undef HAVE_STRDUP +/* Define if you have the tsearch function. */ +#undef HAVE_TSEARCH + /* Define if you have the vsnprintf function. */ #undef HAVE_VSNPRINTF @@ -184,6 +178,12 @@ /* Define if you have the header file. */ #undef HAVE_REGEX_H +/* Define if you have the header file. */ +#undef HAVE_STDDEF_H + +/* Define if you have the header file. */ +#undef HAVE_STDLIB_H + /* Define if you have the header file. */ #undef HAVE_STRING_H @@ -199,12 +199,28 @@ /* Define if you have the header file. */ #undef HAVE_UNISTD_H -/* Define if you have the i library (-li). */ -#undef HAVE_LIBI - /* Name of package */ #undef PACKAGE /* Version number of package */ #undef VERSION +/* Define if you have the iconv() function. */ +#undef HAVE_ICONV + +/* Define as const if the declaration of iconv() needs const. */ +#undef ICONV_CONST + +/* Define if you have and nl_langinfo(CODESET). */ +#undef HAVE_LANGINFO_CODESET + +/* Define if your file defines LC_MESSAGES. */ +#undef HAVE_LC_MESSAGES + +/* Define to 1 if translation of program messages to the user's native language + is requested. */ +#undef ENABLE_NLS + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#undef HAVE_GETTEXT + diff --git a/configure b/configure index b6a5e693..c7eb2875 100755 --- a/configure +++ b/configure @@ -42,8 +42,6 @@ ac_help="$ac_help --disable-nls do not use Native Language Support" ac_help="$ac_help --with-included-gettext use the GNU gettext library included here" -ac_help="$ac_help - --with-catgets use catgets functions if available" # Initialize some variables set by options. # The variables have the same names as the options, with @@ -585,7 +583,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:589: checking for a BSD compatible install" >&5 +echo "configure:587: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -638,7 +636,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 -echo "configure:642: checking whether build environment is sane" >&5 +echo "configure:640: checking whether build environment is sane" >&5 # Just in case sleep 1 echo timestamp > conftestfile @@ -695,7 +693,7 @@ test "$program_suffix" != NONE && test "$program_transform_name" = "" && program_transform_name="s,x,x," echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:699: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:697: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -741,7 +739,7 @@ EOF missing_dir=`cd $ac_aux_dir && pwd` echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 -echo "configure:745: checking for working aclocal" >&5 +echo "configure:743: checking for working aclocal" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -754,7 +752,7 @@ else fi echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 -echo "configure:758: checking for working autoconf" >&5 +echo "configure:756: checking for working autoconf" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -767,7 +765,7 @@ else fi echo $ac_n "checking for working automake""... $ac_c" 1>&6 -echo "configure:771: checking for working automake" >&5 +echo "configure:769: checking for working automake" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -780,7 +778,7 @@ else fi echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 -echo "configure:784: checking for working autoheader" >&5 +echo "configure:782: checking for working autoheader" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -793,7 +791,7 @@ else fi echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 -echo "configure:797: checking for working makeinfo" >&5 +echo "configure:795: checking for working makeinfo" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -809,12 +807,12 @@ fi -ALL_LINGUAS="es de fr it id fi hu ca cs" +ALL_LINGUAS="es de fr it id fi hu ca cs gl" # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:818: checking for $ac_word" >&5 +echo "configure:816: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -844,7 +842,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:848: checking for $ac_word" >&5 +echo "configure:846: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -895,7 +893,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:899: checking for $ac_word" >&5 +echo "configure:897: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -927,7 +925,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:931: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:929: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -938,12 +936,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 942 "configure" +#line 940 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -969,12 +967,12 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:973: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:971: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:978: checking whether we are using GNU C" >&5 +echo "configure:976: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -983,7 +981,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:987: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:985: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -1002,7 +1000,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1006: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:1004: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1033,30 +1031,52 @@ else fi fi -echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 -echo "configure:1038: checking for POSIXized ISC" >&5 -if test -d /etc/conf/kconfig.d && - grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 -then - echo "$ac_t""yes" 1>&6 - ISC=yes # If later tests want to check for ISC. - cat >> confdefs.h <<\EOF -#define _POSIX_SOURCE 1 + + echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6 +echo "configure:1037: checking for strerror in -lcposix" >&5 +ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lcposix $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" - if test "$GCC" = yes; then - CC="$CC -posix" - else - CC="$CC -Xp" - fi +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + LIBS="$LIBS -lcposix" else echo "$ac_t""no" 1>&6 - ISC= fi + + echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:1060: checking how to run the C preprocessor" >&5 +echo "configure:1080: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -1071,13 +1091,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1081: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1101: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1088,13 +1108,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1098: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1118: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1105,13 +1125,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1115: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1135: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1136,12 +1156,12 @@ fi echo "$ac_t""$CPP" 1>&6 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:1140: checking for ANSI C header files" >&5 +echo "configure:1160: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1149,7 +1169,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1153: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1173: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1166,7 +1186,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1184,7 +1204,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1205,7 +1225,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -1216,7 +1236,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:1220: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1240: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -1243,17 +1263,17 @@ for ac_hdr in fcntl.h unistd.h malloc.h termios.h termio.h limits.h getopt.h reg do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1247: checking for $ac_hdr" >&5 +echo "configure:1267: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1257: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1277: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1397,7 +1417,7 @@ fi echo $ac_n "checking whether to use slang""... $ac_c" 1>&6 -echo "configure:1401: checking whether to use slang" >&5 +echo "configure:1421: checking whether to use slang" >&5 CURSES_LIB_NAME="" # Check whether --with-slang or --without-slang was given. if test "${with_slang+set}" = set; then @@ -1417,17 +1437,17 @@ if test "${with_slang+set}" = set; then ac_safe=`echo "slcurses.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for slcurses.h""... $ac_c" 1>&6 -echo "configure:1421: checking for slcurses.h" >&5 +echo "configure:1441: checking for slcurses.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1431: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1451: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1444,21 +1464,21 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for SLtt_initialize in -lslang""... $ac_c" 1>&6 -echo "configure:1448: checking for SLtt_initialize in -lslang" >&5 +echo "configure:1468: checking for SLtt_initialize in -lslang" >&5 _libs=$LIBS LIBS="$LIBS -lslang" if test "$cross_compiling" = yes; then echo "configure: warning: *** Can not use slang when cross-compiling" 1>&2 else cat > conftest.$ac_ext < #include int main () { SLtt_initialize (NULL); return 0; } EOF -if { (eval echo configure:1462: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -1481,7 +1501,7 @@ else # We might need the term library for termlib in ncurses curses termcap terminfo termlib; do echo $ac_n "checking for tputs in -l${termlib}""... $ac_c" 1>&6 -echo "configure:1485: checking for tputs in -l${termlib}" >&5 +echo "configure:1505: checking for tputs in -l${termlib}" >&5 ac_lib_var=`echo ${termlib}'_'tputs | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1489,7 +1509,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l${termlib} $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1524: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1524,20 +1544,20 @@ fi done echo $ac_n "checking for SLtt_initialize in -lslang $tcap""... $ac_c" 1>&6 -echo "configure:1528: checking for SLtt_initialize in -lslang $tcap" >&5 +echo "configure:1548: checking for SLtt_initialize in -lslang $tcap" >&5 LIBS="$LIBS $tcap" if test "$cross_compiling" = yes; then echo "configure: warning: *** Can not use slang when cross-compiling" 1>&2 else cat > conftest.$ac_ext < #include int main () { SLtt_initialize (NULL); return 0; } EOF -if { (eval echo configure:1541: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1561: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -1559,20 +1579,20 @@ else echo "$ac_t""no" 1>&6 # We might need the math library echo $ac_n "checking for SLtt_initialize in -lslang $tcap -lm""... $ac_c" 1>&6 -echo "configure:1563: checking for SLtt_initialize in -lslang $tcap -lm" >&5 +echo "configure:1583: checking for SLtt_initialize in -lslang $tcap -lm" >&5 LIBS="$LIBS -lm" if test "$cross_compiling" = yes; then echo "configure: warning: *** Can not use slang when cross-compiling" 1>&2 else cat > conftest.$ac_ext < #include int main () { SLtt_initialize (NULL); return 0; } EOF -if { (eval echo configure:1576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1596: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -1629,12 +1649,12 @@ fi for ac_func in snprintf vsnprintf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1633: checking for $ac_func" >&5 +echo "configure:1653: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1681: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1736,7 +1756,7 @@ fi # Extract the first word of "glib-config", so it can be a program name with args. set dummy glib-config; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1740: checking for $ac_word" >&5 +echo "configure:1760: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GLIB_CONFIG'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1771,7 +1791,7 @@ fi min_glib_version=1.2.4 echo $ac_n "checking for GLIB - version >= $min_glib_version""... $ac_c" 1>&6 -echo "configure:1775: checking for GLIB - version >= $min_glib_version" >&5 +echo "configure:1795: checking for GLIB - version >= $min_glib_version" >&5 no_glib="" if test "$GLIB_CONFIG" = "no" ; then no_glib=yes @@ -1794,7 +1814,7 @@ echo "configure:1775: checking for GLIB - version >= $min_glib_version" >&5 echo $ac_n "cross compiling; assumed OK... $ac_c" else cat > conftest.$ac_ext < @@ -1870,7 +1890,7 @@ main () } EOF -if { (eval echo configure:1874: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1894: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -1904,7 +1924,7 @@ fi CFLAGS="$CFLAGS $GLIB_CFLAGS" LIBS="$LIBS $GLIB_LIBS" cat > conftest.$ac_ext < @@ -1914,7 +1934,7 @@ int main() { return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ; return 0; } EOF -if { (eval echo configure:1918: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1938: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding GLIB or finding the wrong" @@ -1961,12 +1981,12 @@ fi echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 -echo "configure:1965: checking return type of signal handlers" >&5 +echo "configure:1985: checking return type of signal handlers" >&5 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1983,7 +2003,7 @@ int main() { int i; ; return 0; } EOF -if { (eval echo configure:1987: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2007: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_type_signal=void else @@ -2002,12 +2022,12 @@ EOF echo $ac_n "checking for vprintf""... $ac_c" 1>&6 -echo "configure:2006: checking for vprintf" >&5 +echo "configure:2026: checking for vprintf" >&5 if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_vprintf=yes" else @@ -2054,12 +2074,12 @@ fi if test "$ac_cv_func_vprintf" != yes; then echo $ac_n "checking for _doprnt""... $ac_c" 1>&6 -echo "configure:2058: checking for _doprnt" >&5 +echo "configure:2078: checking for _doprnt" >&5 if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2106: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func__doprnt=yes" else @@ -2109,12 +2129,12 @@ fi for ac_func in getopt_long do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2113: checking for $ac_func" >&5 +echo "configure:2133: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2161: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2170,17 +2190,17 @@ then do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2174: checking for $ac_hdr" >&5 +echo "configure:2194: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2184: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2204: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2207,7 +2227,7 @@ fi done echo $ac_n "checking for tgetent in -lncurses""... $ac_c" 1>&6 -echo "configure:2211: checking for tgetent in -lncurses" >&5 +echo "configure:2231: checking for tgetent in -lncurses" >&5 ac_lib_var=`echo ncurses'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2215,7 +2235,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lncurses $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2250: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2251,7 +2271,7 @@ fi if eval "test x$CURSES_LIB_NAME = x" then echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6 -echo "configure:2255: checking for tgetent in -lcurses" >&5 +echo "configure:2275: checking for tgetent in -lcurses" >&5 ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2259,7 +2279,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lcurses $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2294: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2296,7 +2316,7 @@ fi if eval "test x$CURSES_LIB_NAME = x" then echo $ac_n "checking for initscr in -lcurses""... $ac_c" 1>&6 -echo "configure:2300: checking for initscr in -lcurses" >&5 +echo "configure:2320: checking for initscr in -lcurses" >&5 ac_lib_var=`echo curses'_'initscr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2304,7 +2324,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lcurses $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2339: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2340,7 +2360,7 @@ fi if eval "test x$CURSES_LIB_NAME = x" then echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6 -echo "configure:2344: checking for tgetent in -ltermcap" >&5 +echo "configure:2364: checking for tgetent in -ltermcap" >&5 ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2348,7 +2368,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ltermcap $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2383: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2394,7 +2414,7 @@ fi if test x$slang_support != xyes; then echo $ac_n "checking for wresize in -l$CURSES_LIB_NAME""... $ac_c" 1>&6 -echo "configure:2398: checking for wresize in -l$CURSES_LIB_NAME" >&5 +echo "configure:2418: checking for wresize in -l$CURSES_LIB_NAME" >&5 ac_lib_var=`echo $CURSES_LIB_NAME'_'wresize | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2402,7 +2422,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l$CURSES_LIB_NAME $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2437,7 +2457,7 @@ else fi echo $ac_n "checking for resizeterm in -l$CURSES_LIB_NAME""... $ac_c" 1>&6 -echo "configure:2441: checking for resizeterm in -l$CURSES_LIB_NAME" >&5 +echo "configure:2461: checking for resizeterm in -l$CURSES_LIB_NAME" >&5 ac_lib_var=`echo $CURSES_LIB_NAME'_'resizeterm | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2445,7 +2465,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l$CURSES_LIB_NAME $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2482,12 +2502,12 @@ fi # Taken from aumix (can't tell form the variable name?) echo $ac_n "checking for private member _use_keypad in WINDOW""... $ac_c" 1>&6 -echo "configure:2486: checking for private member _use_keypad in WINDOW" >&5 +echo "configure:2506: checking for private member _use_keypad in WINDOW" >&5 if eval "test \"`echo '$''{'aumix_cv_struct_window_usekeypad'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -2498,7 +2518,7 @@ int main() { WINDOW w; w._use_keypad; ; return 0; } EOF -if { (eval echo configure:2502: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2522: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* aumix_cv_struct_window_usekeypad=yes else @@ -2541,10 +2561,37 @@ then LDFLAGS="$LDFLAGS $glib_libs" fi + +# Make sure we can run config.sub. +if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then : +else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } +fi + +echo $ac_n "checking host system type""... $ac_c" 1>&6 +echo "configure:2572: checking host system type" >&5 + +host_alias=$host +case "$host_alias" in +NONE) + case $nonopt in + NONE) + if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then : + else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; } + fi ;; + *) host_alias=$nonopt ;; + esac ;; +esac + +host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias` +host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` +echo "$ac_t""$host" 1>&6 + # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2548: checking for $ac_word" >&5 +echo "configure:2595: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2572,12 +2619,12 @@ else fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:2576: checking for working const" >&5 +echo "configure:2623: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2677: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -2647,21 +2694,21 @@ EOF fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:2651: checking for inline" >&5 +echo "configure:2698: checking for inline" >&5 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2712: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -2687,12 +2734,12 @@ EOF esac echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:2691: checking for off_t" >&5 +echo "configure:2738: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -2720,12 +2767,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:2724: checking for size_t" >&5 +echo "configure:2771: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -2755,19 +2802,19 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:2759: checking for working alloca.h" >&5 +echo "configure:2806: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:2771: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2818: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -2788,12 +2835,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:2792: checking for alloca" >&5 +echo "configure:2839: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -2853,12 +2900,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:2857: checking whether alloca needs Cray hooks" >&5 +echo "configure:2904: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2887: checking for $ac_func" >&5 +echo "configure:2934: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2962: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2938,7 +2985,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:2942: checking stack direction for C alloca" >&5 +echo "configure:2989: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2946,7 +2993,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3016: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -2990,17 +3037,17 @@ for ac_hdr in unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2994: checking for $ac_hdr" >&5 +echo "configure:3041: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3004: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3051: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3029,12 +3076,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3033: checking for $ac_func" >&5 +echo "configure:3080: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3108: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3082,7 +3129,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:3086: checking for working mmap" >&5 +echo "configure:3133: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3090,7 +3137,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3281: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -3252,23 +3299,23 @@ EOF fi - - for ac_hdr in argz.h limits.h locale.h nl_types.h malloc.h string.h \ -unistd.h sys/param.h + + for ac_hdr in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ +stdlib.h string.h unistd.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3262: checking for $ac_hdr" >&5 +echo "configure:3309: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3272: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3319: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3294,16 +3341,17 @@ else fi done - for ac_func in getcwd munmap putenv setenv setlocale strchr strcasecmp \ -strdup __argz_count __argz_stringify __argz_next + for ac_func in feof_unlocked fgets_unlocked getcwd mempcpy munmap putenv \ +setenv setlocale stpcpy strchr strcasecmp strdup tsearch \ +__argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3302: checking for $ac_func" >&5 +echo "configure:3350: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3351,85 +3399,171 @@ fi done - if test "${ac_cv_func_stpcpy+set}" != "set"; then - for ac_func in stpcpy -do -echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3359: checking for $ac_func" >&5 -if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + + echo $ac_n "checking for iconv""... $ac_c" 1>&6 +echo "configure:3405: checking for iconv" >&5 +if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - cat > conftest.$ac_ext < conftest.$ac_ext < -/* Override any gcc2 internal prototype to avoid an error. */ -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char $ac_func(); - +#include +#include +int main() { +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); +; return 0; } +EOF +if { (eval echo configure:3423: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + am_cv_func_iconv=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 +fi +rm -f conftest* + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS -liconv" + cat > conftest.$ac_ext < +#include int main() { +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); +; return 0; } +EOF +if { (eval echo configure:3445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + am_cv_lib_iconv=yes + am_cv_func_iconv=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 +fi +rm -f conftest* + LIBS="$am_save_LIBS" + fi + +fi -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined (__stub_$ac_func) || defined (__stub___$ac_func) -choke me +echo "$ac_t""$am_cv_func_iconv" 1>&6 + if test "$am_cv_func_iconv" = yes; then + cat >> confdefs.h <<\EOF +#define HAVE_ICONV 1 +EOF + + echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6 +echo "configure:3466: checking for iconv declaration" >&5 + if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + + cat > conftest.$ac_ext < +#include +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else -$ac_func(); +size_t iconv(); #endif +int main() { + ; return 0; } EOF -if { (eval echo configure:3387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3491: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* - eval "ac_cv_func_$ac_func=yes" + am_cv_proto_iconv_arg1="" else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* - eval "ac_cv_func_$ac_func=no" + am_cv_proto_iconv_arg1="const" fi rm -f conftest* + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" fi -if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then - echo "$ac_t""yes" 1>&6 - ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` - cat >> confdefs.h <&6 + cat >> confdefs.h <&6 +echo "configure:3520: checking for nl_langinfo and CODESET" >&5 +if eval "test \"`echo '$''{'am_cv_langinfo_codeset'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 else - echo "$ac_t""no" 1>&6 + cat > conftest.$ac_ext < +int main() { +char* cs = nl_langinfo(CODESET); +; return 0; } +EOF +if { (eval echo configure:3532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + am_cv_langinfo_codeset=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + am_cv_langinfo_codeset=no +fi +rm -f conftest* + fi -done - fi - if test "${ac_cv_func_stpcpy}" = "yes"; then - cat >> confdefs.h <<\EOF -#define HAVE_STPCPY 1 +echo "$ac_t""$am_cv_langinfo_codeset" 1>&6 + if test $am_cv_langinfo_codeset = yes; then + cat >> confdefs.h <<\EOF +#define HAVE_LANGINFO_CODESET 1 EOF - fi + fi if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:3421: checking for LC_MESSAGES" >&5 +echo "configure:3555: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:3433: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3567: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -3450,7 +3584,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:3454: checking whether NLS is requested" >&5 +echo "configure:3588: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -3462,6 +3596,7 @@ fi echo "$ac_t""$USE_NLS" 1>&6 + BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no if test "$USE_NLS" = "yes"; then @@ -3470,7 +3605,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:3474: checking whether included gettext is requested" >&5 +echo "configure:3609: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -3483,23 +3618,24 @@ fi nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then - nls_cv_header_intl= - nls_cv_header_libgt= - CATOBJEXT=NONE + CATOBJEXT=NONE + + + ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:3493: checking for libintl.h" >&5 +echo "configure:3629: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3503: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3639: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3515,173 +3651,84 @@ rm -f conftest* fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 - echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:3520: checking for gettext in libc" >&5 -if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then + echo $ac_n "checking for GNU gettext in libc""... $ac_c" 1>&6 +echo "configure:3656: checking for GNU gettext in libc" >&5 +if eval "test \"`echo '$''{'gt_cv_func_gnugettext1_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < +extern int _nl_msg_cat_cntr; int main() { -return (int) gettext ("") +bindtextdomain ("", ""); +return (int) gettext ("") + _nl_msg_cat_cntr ; return 0; } EOF -if { (eval echo configure:3532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* - gt_cv_func_gettext_libc=yes + gt_cv_func_gnugettext1_libc=yes else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* - gt_cv_func_gettext_libc=no + gt_cv_func_gnugettext1_libc=no fi rm -f conftest* fi -echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 - - if test "$gt_cv_func_gettext_libc" != "yes"; then - echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:3548: checking for bindtextdomain in -lintl" >&5 -ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` -if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - ac_save_LIBS="$LIBS" -LIBS="-lintl $LIBS" -cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=yes" -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=no" -fi -rm -f conftest* -LIBS="$ac_save_LIBS" +echo "$ac_t""$gt_cv_func_gnugettext1_libc" 1>&6 -fi -if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 - echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:3583: checking for gettext in libintl" >&5 -if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then + if test "$gt_cv_func_gnugettext1_libc" != "yes"; then + echo $ac_n "checking for GNU gettext in libintl""... $ac_c" 1>&6 +echo "configure:3686: checking for GNU gettext in libintl" >&5 +if eval "test \"`echo '$''{'gt_cv_func_gnugettext1_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6 -echo "configure:3588: checking for gettext in -lintl" >&5 -ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'` -if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - ac_save_LIBS="$LIBS" -LIBS="-lintl $LIBS" -cat > conftest.$ac_ext < conftest.$ac_ext < +extern int _nl_msg_cat_cntr; int main() { -gettext() +bindtextdomain ("", ""); +return (int) gettext ("") + _nl_msg_cat_cntr ; return 0; } EOF -if { (eval echo configure:3607: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3702: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=yes" + gt_cv_func_gnugettext1_libintl=yes else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=no" + gt_cv_func_gnugettext1_libintl=no fi rm -f conftest* -LIBS="$ac_save_LIBS" - -fi -if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 - gt_cv_func_gettext_libintl=yes -else - echo "$ac_t""no" 1>&6 -gt_cv_func_gettext_libintl=no -fi - -fi - -echo "$ac_t""$gt_cv_func_gettext_libintl" 1>&6 -else - echo "$ac_t""no" 1>&6 + LIBS="$gt_save_LIBS" fi +echo "$ac_t""$gt_cv_func_gnugettext1_libintl" 1>&6 fi - if test "$gt_cv_func_gettext_libc" = "yes" \ - || test "$gt_cv_func_gettext_libintl" = "yes"; then - cat >> confdefs.h <<\EOF + if test "$gt_cv_func_gnugettext1_libc" = "yes" \ + || test "$gt_cv_func_gnugettext1_libintl" = "yes"; then + cat >> confdefs.h <<\EOF #define HAVE_GETTEXT 1 EOF - # Extract the first word of "msgfmt", so it can be a program name with args. -set dummy msgfmt; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3646: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - case "$MSGFMT" in - /*) - ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. - ;; - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in $PATH; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then - ac_cv_path_MSGFMT="$ac_dir/$ac_word" - break - fi - fi - done - IFS="$ac_save_ifs" - test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" - ;; -esac -fi -MSGFMT="$ac_cv_path_MSGFMT" -if test -n "$MSGFMT"; then - echo "$ac_t""$MSGFMT" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - if test "$MSGFMT" != "no"; then - for ac_func in dcgettext + for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3680: checking for $ac_func" >&5 +echo "configure:3727: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3728,251 +3775,44 @@ else fi done - # Extract the first word of "gmsgfmt", so it can be a program name with args. -set dummy gmsgfmt; ac_word=$2 + # Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3735: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then +echo "configure:3782: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - case "$GMSGFMT" in + case "$MSGFMT" in /*) - ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. - ;; - ?:/*) - ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path. + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then - ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - break + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then + ac_cv_path_MSGFMT="$ac_dir/$ac_word" + break + fi fi done IFS="$ac_save_ifs" - test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" + test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" ;; esac fi -GMSGFMT="$ac_cv_path_GMSGFMT" -if test -n "$GMSGFMT"; then - echo "$ac_t""$GMSGFMT" 1>&6 +MSGFMT="$ac_cv_path_MSGFMT" +if test -n "$MSGFMT"; then + echo "$ac_t""$MSGFMT" 1>&6 else echo "$ac_t""no" 1>&6 fi - - # Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3771: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - case "$XGETTEXT" in - /*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in $PATH; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then - ac_cv_path_XGETTEXT="$ac_dir/$ac_word" - break - fi - fi - done - IFS="$ac_save_ifs" - test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" - ;; -esac -fi -XGETTEXT="$ac_cv_path_XGETTEXT" -if test -n "$XGETTEXT"; then - echo "$ac_t""$XGETTEXT" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - - cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - CATOBJEXT=.gmo - DATADIRNAME=share -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - CATOBJEXT=.mo - DATADIRNAME=lib -fi -rm -f conftest* - INSTOBJEXT=.mo - fi - fi - -else - echo "$ac_t""no" 1>&6 -fi - - - if test "$CATOBJEXT" = "NONE"; then - echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6 -echo "configure:3834: checking whether catgets can be used" >&5 - # Check whether --with-catgets or --without-catgets was given. -if test "${with_catgets+set}" = set; then - withval="$with_catgets" - nls_cv_use_catgets=$withval -else - nls_cv_use_catgets=no -fi - - echo "$ac_t""$nls_cv_use_catgets" 1>&6 - - if test "$nls_cv_use_catgets" = "yes"; then - echo $ac_n "checking for main in -li""... $ac_c" 1>&6 -echo "configure:3847: checking for main in -li" >&5 -ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'` -if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - ac_save_LIBS="$LIBS" -LIBS="-li $LIBS" -cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=yes" -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=no" -fi -rm -f conftest* -LIBS="$ac_save_LIBS" - -fi -if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 - ac_tr_lib=HAVE_LIB`echo i | sed -e 's/[^a-zA-Z0-9_]/_/g' \ - -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` - cat >> confdefs.h <&6 -fi - - echo $ac_n "checking for catgets""... $ac_c" 1>&6 -echo "configure:3890: checking for catgets" >&5 -if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - cat > conftest.$ac_ext < -/* Override any gcc2 internal prototype to avoid an error. */ -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char catgets(); - -int main() { - -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined (__stub_catgets) || defined (__stub___catgets) -choke me -#else -catgets(); -#endif - -; return 0; } -EOF -if { (eval echo configure:3918: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - eval "ac_cv_func_catgets=yes" -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_func_catgets=no" -fi -rm -f conftest* -fi - -if eval "test \"`echo '$ac_cv_func_'catgets`\" = yes"; then - echo "$ac_t""yes" 1>&6 - cat >> confdefs.h <<\EOF -#define HAVE_CATGETS 1 -EOF - - INTLOBJS="\$(CATOBJS)" - # Extract the first word of "gencat", so it can be a program name with args. -set dummy gencat; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3940: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - case "$GENCAT" in - /*) - ac_cv_path_GENCAT="$GENCAT" # Let the user override the test with a path. - ;; - ?:/*) - ac_cv_path_GENCAT="$GENCAT" # Let the user override the test with a dos path. - ;; - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - ac_cv_path_GENCAT="$ac_dir/$ac_word" - break - fi - done - IFS="$ac_save_ifs" - test -z "$ac_cv_path_GENCAT" && ac_cv_path_GENCAT="no" - ;; -esac -fi -GENCAT="$ac_cv_path_GENCAT" -if test -n "$GENCAT"; then - echo "$ac_t""$GENCAT" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - if test "$GENCAT" != "no"; then - # Extract the first word of "gmsgfmt", so it can be a program name with args. + if test "$MSGFMT" != "no"; then + # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3976: checking for $ac_word" >&5 +echo "configure:3816: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3994,42 +3834,7 @@ else fi done IFS="$ac_save_ifs" - test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="no" - ;; -esac -fi -GMSGFMT="$ac_cv_path_GMSGFMT" -if test -n "$GMSGFMT"; then - echo "$ac_t""$GMSGFMT" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - - if test "$GMSGFMT" = "no"; then - # Extract the first word of "msgfmt", so it can be a program name with args. -set dummy msgfmt; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4013: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - case "$GMSGFMT" in - /*) - ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. - ;; - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in $PATH; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then - ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - break - fi - fi - done - IFS="$ac_save_ifs" - test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="no" + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi @@ -4040,11 +3845,11 @@ else echo "$ac_t""no" 1>&6 fi - fi - # Extract the first word of "xgettext", so it can be a program name with args. + fi + # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4048: checking for $ac_word" >&5 +echo "configure:3853: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4075,22 +3880,16 @@ else echo "$ac_t""no" 1>&6 fi - USE_INCLUDED_LIBINTL=yes - CATOBJEXT=.cat - INSTOBJEXT=.cat - DATADIRNAME=lib - INTLDEPS='$(top_builddir)/intl/libintl.a' - INTLLIBS=$INTLDEPS - LIBS=`echo $LIBS | sed -e 's/-lintl//'` - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h - fi + CATOBJEXT=.gmo + if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then + INTLLIBS="-lintl" + fi + fi + else echo "$ac_t""no" 1>&6 fi - fi - fi if test "$CATOBJEXT" = "NONE"; then nls_cv_use_gnu_gettext=yes @@ -4102,7 +3901,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4106: checking for $ac_word" >&5 +echo "configure:3905: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4136,7 +3935,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4140: checking for $ac_word" >&5 +echo "configure:3939: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4172,7 +3971,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4176: checking for $ac_word" >&5 +echo "configure:3975: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4204,15 +4003,15 @@ else fi + BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes CATOBJEXT=.gmo - INSTOBJEXT=.mo - DATADIRNAME=share - INTLDEPS='$(top_builddir)/intl/libintl.a' - INTLLIBS=$INTLDEPS - LIBS=`echo $LIBS | sed -e 's/-lintl//'` - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h + INTLLIBS='$(top_builddir)/intl/libintl.a' + LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` + fi + + if test -n "$LIBICONV" && test -n "$INTLLIBS"; then + INTLLIBS="$INTLLIBS $LIBICONV" fi if test "$XGETTEXT" != ":"; then @@ -4224,22 +4023,65 @@ fi fi fi - # We need to process the po/ directory. - POSUB=po - else - DATADIRNAME=share - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h + POSUB=po fi - - # If this is used in GNU gettext we have to set USE_NLS to `yes' - # because some of the sources are only built for this goal. - if test "$PACKAGE" = gettext; then - USE_NLS=yes - USE_INCLUDED_LIBINTL=yes + if test "$PACKAGE" = gettext; then + BUILD_INCLUDED_LIBINTL=yes + fi + + for ac_prog in bison +do +# Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:4041: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_INTLBISON'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$INTLBISON"; then + ac_cv_prog_INTLBISON="$INTLBISON" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_INTLBISON="$ac_prog" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +INTLBISON="$ac_cv_prog_INTLBISON" +if test -n "$INTLBISON"; then + echo "$ac_t""$INTLBISON" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +test -n "$INTLBISON" && break +done + + if test -z "$INTLBISON"; then + ac_verc_fail=yes + else + echo $ac_n "checking version of bison""... $ac_c" 1>&6 +echo "configure:4074: checking version of bison" >&5 + ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison .* \([0-9]*\.[0-9.]*\).*$/\1/p'` + case $ac_prog_version in + '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; + 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) + ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; + *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; + esac + echo "$ac_t""$ac_prog_version" 1>&6 + fi + if test $ac_verc_fail = yes; then + INTLBISON=: fi for lang in $ALL_LINGUAS; do @@ -4256,7 +4098,11 @@ fi - + + nls_cv_header_intl= + nls_cv_header_libgt= + + DATADIRNAME=share @@ -4265,12 +4111,23 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:4269: checking for catalogs to be installed" >&5 +echo "configure:4115: checking for catalogs to be installed" >&5 NEW_LINGUAS= - for lang in ${LINGUAS=$ALL_LINGUAS}; do - case "$ALL_LINGUAS" in - *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;; - esac + for presentlang in $ALL_LINGUAS; do + useit=no + for desiredlang in ${LINGUAS-$ALL_LINGUAS}; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi done LINGUAS=$NEW_LINGUAS echo "$ac_t""$LINGUAS" 1>&6 @@ -4281,66 +4138,6 @@ echo "configure:4269: checking for catalogs to be installed" >&5 fi fi - if test $ac_cv_header_locale_h = yes; then - INCLUDE_LOCALE_H="#include " - else - INCLUDE_LOCALE_H="\ -/* The system does not provide the header . Take care yourself. */" - fi - - - test -d intl || mkdir intl - if test "$CATOBJEXT" = ".cat"; then - ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` -echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:4297: checking for linux/version.h" >&5 -if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - cat > conftest.$ac_ext < -EOF -ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4307: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } -ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` -if test -z "$ac_err"; then - rm -rf conftest* - eval "ac_cv_header_$ac_safe=yes" -else - echo "$ac_err" >&5 - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_header_$ac_safe=no" -fi -rm -f conftest* -fi -if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then - echo "$ac_t""yes" 1>&6 - msgformat=linux -else - echo "$ac_t""no" 1>&6 -msgformat=xopen -fi - - - sed -e '/^#/d' $srcdir/intl/$msgformat-msg.sed > intl/po2msg.sed - fi - sed -e '/^#.*[^\\]$/d' -e '/^#$/d' \ - $srcdir/intl/po2tbl.sed.in > intl/po2tbl.sed - - if test "$PACKAGE" = "gettext"; then - GT_NO="#NO#" - GT_YES= - else - GT_NO= - GT_YES="#YES#" - fi - - - MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" @@ -4350,22 +4147,24 @@ fi fi - l= + INTL_LIBTOOL_SUFFIX_PREFIX= - test -d po || mkdir po - if test "x$srcdir" != "x."; then - if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then - posrcprefix="$srcdir/" - else - posrcprefix="../$srcdir/" - fi - else - posrcprefix="../" + if test -d $srcdir/po; then + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES fi - rm -f po/POTFILES - sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ - < $srcdir/po/POTFILES.in > po/POTFILES trap '' 1 2 15 @@ -4518,29 +4317,31 @@ s%@GLIB_CONFIG@%$GLIB_CONFIG%g s%@GLIB_CFLAGS@%$GLIB_CFLAGS%g s%@GLIB_LIBS@%$GLIB_LIBS%g s%@CURSES_LIB@%$CURSES_LIB%g +s%@host@%$host%g +s%@host_alias@%$host_alias%g +s%@host_cpu@%$host_cpu%g +s%@host_vendor@%$host_vendor%g +s%@host_os@%$host_os%g s%@RANLIB@%$RANLIB%g s%@ALLOCA@%$ALLOCA%g +s%@LIBICONV@%$LIBICONV%g s%@USE_NLS@%$USE_NLS%g s%@MSGFMT@%$MSGFMT%g s%@GMSGFMT@%$GMSGFMT%g s%@XGETTEXT@%$XGETTEXT%g -s%@GENCAT@%$GENCAT%g +s%@INTLBISON@%$INTLBISON%g +s%@BUILD_INCLUDED_LIBINTL@%$BUILD_INCLUDED_LIBINTL%g s%@USE_INCLUDED_LIBINTL@%$USE_INCLUDED_LIBINTL%g s%@CATALOGS@%$CATALOGS%g s%@CATOBJEXT@%$CATOBJEXT%g -s%@DATADIRNAME@%$DATADIRNAME%g s%@GMOFILES@%$GMOFILES%g -s%@INSTOBJEXT@%$INSTOBJEXT%g -s%@INTLDEPS@%$INTLDEPS%g s%@INTLLIBS@%$INTLLIBS%g s%@INTLOBJS@%$INTLOBJS%g s%@POFILES@%$POFILES%g s%@POSUB@%$POSUB%g -s%@INCLUDE_LOCALE_H@%$INCLUDE_LOCALE_H%g -s%@GT_NO@%$GT_NO%g -s%@GT_YES@%$GT_YES%g +s%@DATADIRNAME@%$DATADIRNAME%g s%@MKINSTALLDIRS@%$MKINSTALLDIRS%g -s%@l@%$l%g +s%@INTL_LIBTOOL_SUFFIX_PREFIX@%$INTL_LIBTOOL_SUFFIX_PREFIX%g CEOF EOF @@ -4748,51 +4549,6 @@ cat >> $CONFIG_STATUS <<\EOF fi fi; done -EOF - -cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF -srcdir=$ac_given_srcdir -while test -n "$ac_sources"; do - set $ac_dests; ac_dest=$1; shift; ac_dests=$* - set $ac_sources; ac_source=$1; shift; ac_sources=$* - - echo "linking $srcdir/$ac_source to $ac_dest" - - if test ! -r $srcdir/$ac_source; then - { echo "configure: error: $srcdir/$ac_source: File not found" 1>&2; exit 1; } - fi - rm -f $ac_dest - - # Make relative symlinks. - # Remove last slash and all that follows it. Not all systems have dirname. - ac_dest_dir=`echo $ac_dest|sed 's%/[^/][^/]*$%%'` - if test "$ac_dest_dir" != "$ac_dest" && test "$ac_dest_dir" != .; then - # The dest file is in a subdirectory. - test ! -d "$ac_dest_dir" && mkdir "$ac_dest_dir" - ac_dest_dir_suffix="/`echo $ac_dest_dir|sed 's%^\./%%'`" - # A "../" for each directory in $ac_dest_dir_suffix. - ac_dots=`echo $ac_dest_dir_suffix|sed 's%/[^/]*%../%g'` - else - ac_dest_dir_suffix= ac_dots= - fi - - case "$srcdir" in - [/$]*) ac_rel_source="$srcdir/$ac_source" ;; - *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;; - esac - - # Make a symlink if possible; otherwise try a hard link. - if ln -s $ac_rel_source $ac_dest 2>/dev/null || - ln $srcdir/$ac_source $ac_dest; then : - else - { echo "configure: error: can not link $ac_dest to $srcdir/$ac_source" 1>&2; exit 1; } - fi -done EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h -case "$CONFIG_FILES" in *po/Makefile.in*) +case " "$CONFIG_FILES" " in *" po/Makefile.in "* | *" po/Makefile.in:"*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + ;; esac exit 0 diff --git a/configure.in b/configure.in index ca84701a..f0054600 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(nano.c) AM_INIT_AUTOMAKE(nano, 1.0.1-cvs) AM_CONFIG_HEADER(config.h:config.h.in) -ALL_LINGUAS="es de fr it id fi hu ca cs" +ALL_LINGUAS="es de fr it id fi hu ca cs gl" dnl Checks for programs. AC_PROG_CC diff --git a/po/ca.po b/po/ca.po index d8795cc0..9a042114 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2001-03-21 23:45+0100\n" "Last-Translator: Jordi Mallach , Miquel Vidal " "\n" @@ -16,414 +16,414 @@ msgstr "" "Content-Type: text/plain; charset=iso8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer cridat amb inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "Hem foragitat el cuttbuffer =)\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: no som a la primera línia i la anterior és NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "%d línies llegides" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" no trobat" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Nou Fitxer" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "Fitxer \"%s\" és un directori" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, c-format msgid "File \"%s\" is a device file" msgstr "El fitxer \"%s\" és un dispositiu" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "S'està llegint el Fitxer" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Fitxer a inserir [des de ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Cancel·lat" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "No he pogut obrir el fitxer per a escriure: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Escrites >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "No he pogut tancar %s: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "No he pogut obrir %s per a escriure: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "No he pogut establir permisos %o en %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "%d línies escrites" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Nom de Fitxer a escriure" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "filename és %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "El fitxer existeix, SOBREESCRIURE ?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(més)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "No puc ascendre de directori" # y, c-format #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, c-format msgid "Can't open \"%s\": %s" msgstr "No es pot obrir \"%s\": %s" -#: global.c:131 +#: global.c:132 msgid "Constant cursor position" msgstr "Posició del cursor constant" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Auto sagnar" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Suspendre" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Mode ajuda" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Mode Pico" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Suport per a ratolí" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Tallar fins al final de línia" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Expressions regulars" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Auto ajustar" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Invocar el menú d'ajuda" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Escriure el fitxer actual a disc" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Sortir de nano" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Anar a un número de línia específic" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Justificar el paràgraf actual" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "Desjustificar després d'un justificar" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Reemplaçar text al editor" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Inserir un altre fitxer dins del actual" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Cercar un text al editor" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Moure a la pàgina anterior" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Moure a la pàgina següent" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Tallar la línia actual i desar-la al cutbuffer" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Enganxar el cutbuffer a la línia actual" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Mostrar la posició del cursor" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Invocar el corrector ortogràfic (si està disponible)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Moure una línia cap a dalt" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Moure una línia cap a baix" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Moure endavant un caràcter" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Moure endarrere un caràcter" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Moure al principi de la línia actual" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Moure al final de la línia actual" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Anar a la primera línia del fitxer" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Anar a la darrera línia del fitxer" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Redibuixar la pantalla actual" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Marcar text a la posició actual del cursor" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Suprimir el caràcter sota el cursor" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Suprimir el caràcter a l'esquerra del cursor" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Inserir un caràcter tab" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Inserir un retorn a la posició del cursor" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Fer que la recerca actual siga sensible a majúscules" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Anar a l'explorador de fitxers" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Cancel·lar la funció actual" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Veure Ajuda" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Sortir" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Desar" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Justificar" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "L. Fitxer" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Reemplaçar" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Cercar" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Pàg Ant" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Pàg Seg" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "TallarTxt" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "Desjustificar" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "EnganTxt" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Pos Act" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Ortografia" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Dalt" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Baix" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Endavant" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Endarrere" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Inici" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Fi" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Refrescar" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "MarcarTxt" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Suprimir" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Retrocés" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tab" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Retorn" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Anar a Línia" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Primera Línia" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Última Línia" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "Maj/Min" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Cancel·lar" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "No Reemplaçar" -#: global.c:410 +#: global.c:411 msgid "To Files" msgstr "A Fitxers" -#: nano.c:140 +#: nano.c:141 #, c-format msgid "" "\n" @@ -432,7 +432,7 @@ msgstr "" "\n" "Buffer escrit a %s\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -441,15 +441,15 @@ msgstr "" "\n" "No s'ha escrit %s (existeix el fitxer?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "La mida de la terminal és massa petita per a Nano..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Tecla il·legal en mode VISUALITZACIÓ" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -462,9 +462,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -488,15 +488,15 @@ msgstr "" "opcionals estan representades entre parèntesi:\n" "\n" -#: nano.c:297 +#: nano.c:298 msgid "delete_node(): free'd a node, YAY!\n" msgstr "delete_node(): alliberat un node, YEAH!\n" -#: nano.c:302 +#: nano.c:303 msgid "delete_node(): free'd last node.\n" msgstr "delete_node(): alliberat l'últim node.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -504,85 +504,85 @@ msgstr "" "Sintaxi: nano [opció llarga GNU] [opció] +LÍNIA \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Opció\t\tOpció llarga\t\tSignificat\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr " -T [num]\t--tabsize=[num]\t\tFixar l'amplada de tab en num\n" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr " -R\t\t--regexp\t\tUtilitzar expressions regulars per a ls recerques\n" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr " -V \t\t--version\t\tImprimir versió i sortir\n" -#: nano.c:369 +#: nano.c:370 msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgstr " -c \t\t--const\t\t\tMostrar constantment la posició del cursor\n" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tMostrar aquest missatge\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tSagnar automàticament noves línies\n" -#: nano.c:376 +#: nano.c:377 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 talla des del cursor al final de línia\n" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\t--nofollow\t\tNo seguir enllaços simbólics, sobreescriure'ls\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tHabilitar ratolí\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr " -p\t \t--pico\t\t\tEmular a Pico tant com sigui possible\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#cols] \t--fill=[#cols]\t\tReplenar columnes (ajustar en) #cols\n" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr "" " -s [prog] \t--speller=[prog]\tHabilitar corrector ortogràfic alternatiu\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr " -t \t\t--tempfile\t\tAutodesar en sortir, sense preguntar\n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -v \t\t--view\t\t\tMode visualització (sols lectura)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tNo ajustar línies llargues\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tNo mostrar la finestra d'ajuda\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tHabilitar suspensió\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +LINE\t\t\t\t\tIniciar a la línia número LÍNIA\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -590,92 +590,92 @@ msgstr "" "Sintaxi: nano [opció] +LÍNIA \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Opción\t\tSignificat\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [num]\tFixar l'amplada de tab a num\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr " -R\t\tFer servir expressions regulars per a les recerques\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tImprimir informació sobre la versió i sortir\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tMostrar constantment la posició del cursor\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tMostrar aquest missatge\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -v \t\tSagnar automàticament noves línies\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\t^K talla des del cursor al final de línia\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tNo seguir enllaços simbòlics, sobreescriure'ls\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tHabilitar ratolí\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr " -p \t\tEmular a Pico tant com sigui possible\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#cols] \tOmplir columnes (wrapear línies en) #cols\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [prog] \tHabilitar corrector alternatiu\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tAutodesar en sortir, no preguntar\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tMode visualització (només de lectura)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tNo ajustar línies llargues\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tNo mostrar la finestra d'ajuda\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tHabilitar suspensió\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +LÍNEA\t\tComençar en la línia número LÍNIA\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano versió %s (compilat %s, %s)\n" -#: nano.c:449 +#: nano.c:450 msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr " Correu-e: nano@nano-editor.org\tWeb: http://www.nano-editor.org" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -683,263 +683,263 @@ msgstr "" "\n" " Opcions compilades:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Marca Establida" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Marca Esborrada" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap cridat amb inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data ara = \"%d\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Després, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "Editar un reemplaçament" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "No s'ha pogut crear un fitxer temporal: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "Revisió d'ortografia fallida: no s'ha pogut escriure fitxer temporal!" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Revisió d'ortografia finalitzada" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Revisió d'ortografia fallida" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "Desar el buffer modificat (RESPONDRE \"No\" DESTRUIRÀ ELS CAMVIS) ?" -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "SIGHUP rebut" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "No es pot canviar la mida de la finestra superior" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "No es pot moure la finestra superior" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "No es pot canviar la mida de la finestra d'edició" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "No es pot moure la finestra d'edició" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "No es pot canviar la mida de la finestra inferior" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "No es pot moure la finestra inferior" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "Ara pots desjustificar!" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s habilitar/inhabilitar" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "habilitat" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "inhabilitat" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Detectat NumLock trencat. El tecl. numèric funcionarà amb NumLock activat" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Main: configurar les finestres\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Main: finestra inferior\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Main: obrir fitxer\n" -#: nano.c:2431 +#: nano.c:2437 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "He agafat Alt-O-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "He agafat Alt-[-1-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "He agafat Alt-[-2-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "He agafat Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "He agafat Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Recerca amb Regexp i Majúscules/Minúscules%s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Recerca amb Regexp%s%s" -#: search.c:121 +#: search.c:122 #, c-format msgid "Case Sensitive Search%s%s" msgstr "Recerca amb Regexp i Majúscules/Minúscules%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Cercar%s%s" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (a reemplaçar)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Recerca Cancel·lada" -#: search.c:199 +#: search.c:200 #, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" no trobat" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Recerca Recomençada" -#: search.c:348 +#: search.c:349 #, c-format msgid "Replaced %d occurrences" msgstr "%d ocurrències reemplaçadas" -#: search.c:350 +#: search.c:351 msgid "Replaced 1 occurrence" msgstr "1 ocurrència reemplaçada" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Reemplaçar Cancel·lat" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Reemplaçar aquesta instància?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Impossible de reemplaçar: subexpressió desconeguda!" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Reemplaçar amb [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Reemplaçar amb" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Introdueix número de línia" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Avortat" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Au vinga, sigues assenyat" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Només hi ha %d línies, ometent fins al final" -#: winio.c:123 +#: winio.c:124 #, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start per a xplus=%d ha retornat %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "entrada '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Nou Buffer" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr "Fitxer: ..." -#: winio.c:495 +#: winio.c:496 msgid " DIR: ..." msgstr " DIR: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Modificat" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Mogut a (%d, %d) a buffer d'edició\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "He aconseguit \"%s\"\n" @@ -951,79 +951,80 @@ msgstr "He aconseguit \"%s\"\n" #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Ss" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Tt" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Sí" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Totes" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "No" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "línia %d de %d (%.0f%%), caràcter %d de %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Abocant buffer de fitxer a stderr...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Abocant el cutbuffer a stderr...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Abocant un buffer a stderr...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "L'editor de textos GNU nano" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "versió " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "Per cortesia de:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Agraïments especials per a:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "La Fundació per al Software Lliure (FSF)" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim i Eric S. Raymond per ncurses" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "i per qualsevol dels qui ens hem oblidat esmentar..." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "Gràcies per fer servir nano!\n" diff --git a/po/cs.po b/po/cs.po index 4dec787c..23b6a2e0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,427 +6,427 @@ msgid "" msgstr "" "Project-Id-Version: 1.0.0\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "Last-Translator: Václav Haisman \n" "Language-Team: N/A\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer voláno s inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "Blew away cutbuffer =)\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: nejsme na první øádce a pøedchozí je NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "Pøeèteno %d øádek" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" nenalezen" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Nový Soubor" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "Soubor \"%s\" je adresáø" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, fuzzy, c-format msgid "File \"%s\" is a device file" msgstr "Soubor \"%s\" je soubor zaøízení" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Ètu Soubor" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Soubor pro vlo¾ení [z ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Zru¹eno" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Nemohu otevøít soubor pro zápis: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Zapsáno >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Nemohu zavøít %s: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Nemohu otevøít %s pro zápis: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Nemohu nastavit pøístupvá práva %o na %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "Zapsáno %d øádek" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Jméno Souboru pro zapsání" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "jméno souboru je %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "Soubor existuje, PØEPSAT ?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(více)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "Nemohu se pøesunout o adresáø vý¹e" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, fuzzy, c-format msgid "Can't open \"%s\": %s" msgstr "Nemohu zavøít %s: %s" -#: global.c:131 +#: global.c:132 #, fuzzy msgid "Constant cursor position" msgstr "Konstantní pozice kurzoru" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Automatické odsazení" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Zastavit" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Nápovìdný mód" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Pico mód" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Podpora my¹i" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Vyjmout do konce" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Regulární výrazy" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Automatické zalamování" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Vyvolat menu nápovìdy" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Zapsat aktuální soubor na disk" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Ukonèit nano" -#: global.c:188 +#: global.c:189 #, fuzzy msgid "Goto a specific line number" msgstr "Jdi na øádku" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Zarovnej aktuální odstavec" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "Zru¹ pøedchozí zarovnání" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Zamìn text v editoru" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Vlo¾ soubor do aktuálního souboru" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Hledej text v editoru" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Pøesuò se na pøedchozí obrazovku" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Pøesuò se na dal¹í obrazovku" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Vyjmi aktuální øádku a ulo¾ ji v cutbufferu" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Vlo¾ z cutbufferu do aktuální øádky" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Uka¾ pozici kurzoru" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Vyvolej kontrolu pravopisu (pokud je k dispozici)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Pøesun o rádek nahoru" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Pøesun o øádek dolu" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Pøesun o znak dopøedu" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Pøesun o znak zpìt" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Pøesun na zaèátek aktuální øádky" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Pøesun na konec aktuální øádky" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Pøesun na první øádku souboru" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Pøesun na poslední øádku souboru" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Obnov (pøekresli) obrazovku" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Oznaè text na souèasné pozici kurzoru" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Sma¾ znak pod kurzorem" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Sma¾ znak nalevo od kurzoru" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Vlo¾ znak tabulátoru" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Vlo¾ konec øádky na pozici kurzoru" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "(Ne)rozly¹uj malá/VELKÁ písmena v souèasném vyhledávání nebo zámìnì" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Jdi do prohlí¾eè souborù" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Zru¹ aktuální funkci" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Nápovìda" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Konec" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Zapi¹" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Zarovnání" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 #, fuzzy msgid "Read File" msgstr "Èíst Soubor" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 #, fuzzy msgid "Replace" msgstr "Zámìna" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Kde Je" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Pøedchozí Strana" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Dal¹í Strana" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Vyjmi Text" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "OdZarovnej" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "Zru¹ vyjmutí textu" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Pozice Kurzoru" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Pravopis" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Nahoru" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Dolu" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Dopøedu" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Zpìt" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Domù" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Konec" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Obnov" -#: global.c:302 +#: global.c:303 #, fuzzy msgid "Mark Text" msgstr "Oznaè Text" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Zma¾" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Backspace" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tab" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Enter" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Jdi na Øádku" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "První Øádka" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Poslední Øádka" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "Case Sens" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Storno" -#: global.c:365 +#: global.c:366 #, fuzzy msgid "No Replace" msgstr "Bez zámìny" -#: global.c:410 +#: global.c:411 #, fuzzy msgid "To Files" msgstr "K Souborùm" -#: nano.c:140 +#: nano.c:141 #, fuzzy, c-format msgid "" "\n" @@ -435,7 +435,7 @@ msgstr "" "\n" "Buffer zapsán do %s\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -444,15 +444,15 @@ msgstr "" "\n" "No %s written (file exists?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "Okno je moc malé pro Nano..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Klávesa nepøípustná v PROHLÍ®ECÍM re¾imu" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -465,9 +465,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -487,17 +487,17 @@ msgstr "" "nastavenou klávesnici. Následující klávesy jsou dostupné v hlavním oknì " "editoru. Náhradní klávesy jsou v závorkách:\n" -#: nano.c:297 +#: nano.c:298 #, fuzzy msgid "delete_node(): free'd a node, YAY!\n" msgstr "delete_node(): uzel uvolnìn, YAY!\n" -#: nano.c:302 +#: nano.c:303 #, fuzzy msgid "delete_node(): free'd last node.\n" msgstr "delete_node(): poslední uzel uvolnìn.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -505,86 +505,86 @@ msgstr "" "Pou¾ití: nano [GNU dlouhá volba] [volba] +ØÁDEK \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Volba\t\tDlouhá volba\t\tSmysl\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr "-T [èís]\t--tabsize=[èís]\t\tNastav ¹íøku tabulátoru na èís\n" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr " -R\t\t--regexp\t\tPro vyhledávání pou¾ij regulární výraz\n" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr " -V \t\t--version\t\tVypi¹ informace o verzi a skonèi\n" -#: nano.c:369 +#: nano.c:370 msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgstr " -c \t\t--const\t\t\tStále ukazuj pozici kurzoru\n" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tUka¾ tuto zpráva\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tAutomaticky odsazuj nové øádky\n" -#: nano.c:376 +#: nano.c:377 msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\t--cut\t\t\tNech ^K vyjímat od kurzoru do konce øádky\n" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\t--nofollow\t\tNenásleduj symbolické odkazy, pøepi¹ je\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tPovol my¹\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr " -p\t \t--pico\t\t\tNapodobuj Pico tak, jak jen to jde\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" msgstr "" " -r [#sloupce] \t--fill=[#sloupce]\t\tNastav vyplnìné sloupce na (zalom " "øádky na) #sloupce\n" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr " -s [program] \t--speller=[program]\tPou¾ij jiný kontroler pravopisu\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr " -t \t\t--tempfile\t\tAutomaticky ulo¾ pøi ukonèení, nedotazuj se\n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -t \t\t--view\t\t\tPROHLÍ®ECÍ re¾im (pouze pro ètení)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tNezalamuj dlouhé øádky\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tNeukazuj okno nápovìdy\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tPovol zastavení\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +ØÁDKA\t\t\t\t\tZaèni na øádce èíslo ØÁDKA\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -592,94 +592,94 @@ msgstr "" "Pou¾ití: nano [volba] +ØÁDKA \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Volba\t\tSmysl\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [èís]\tNastav velikost tab na èís\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr " -R\t\tPou¾ívej pro vyhledávání regulární výrazy\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tVypi¹ informace o verzi a skonèi\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tStále ukazuj pozici kurzoru\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tUka¾ tuto zprávu\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -i \t\tAutomaticky odsazuj nové øádky\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\tNech ^K vyjímat od kurzoru do konce øádky\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tNenásleduj symbolické odkazy, pøepi¹ je\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tPovol my¹\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr " -p \t\tNapodobuj Pico tak, jak jen to jde\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr "" " -r [#sloupce] \tNastav vyplnìné sloupce na (zalom øádky na) #sloupce\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [program] \tPou¾ij jiný kontroler pravopisu\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tAutomaticky ulo¾ pøi ukonèení, nedotazuj se\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tPROHLÍ®ECÍ re¾im (pouze pro ètení)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tNezalamuj dlouhé øádky\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tNeukazuj okno pomoci\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tPovol zastavení\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +ØÁDKA\t\tZaèni na øádce ØÁDKA\n" -#: nano.c:446 +#: nano.c:447 #, fuzzy, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano verze %s (kompilováno %s, %s)\n" -#: nano.c:449 +#: nano.c:450 #, fuzzy msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -687,266 +687,266 @@ msgstr "" "\n" " Skompilované volby:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Znaèka Nastavena" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Znaèka OdNastavena" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap zavoláno s inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data nyní = \"%s\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Poté, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "Edituj náhradu" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Nemohu vytvoøit doèasný soubor: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "Kontrola pravopisu selhala: nemohu zapisovat do doèasného souboru!" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Kontrola pravopisu dokonèena" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Kontrola pravopisu selhala" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "Ulo¾ zmìnìný buffer (ODPOVÌÏÍ \"Ne\" ZTRATÍTE ZMÌNY) ? " -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "Pøijat signál SIGHUP" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "Nemohu zmìnit velikost vrchního okna" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "Nemohu pøesunout vrchní okno" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "Nemohu zmìnit velikost editovacího okna" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "Nemohu pøesunout editovací okno" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Nemohu zmìnit velikost spodního okna" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Nemohu pøesunout spodní okno" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "Mù¾e nyní OdZarovnat!" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s povol/zaka¾" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "povoleno" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "zakázáno" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Zji¹tìna porucha NumLocku. Numerická klávesnice nebude fungovat s vypnutým " "NumLockem" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Main: nastav okna\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Main: spodní okno\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Main: otevøi soubor\n" -#: nano.c:2431 +#: nano.c:2437 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Mám Alt-O-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Mám Alt-[-1-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Mám Alt-[-2-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Mám Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Mám Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, fuzzy, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Hledání Pomocí Regexp (rozli¹uj malá/VELKÁ písmena)%s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Hledání pomocí Regexp%s%s" -#: search.c:121 +#: search.c:122 #, fuzzy, c-format msgid "Case Sensitive Search%s%s" msgstr "Hledání (rozli¹uj malá/VELKÁ písmena)%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Hledání" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (k zámìnì)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Hledání Zru¹eno" -#: search.c:199 +#: search.c:200 #, fuzzy, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" nenalezen" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Hledání Zalomeno" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "Zamìnìno %d výskytù" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "Zamìnìn 1 výskyt" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Zámìna Zru¹ena" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Zamìnit tuto instanci?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Zámìna selhala: neznámý podvýraz!" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Zamìn s [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Zamìn s" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Zadej èíslo øádky" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Pøeru¹eno" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Notak, buï rozumný." -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Pouze %d øádek k dispozici, skáèu na poslední øádku" -#: winio.c:123 +#: winio.c:124 #, fuzzy, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start pro xplus=%d vrátilo %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "vstup '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Nový Buffer" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr " Soubor: ..." -#: winio.c:495 +#: winio.c:496 #, fuzzy msgid " DIR: ..." msgstr " Adresáø: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Zmìnìn" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Pøesunut na (%d, %d) v editovacím bufferu\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "Mám \"%s\"\n" @@ -958,80 +958,81 @@ msgstr "M #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Aa" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Vv" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Ano" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "V¹e" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "Ne" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "øádka %d z %d (%.0f%%), znak %d z %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Vyhazuji souborový buffer od stderr...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Vyhazuji cutbuffer do stderr...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Vyhazuji buffer do stderr...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "Nano texotvý editor" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "verze " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "Pøinesen k Vám od:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Speciální díky:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "The Free Software Foundation" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim a Eric S. Raymond za ncurses" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "a komukoliv na koho jsem zapomìli..." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "Dìkuji za u¾ívání nano!\n" diff --git a/po/de.po b/po/de.po index 84422412..e02be54f 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 1.0.0\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2001-02-08 17:56+0200\n" "Last-Translator: Florian König \n" "Language-Team: German \n" @@ -15,414 +15,414 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer aufgerufen mit inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "Inhalt der Zwischenablage verworfen\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: nicht in der ersten Zeile und prev ist NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "%d Zeilen gelesen" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" nicht gefunden" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Neue Datei" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "Datei \"%s\" ist ein Verzeichnis" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, c-format msgid "File \"%s\" is a device file" msgstr "Datei \"%s\" ist eine Gerätedatei" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Lese Datei" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Datei einfügen [von ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Abgebrochen" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Konnte nicht in Datei schreiben: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Schrieb >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Konnte %s nicht schließen: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Konnte %s nicht zum Schreiben öffnen: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Konnte Rechte %o für %s nicht setzen: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "%d Zeilen geschrieben" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Dateiname zum Speichern" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "Dateiname ist %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "Datei exisitiert, ÜBERSCHREIBEN ?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(mehr)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "Konnte nicht in bergeordnetes Verzeichnis wechseln" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, c-format msgid "Can't open \"%s\": %s" msgstr "Konnte \"%s\" nicht öffnen: %s" -#: global.c:131 +#: global.c:132 msgid "Constant cursor position" msgstr "Cursorposition ständig anzeigen" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Automatischer Einzug" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Suspend" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Hilfe-Modus" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Pico-Modus" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Mausunterstützung" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Bis zum Ende ausschneiden" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Reguläre Ausdrücke" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Automatischer Umbruch" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Hilfe-Menü anzeigen" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Datei speichern" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "nano beenden" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Zu einer Zeile springen" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Absatz ausrichten" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "Absatzausrochtung rückgängig machen" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Text im Editor ersetzen" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Datei einfügen" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Im Editor nach Text suchen" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Zu der vorhergehenden Seite springen" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Zu der folgenden Seite springen" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Zeile ausschneiden und in dir Zwischenablage speichern" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Aus der Zwischenablage einfügen" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Cursoposition anzeigen" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Rechtschreibprüfung aufrufen (wenn verfügbar)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Zur vorhergehenden Zeile springen" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Zur folgenden Zeile springen" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Zum folgenden Zeichen springen" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Zum vorhergehenden Zeichen springen" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Zum Zeilenanfang springen" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Zum Zeilenende springen" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Zur ersten Zeile springen" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Zur letzten Zeile springen" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Bildschirm auffrischen (neu zeichnen)" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Text an der derzeitigen Cursorposition markieren" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Zeichen an der Cursorposition löschen" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Zeichen links vom Cursor löschen" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Tabulator einfügen" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Zeilenumbruch an der Cursorposition einfügen" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "" "Groß- und Kleinschreibung bei Suche oder Erstzen (nicht) berücksichtigen" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Zum Dateibrowser" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Funktion abbrechen" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Hilfe" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Beenden" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Speichern" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Ausrichten" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "Datei öffnen" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Ersetzen" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Wo ist" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Seite zurück" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Seite vor" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Ausschneiden" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "Ausrichten rückgängig" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "Ausschneiden rückgängig" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Cursor" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Rechtschr." -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Hoch" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Runter" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Vorwärts" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Zurück" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Pos 1" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Ende" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Auffrischen" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "Text markieren" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Löschen" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Rücktaste" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tab" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Enter" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Zu Zeile" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Erste Zeile" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Letzte Zeile" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "GROSZ/klein" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Abbrechen" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "Keine Ersetzung" -#: global.c:410 +#: global.c:411 msgid "To Files" msgstr "In Dateien" -#: nano.c:140 +#: nano.c:141 #, c-format msgid "" "\n" @@ -431,7 +431,7 @@ msgstr "" "\n" "Puffer in %s geschrieben\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -440,15 +440,15 @@ msgstr "" "\n" "%s nicht geschrieben (Datei existiert?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "Fenstergröße ist zu klein für Nano..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Unzulässige Taste im View Modus" -#: nano.c:203 +#: nano.c:204 #, fuzzy msgid "" " nano help text\n" @@ -462,9 +462,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -479,22 +479,22 @@ msgstr "" "zeigt wichtige Meldungen. Die untersten zwei Zeilen listen die " "meistgebrauchten Tastenkombinationen von nano auf.\n" "\n" -" Tastenkombinationen werden wie folgt abgekärzt: Kombinationen mit der " -"Strg-Taste werden mit einem ^ ausgedräckt. Escape-Sequenzen werden mit dem " -"Meta (M)-Symbol angegeben und können je nach Tastatureinstellung mit Esc, " -"Alt oder Meta eingegeben werden. | Die folgenden Tasten(kombinationen) sind " -"im Hauptfenster verfügbar. Optionale Tasten sind eingeklammert.\n" +" Tastenkombinationen werden wie folgt abgekärzt: Kombinationen mit der Strg-" +"Taste werden mit einem ^ ausgedräckt. Escape-Sequenzen werden mit dem Meta " +"(M)-Symbol angegeben und können je nach Tastatureinstellung mit Esc, Alt " +"oder Meta eingegeben werden. | Die folgenden Tasten(kombinationen) sind im " +"Hauptfenster verfügbar. Optionale Tasten sind eingeklammert.\n" "\n" -#: nano.c:297 +#: nano.c:298 msgid "delete_node(): free'd a node, YAY!\n" msgstr "delete_node(): Knoten freigegeben.\n" -#: nano.c:302 +#: nano.c:303 msgid "delete_node(): free'd last node.\n" msgstr "delete_node(): letzter Knoten freigegeben.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -502,92 +502,92 @@ msgstr "" "Aufruf: nano [lange GNU Option] [Option] +ZEILE \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Option\t\tlange Option\t\tBedeutung\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr "" " -T [Anzahl]\t--tabsize=[Anzahl]\t\tTabulator-Größe auf Anzahl setzen\n" -#: nano.c:363 +#: nano.c:364 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" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr " -V \t\t--version\t\tVersionsinfo ausgeben und beenden\n" -#: nano.c:369 +#: nano.c:370 msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgstr " -c \t\t--const\t\t\tCursorposition ständig anzeigen\n" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tDiese Meldung anzeigen\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tNeue Zeilen automatisch einrücken\n" -#: nano.c:376 +#: nano.c:377 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" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr "" " -l \t\t--nofollow\t\tSymbolischen Links nicht folgen, sondern " "Überschreiben.\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tMaus aktivieren\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr " -\t \t--pico\t\t\tPico so genau wie möglich imitieren\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" msgstr "" " -r [#Spalten] \t--fill=[#Spalten]\tSpalten auffüllen (Zeilenumbruch bei) " "#Spalten\n" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr "" " -s [Programm] \t--speller=[Programm]\tAlternative Rechtschreibprüfung\n" -#: nano.c:395 +#: nano.c:396 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" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr "" " -v \t\t--view\t\t\tNur zum Lesen öffnen (keine Veränderungen m÷glich)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tLange Zeilen nicht in neue Zeilen umbrechen\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tHilfe-Fenster nicht anzeigen\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr "" " -z \t\t--suspend\t\tSuspend (anhalten und zurück zur Shell) aktivieren\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +ZEILE\t\t\t\t\tBei Zeile ZEILE beginnen\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -595,93 +595,93 @@ msgstr "" "Aufruf: nano [Option] +ZEILE \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Option\t\tBedeutung\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [Anzahl]\tTabulator-Größe auf Anzahl setzen\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr " -R\t\tRegulären Ausdruck zur Suche verwenden\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tVersionsinfo ausgeben und beenden\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tCursorposition ständig anzeigen\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tDiese Meldung anzeigen\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -i \t\tNeue Zeilen automatisch einrücken\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\t^K schneidet vom Cursor bis zum Zeilenende aus\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tSymbolischen Links nicht folgen, sondern überschreiben\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tMaus aktivieren\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr "i -p \t\tPico so genau wie möglich imitieren\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#Spalten] \tSpalten auffüllen (Zeilenumbruch bei) #Spalten\n" -#: nano.c:430 +#: nano.c:431 #, fuzzy msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [Programm] |\tAlternative Rechtschreibprüfung\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tBeim Beenden ohne Rückfrage speichern\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tNur zum Lesen öffnen (keine Veränderungen möglich)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tLange Zeilen nicht in neue Zeilen umbrechen\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tHilfe-Fenster nicht anzeigen\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tSuspend (anhalten und zurück zur Shell) aktivieren\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +ZEILE\t\tBei Zeile ZEILE beginnen\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano Version %s (compiliert um %s, %s)\n" -#: nano.c:449 +#: nano.c:450 msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr " Email: nano@nano-editor.org\tWWW: http://www.nano-editor.org" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -689,271 +689,271 @@ msgstr "" "\n" " Kompilierte Optionen:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Markierung gesetzt" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Markierung gelöscht" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap aufgerufen mit inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data jetzt = \"%s\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Nachher, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "Ersetzung editieren" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Konnte keine temporäre Datei erzeugen: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "" "Rechtschreibprüfung fehlgeschlagen: konnte nicht in temporäre Datei schreiben" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Rechtschreibprüfung abgeschlossen" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Rechtschreibprüfung fehlgeschlagen" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "Veränderten Puffer speichern (\"Nein\" VERWIRFT DIE ÄNDERUGNEN) ? " -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "SIGHUP empfangen" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "Kann die Größe des oberen Fensters nicht verändern" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "Kann oberes Fenster nicht verschieben" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "Kann Größe des Bearbeitungsfensters nicht verändern" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "Kann Bearbeitungsfenster nicht verschieben" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Kann Größe des unteren Fensters nicht verändern" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Kann unteres Fenster nicht verschieben" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "Kann Absatzausrichtung nicht rückgängig machen" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s aktivieren/deaktivieren" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "aktiviert" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "deaktiviert" -#: nano.c:2144 +#: nano.c:2145 #, fuzzy msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock Problem entdeckt. | Tastenblock funktioniert nicht, wenn NumLock " "ausgeschaltet ist" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Hauptprogramm: Fenster konfigurieren\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Hauptprogramm: unteres Fenster\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Hauptprogramm: Datei öffnen\n" -#: nano.c:2431 +#: nano.c:2437 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Erhielt Alt-0-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Erhielt Alt-[-1-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Erhielt Alt-[-2-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Erhielt Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Erhielt Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "" "Suche mit Unterscheidung von Groß- und Kleinschreibung nach regulärem " "Ausdruck%s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Suche nach regulärem Ausdruck%s%s" -#: search.c:121 +#: search.c:122 #, c-format msgid "Case Sensitive Search%s%s" msgstr "Suche mit Unterscheidung von Groß- und Kleinschreibung%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Suche%s%s" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (zu ersetzen)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Suche abgebrochen" -#: search.c:199 +#: search.c:200 #, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" nicht gefunden" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Suche in neue Zeile umgebrochen" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "%d Ersetzungen vorgenommen" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "1 Ersetzung vorgenommen" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Ersetzung abgebrochen" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Fundstelle ersetzen?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Ersetzung gescheitert: unbekannter Unterausdruck" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Ersetzen mit [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Ersetzen mit" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Zeilennummer eingeben" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Abgebrochen" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Komm schon, sei vernünftig" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Nur %d Zeilen vorhanden, springe zur letzten Zeile" -#: winio.c:123 +#: winio.c:124 #, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start für xplus=%d gab %d zurck\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "Eingabe '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Neuer Puffer" -#: winio.c:493 +#: winio.c:494 #, fuzzy msgid " File: ..." msgstr " |Datei: ..." -#: winio.c:495 +#: winio.c:496 #, fuzzy msgid " DIR: ..." msgstr " || Verzeichnis: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Verändert" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Nach (%d, %d) im Bearbeitungspuffer verschoben\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "Erhielt \"%s\"\n" @@ -965,80 +965,81 @@ msgstr "Erhielt \"%s\"\n" #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Jj" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Aa" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Ja" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Alle" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "Nein" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "Zeile %d von %d (%.0f%%), Zeichen %d von %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Gebe Datei Puffer nach stderr aus...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Gebe Inhalt der Zwischenablage nach stderr aus...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Gebe einen Puffer nach stderr aus...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "Der nano Text-Editor" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "Version " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "Entwickelt von:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Speziellen Dank an:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "The Free Software Foundation" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim und Eric S. Raymond für ncurses" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "und alle Nichtgenannten..." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "Danke für die Benutzung von nano!\n" diff --git a/po/es.po b/po/es.po index 904dfbe1..01ab243f 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2001-03-21 23:46+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Spanish \n" @@ -15,414 +15,414 @@ msgstr "" "Content-Type: text/plain; charset=iso8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer llamado con inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "Nos hemos cargado el cutbuffer =)\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: no estamos en la primera línea y la anterior es NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "%d líneas leídas" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" no encontrado" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Nuevo Fichero" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "Fichero \"%s\" es un directorio" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, c-format msgid "File \"%s\" is a device file" msgstr "El fichero \"%s\" es un dispositivo" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Leyendo Fichero" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Fichero a insertar [desde ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Cancelado" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "No pude abrir el fichero para escribir: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Escribí >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "No pude cerrar %s: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "No pude abrir %s para escribir: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "No pude establecer permisos %o en %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "%d líneas escritas" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Nombre de Fichero a escribir" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "filename es %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "El fichero existe, ¿ SOBREESCRIBIR ?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(más)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "No puedo ascender de directorio" # y, c-format #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, c-format msgid "Can't open \"%s\": %s" msgstr "No se puede abrir \"%s\": %s" -#: global.c:131 +#: global.c:132 msgid "Constant cursor position" msgstr "Posición del cursor constante" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Auto indentar" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Suspender" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Modo ayuda" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Modo Pico" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Soporte para ratón" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Cortar hasta el final de línea" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Expresiones regulares" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Auto wrapear" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Invocar el menú de ayuda" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Escribir el fichero actual a disco" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Salir de nano" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Ir a un número de línea en concreto" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Justificar el párrafo actual" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "Desjustificar después de un justificar" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Reemplazar texto en el editor" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Insertar otro fichero en el actual" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Buscar un texto en el editor" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Moverse a la página anterior" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Moverse a la página siguiente" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Cortar la línea actual y guardarla en el cutbuffer" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Pegar el cutbuffer en la línea actual" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Mostrar la posición del cursor" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Invocar el corrector ortográfico (si está disponible)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Moverse una línea hacia arriba" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Moverse una línea hacia abajo" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Moverse hacia adelante un carácter" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Moverse hacia atrás un carácter" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Moverse al principio de la línea actual" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Moverse al final de la línea actual" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Ir a la primera línea del fichero" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Ir a la última línea del fichero" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Redibujar la pantalla actual" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Marcar texto en la posición actual del cursor" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Borrar el carácter bajo el cursor" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Borrar el carácter a la izquierda del cursor" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Insertar un carácter tab" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Insertar un retorno de carro en la posición del cursor" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Hacer que la búsqueda actual sea sensible a mayúsculas" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Ir al navegador de ficheros" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Cancelar la función actual" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Ver Ayuda" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Salir" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Guardar" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Justificar" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "L Fichero" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Reemplazar" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Buscar" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Pág Ant" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Pág Sig" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "CortarTxt" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "Desjustificar" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "PegarTxt" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Pos Act" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Ortografía" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Arriba" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Abajo" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Adelante" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Atrás" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Inicio" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Fin" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Refrescar" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "MarcarTxt" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Suprimir" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Borrar" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tab" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Enter" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Ir a Línea" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Primera Línea" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Última Línea" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "May/Min" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Cancelar" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "No Reemplazar" -#: global.c:410 +#: global.c:411 msgid "To Files" msgstr "A Ficheros" -#: nano.c:140 +#: nano.c:141 #, c-format msgid "" "\n" @@ -431,7 +431,7 @@ msgstr "" "\n" "Buffer escrito en %s\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -440,15 +440,15 @@ msgstr "" "\n" "No se ha escrito %s (¿existe el fichero?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "El tamaño de la terminal es demasiado pequeña para Nano..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Tecla ilegal en modo VISUALIZACIÓN" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -461,9 +461,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -487,15 +487,15 @@ msgstr "" "teclas opcionales están representadas entre paréntesis:\n" "\n" -#: nano.c:297 +#: nano.c:298 msgid "delete_node(): free'd a node, YAY!\n" msgstr "delete_node(): liberado un nodo, ¡YEAH!\n" -#: nano.c:302 +#: nano.c:303 msgid "delete_node(): free'd last node.\n" msgstr "delete_node(): liberado el último nodo.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -503,84 +503,84 @@ msgstr "" "Uso: nano [opción larga GNU] [opción] +LÍNEA \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Opción\t\tOpción larga\t\tSignificado\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr " -T [num]\t--tabsize=[num]\t\tFijar el ancho de tab en num\n" -#: nano.c:363 +#: nano.c:364 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" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr " -V \t\t--version\t\tImprimir versión y salir\n" -#: nano.c:369 +#: nano.c:370 msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgstr " -c \t\t--const\t\t\tMostrar constantemente la posición del cursor\n" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tMostrar este mensaje\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tIndentar automáticamente nuevas líneas\n" -#: nano.c:376 +#: nano.c:377 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" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\t--nofollow\t\tNo seguir enlaces simbólicos, sobreescribirlos\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tHabilitar ratón\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr " -p\t \t--pico\t\t\tEmular a Pico lo máximo posible\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -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" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr " -s [prog] \t--speller=[prog]\tHabilitar corrector alternativo\n" -#: nano.c:395 +#: nano.c:396 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" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -v \t\t--view\t\t\tModo visualización (sólo lectura)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tNo wrapear líneas largas\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tNo mostrar la ventana de ayuda\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tHabilitar suspensión\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +LINE\t\t\t\t\tComenzar en la línea número LÍNEA\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -588,92 +588,92 @@ msgstr "" "Uso: nano [opción] +LÍNEA \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Opción\t\tSignificado\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [num]\tFijar el ancho de tab a num\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr " -R\t\tUsar expresiones regulares para las búsquedas\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tImprimir información sobre la versión y salir\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tMostrar constantemente la posición del cursor\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tMostrar este mensaje\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -v \t\tIndentar automáticamente nuevas líneas\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\t^K corta desde el cursor al final de línea\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tNo seguir enlaces simbólicos, sobreescribirlos\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tHabilitar ratón\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr " -p \t\tEmular a Pico lo máximo posible\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#cols] \tRellenar columnas (wrapear líneas en) #cols\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [prog] \tHabilitar corrector alternativo\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tAutosalvar al salir, no preguntar\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tModo visualización (sólo lectura)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tNo wrapear líneas largas\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tNo mostrar la ventana de ayuda\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tHabilitar suspensión\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +LÍNEA\t\tComenzar en la línea número LÍNEA\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano versión %s (compilado %s, %s)\n" -#: nano.c:449 +#: nano.c:450 msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr " Correo-e: nano@nano-editor.org\tWeb: http://www.nano-editor.org" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -681,265 +681,265 @@ msgstr "" "\n" " Opciones compiladas:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Marca Establecida" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Marca Borrada" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap llamada con inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data ahora = \"%d\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Después, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "Editar un reemplazo" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "No pude crear un fichero temporal: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "" "Comprobación de ortografía fallida: ¡no se pudo escribir fichero temporal!" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Revisión de ortografía finalizada" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Comprobación de ortografía fallida" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "" "¿ Salvar el buffer modificado (RESPONDER \"No\" DESTRUIRÁ LOS CAMBIOS) ?" -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "SIGHUP recibido" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "No se puede cambiar el tamaño de la ventana superior" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "No se puede mover la ventana superior" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "No se puede cambiar el tamaño de la ventana de edición" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "No se puede mover la ventana de edición" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "No se puede cambiar el tamaño de la ventana inferior" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "No se puede mover la ventana inferior" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "¡Ahora puedes desjustificar!" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s habilitar/deshabilitar" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "habilitado" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "deshabilitado" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Detectado NumLock roto. El tecl. numérico funcionará con NumLock activado" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Main: configurar las ventanas\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Main: ventana inferior\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Main: abrir fichero\n" -#: nano.c:2431 +#: nano.c:2437 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "¡Pillé Alt-O-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "¡Pillé Alt-[-1-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "¡Pillé Alt-[-2-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "¡Pillé Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "¡Pillé Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Búsqueda con Regexp y Mayúsculas/Minúsculas%s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Busqueda con Regexp%s%s" -#: search.c:121 +#: search.c:122 #, c-format msgid "Case Sensitive Search%s%s" msgstr "Búsqueda con Mayúsculas/Minúsculas%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Buscar%s%s" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (a reemplazar)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Búsqueda Cancelada" -#: search.c:199 +#: search.c:200 #, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" no encontrado" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Búsqueda Recomenzada" -#: search.c:348 +#: search.c:349 #, c-format msgid "Replaced %d occurrences" msgstr "%d ocurrencias reemplazadas" -#: search.c:350 +#: search.c:351 msgid "Replaced 1 occurrence" msgstr "1 ocurrencia reemplazada" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Reemplazar Cancelado" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "¿Reemplazar esta instancia?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Fallo en reemplazar: ¡subexpresión desconocida!" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Reemplazar con [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Reemplazar con" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Introduce número de línea" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Abortado" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Venga ya, se razonable" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Sólo hay %d líneas, saltando hasta la última" -#: winio.c:123 +#: winio.c:124 #, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start para xplus=%d devolvió %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "entrada '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Nuevo Buffer" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr "Fichero: ..." -#: winio.c:495 +#: winio.c:496 msgid " DIR: ..." msgstr " DIR: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Modificado" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Moviendo a (%d, %d) en buffer de edición\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "Pillé \"%s\"\n" @@ -951,79 +951,80 @@ msgstr "Pill #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Ss" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Tt" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Sí" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Todas" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "No" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "línea %d de %d (%.0f%%), carácter %d de %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Volcando buffer de fichero a stderr...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Volcando el cutbuffer a stderr...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Volcando un buffer a stderr...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "El editor de textos GNU nano" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "versión " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "Por cortesía de:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Agradecimientos especiales para:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "La Free Software Foundation" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim y Eric S. Raymond por ncurses" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "y cualquiera del que nos hayamos olvidado..." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "¡Gracias por usar nano!\n" diff --git a/po/fi.po b/po/fi.po index 0caf2553..ad1069eb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 0.9.18\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2001-01-12 17:21+02:00\n" "Last-Translator: Pauli Virtanen \n" "Language-Team: Finnish \n" @@ -13,413 +13,413 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer funktion parametri inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "Leiketila katosi =)\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: ei ensimmäisellä rivillä ja prev on NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "%d riviä luettu" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "Ei löytynyt: \"%s\"" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Uusi tiedosto" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "\"%s\" on hakemisto" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, c-format msgid "File \"%s\" is a device file" msgstr "\"%s\" on laitetiedosto" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Lukee tiedostoa" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Lisättävä tiedosto [hakemistossa ./]" -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Peruttu" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Tiedostoa ei voitu avata luettavaksi: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Kirjoitettu: >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Tiedostoa %s ei voitu sulkea: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Tiedostoa %s ei voitu avata kirjoittamista varten: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Oikeuksia %o ei voitu asettaa tiedostolle %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "%d riviä kirjoitettu" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Kirjoitettavan tiedoston nimi" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "tiedoston nimi on %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "Tiedosto on jo olemassa, korvataanko?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(lisää)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "Ei voi siirtyä ylähakemistoon" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, c-format msgid "Can't open \"%s\": %s" msgstr "Hakemistoa \"%s\" ei voi avata: %s" -#: global.c:131 +#: global.c:132 msgid "Constant cursor position" msgstr "Näytä kohdistimen sijainti aina" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Automaattinen sisennys" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Keskeytä" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Ohjetila" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Pico-tila" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Hiirituki" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Leikkaa loppuun saakka" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Säännölliset lausekkeet" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Automaattinen rivitys" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Avaa ohjevalikko" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Kirjoita nykyinen tiedosto levylle" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Poistu Nanosta" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Siirry tietylle riville" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Tasaa nykyinen kappale" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "Poista tasaus tasauksen jälkeen" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Etsi ja korvaa tekstiä" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Lisää toinen tiedosto nykyiseen tiedostoon" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Etsi tekstiä" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Siirry edelliseen ruutuun" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Siirry seuraavaan ruutuun" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Leikkaa nykyinen rivi leiketilaan" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Kopioi rivi leiketilasta nykyiselle riville" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Näytä kohdistimen sijainti" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Käynnistä oikoluin (jos saatavilla)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Siirry yksi rivi ylöspäin" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Siirry yksi rivi alaspäin" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Siirry yksi merkki eteenpäin" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Siirry yksi merkki taaksepäin" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Siirry nykyisen rivin alkuun" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Siirry nykyisen rivin loppuun" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Siirry tiedoston ensimmäiselle riville" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Siirry tiedoston viimeiselle riville" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Piirrä ruutu uudestaan" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Merkitse kohdistimen kohdalla oleva teksti" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Poista kohdistimen kohdalla oleva merkki" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Poista kohdistimesta vasemmalle oleva merkki" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Lisää sarkainmerkki" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Lisää rivinvaihto kohdistimen kohdalle" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Muuta etsintä- tai korvaustoiminnon kirjainkoosta piittaamista." -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Siirry tiedostoselaimeen" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Peru nykyinen toiminto." -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Ohjeita" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Lopeta" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Kirjoita" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Tasaa" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "Lue tied." -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Korvaa" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Etsi" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Ed. sivu" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Seur. sivu" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Leikkaa" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "Poista tasaus" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "Liitä" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Sijainti" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Oikolue" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Ylös" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Alas" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Eteenpäin" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Takaisin" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Home" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "End" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Piirrä uudelleen" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "Merkitse tekstiä" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Poista" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Askelpalautin" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Sarkain" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Enter" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Siirry" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "1. rivi" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Viim. rivi" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "Kirj. koko" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Peru" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "Älä korvaa" -#: global.c:410 +#: global.c:411 msgid "To Files" msgstr "Tiedosto" -#: nano.c:140 +#: nano.c:141 #, c-format msgid "" "\n" @@ -428,7 +428,7 @@ msgstr "" "\n" "Teksti kirjoitettu tiedostoon \"%s\"\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -437,15 +437,15 @@ msgstr "" "\n" "Tiedostoa %s ei saatu kirjoitettua (onko se jo olemassa?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "Ikkuna on liian pieni Nanolle..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Virheellinen näppäin katselutilassa" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -458,9 +458,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -481,102 +481,102 @@ msgstr "" "sulkeissa:\n" "\n" -#: nano.c:297 +#: nano.c:298 msgid "delete_node(): free'd a node, YAY!\n" msgstr "delete_node(): solmu vapautettu, YAY!\n" -#: nano.c:302 +#: nano.c:303 msgid "delete_node(): free'd last node.\n" msgstr "delete_node(): viimeinen solmu vapautettu.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" msgstr "Käyttö: nano [GNU pitkät valitsimet] [valitsimet] +RIVI \n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Valitsin\tPitkä valitsin\t\tMerkitys\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr " -T [luku]\t--tabsize=[luku]\tAseta sarkaimen leveys\n" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr " -R\t\t--regexp\t\tEtsi säännöllisillä lausekkeilla\n" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr " -V \t\t--version\t\tTulosta versiotiedot ja lopeta\n" -#: nano.c:369 +#: nano.c:370 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" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tNäytä tämä ohje\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tSisennä uudet rivit automaattisesti\n" -#: nano.c:376 +#: nano.c:377 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 leikkaa rivin loppuun saakka\n" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr "" " -l \t\t--nofollow\t\tÄlä seuraa symbolisia linkkejä, vaan\n" "\t\t\t\t\tkorvaa ne tiedostoilla.\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tKäytä hiirtä\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr " -p\t \t--pico\t\t\tJäljittele Picoa tarkasti\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -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" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr " -s [ohjelma] \t--speller=[ohjelma]\tKäytä annettua oikolukuohjelmaa\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr "" " -t \t\t--tempfile\t\tTallenna tiedosto kysymättä\n" "\t\t\t\t\tpoistuttaessa \n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -v \t\t--view\t\t\tKatselutila (vain luku)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tÄlä rivitä pitkiä rivejä\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tÄlä näytä ohjeikkunaa\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tMahdollista keskeyttäminen\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +RIVI\t\t\t\t\tSiirry riville RIVI\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -584,93 +584,93 @@ msgstr "" "Käyttö: nano [asetukset] +RIVI \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Asetus\t\tMerkitys\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [leveys]\tAseta sarkaimen leveys\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr " -R\t\tEtsi säännöllisillä lausekkeilla\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tTulosta versiotiedot ja lopeta\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tNäytä kohdistimen sijainti jatkuvasti\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tNäytä tämä ohje\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -i \t\tSisennä uudet rivit automaattisesti\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\t^K leikkaa rivin loppuun saakka\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tÄlä seuraa symbolisia linkkejä, vaan korvaa ne tiedostoilla.\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tKäytä hiirtä\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr " -p \t\tJäljittele Picoa mahdollisimman tarkasti\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#lkm] \tRivitä annettua pidemmät rivit\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [ohjelma] \tKäytä annettua oikolukuohjelmaa\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tTallenna tiedosto kysymättä poistuttaessa\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tKatselutila (vain luku)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tÄlä rivitä pitkiä rivejä\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tÄlä näytä ohjeikkunaa\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tMahdollista keskeyttäminen\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +RIVI\t\tSiirry riville RIVI\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU Nano, versio %s. (käännetty %s, %s)\n" -#: nano.c:449 +#: nano.c:450 msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr "" " Sähköposti: nano@nano-editor.org\tInternet: http://www.nano-editor.org" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -678,264 +678,264 @@ msgstr "" "\n" " Mukaan käännetyt valitsimet:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Merkintä alkoi" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Merkintä loppui" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap -funktion parametri inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data nyt = \"%s\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Jälkeenpäin, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "Muokkaa korvausta" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Väliaikaista tiedostonnimeä ei voitu luoda: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "Oikaisuluku epäonnistui: väliaikaistiedostoa ei voitu kirjoittaa" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Oikoluku on valmis" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Oikaisuluku epäonnistui" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "Tallenna muutettu teksti (Muutokset häviävät, jos vastaat \"ei\") ? " -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "Vastaanotettiin SIGHUP" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "Yläikkunan kokoa ei voi muuttaa" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "Yläikkunaa ei voi siirtää" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "Muokkausikkunan kokoa ei voi muuttaa" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "Muokkausikkunaa ei voi siirtää" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Alaikkunan kokoa ei voi muuttaa" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Alaikkunaa ei voi siirtää" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "Tasaamisen voi perua nyt." -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s käytössä/ei käytössä" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "käytössä" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "ei käytössä" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock-ongelma: Numeronäppäimistö toimii väärin, kun NumLock ei ole päällä." -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Päätila: ikkunoiden asettelu\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Päätila: alaikkuna\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Päätila: avaa tiedosto\n" -#: nano.c:2431 +#: nano.c:2437 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Vastaanotettu Alt-O-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-1-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-2-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Vastaanotettu Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Vastaanotettu Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Etsi kirjainkokotarkka säänn. lauseke%s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Etsi säänn. lauseke%s%s" -#: search.c:121 +#: search.c:122 #, c-format msgid "Case Sensitive Search%s%s" msgstr "Kirjainkokotarkka etsintä%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Etsintä%s%s" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (korvattava)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Etsintä peruttu" -#: search.c:199 +#: search.c:200 #, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" ei löytynyt" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Etsintä jatkuu" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "%d kohtaa korvattu" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "1 kohta korvattu" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Korvaus peruttu" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Korvataanko tämä kohta?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Korvaus epäonnistui: tuntematon alilauseke!" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Korvaa merkkijonolla [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Korvaa merkkijonolla" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Kirjoita rivin numero" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Keskeytetty" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Jotakin järkevää, kiitos?" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Vain %d riviä olemassa: siirtyy viimeiselle riville" -#: winio.c:123 +#: winio.c:124 #, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start parametrilla xplus=%d palautti %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "syöte '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Uusi teksti" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr " Tiedosto: ..." -#: winio.c:495 +#: winio.c:496 msgid " DIR: ..." msgstr " HAKEMISTO: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Muokattu" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Kohtaan (%d,%d) siirrytty muokkausruudussa\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "Saatiin \"%s\"\n" @@ -947,79 +947,80 @@ msgstr "Saatiin \"%s\"\n" #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Kk" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Ee" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "aA" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Kyllä" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Kaikki" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "Ei" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "rivi %d/%d (%.0f%%), merkki %d/%d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Syöttää tiedoston stderriin...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Syöttää leiketilan stderriin...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Syöttää tekstin stderriin...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "Nano-editori" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "versio " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "Tehneet:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Erikoiskiitokset:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "Free Software Foundation" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim ja Eric S. Raymond ncursesista" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "ja kaikille muille, jotka unohdimme..." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "Kiitos Nanon käyttämisestä!\n" diff --git a/po/fr.po b/po/fr.po index 09ca20ab..8e5b8919 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.8.9\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2000-07-09 01:32+0100\n" "Last-Translator: Clement Laforet \n" "Language-Team: French \n" @@ -15,425 +15,425 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer appelé avec inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "cutbuffer annihilé -)\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "" "read_line: la position actuelle n'est pas la première ligne et la précédente " "est NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "%d lignes lues" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" non trouvé" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Nouveau fichier" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "Le fichier \"%s\" est un répertoire" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, fuzzy, c-format msgid "File \"%s\" is a device file" msgstr "Le fichier \"%s\" est un répertoire" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Lecture du fichier" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Fichier à insérer [depuis ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Annulé" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Impossible d'ouvrir le fichier en écriture: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Écrit >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Impossible de fermer %s: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Impossible d'ouvrir %s en écriture: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Impossible de donner les permissions %o à %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "%d lignes écrites" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Nom du fichier dans lequel écrire" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "Le nom du fichier est %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "Fichier existant, écrire par-dessus ?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, fuzzy, c-format msgid "Can't open \"%s\": %s" msgstr "Impossible de fermer %s: %s" -#: global.c:131 +#: global.c:132 #, fuzzy msgid "Constant cursor position" msgstr " -c \t\tAfficher constamment la position du curseur\n" -#: global.c:132 +#: global.c:133 #, fuzzy msgid "Auto indent" msgstr "-> ligne" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "" -#: global.c:139 +#: global.c:140 #, fuzzy msgid "Regular expressions" msgstr "-R\t\tUtilisation des expressions régulières pour la recherche\n" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Appelle le menu d'aide" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Ecrit le fichier en cours sur le disque" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Quitte Nano" -#: global.c:188 +#: global.c:189 #, fuzzy msgid "Goto a specific line number" msgstr "Entrer le numéro de ligne" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Justifie le paragraphe courant" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Remplace le texte dans l'éditeur" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Insère un autre fichier dans le fichier courant" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Recherche d'une chaîne dans l'éditeur" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Retourne a l'écran précèdent" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Aller au prochain écran" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Supprime la ligne courante et la stocke en mémoire" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Copie la chaîne en mémoire vers la ligne courante" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Affiche la position du curseur" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Appel du correcteur orthographique (s'il est disponible)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Déplace d'une ligne vers le haut" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Déplace d'une ligne vers le bas" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Déplace d'un caractère en avant" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Déplace d'un caractère en arriere" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Déplace vers le début de la ligne courante" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Déplace vers la fin de la ligne courante" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Va à la première ligne du fichier" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Va à la dernière ligne du fichier" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Rafraichit (redessine) l'ecran courant" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Marquer le texte à la position actuelle du curseur" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Supprime le caractère où se trouve le curseur" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Supprime le caractère à la gauche du curseur" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Insère une tabulation" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Insère un retour-chariot à la position du curseur" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Exécuter rechercher/remplacer avec/sans rspect de la casse" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Annule la fonction courante" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Appelle l'aide" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Quitte" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Sauvegarde" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Justifier" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 #, fuzzy msgid "Read File" msgstr "Lect. fichier" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 #, fuzzy msgid "Replace" msgstr "Remplacer par" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Recherche" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Page préc." -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Page suiv." -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Couper" -#: global.c:266 +#: global.c:267 #, fuzzy msgid "UnJustify" msgstr "Justifier" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "Annul. Coup" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Pos. curseur" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Corriger" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Haut" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Bas" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "En avant" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "En arrière" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Debut Doc." -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Fin Doc0" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Rafraîchir" -#: global.c:302 +#: global.c:303 #, fuzzy msgid "Mark Text" msgstr "Marque enregistrée" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Supprimer" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Backspace" # No translation... -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tabulation" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Entrée" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "-> ligne" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Première ligne" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Dernière Ligne" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "Casse respectée" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Annuler" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "Pas de remplacement" -#: global.c:410 +#: global.c:411 #, fuzzy msgid "To Files" msgstr "Nouveau fichier" -#: nano.c:140 +#: nano.c:141 #, fuzzy, c-format msgid "" "\n" @@ -442,22 +442,22 @@ msgstr "" "\n" "Buffer écrit dans 'nano.save'\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" "No %s written (file exists?)\n" msgstr "" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "" -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Touche illégale en mode VISUALISATION" -#: nano.c:203 +#: nano.c:204 #, fuzzy msgid "" " nano help text\n" @@ -471,17 +471,17 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" msgstr "" "Message d'aide de Nano\n" -"L'éditeur Nano est conçu pour émuler les fonctions et la facilité " -"d'utili-sation de l'éditeur PICO. Il y a quatre sections principales dans " -"cet éditeur : la ligne du haut affiche la version du programme, le " +"L'éditeur Nano est conçu pour émuler les fonctions et la facilité d'utili-" +"sation de l'éditeur PICO. Il y a quatre sections principales dans cet " +"éditeur : la ligne du haut affiche la version du programme, le " "fichieractuellement édité, et s'il a été modifié ou non. Ensuite il y a " "lafenêtre principale d'édition qui affiche le fichier en cours de " "modification.La ligne d'état est la troisième en partant du bas, elle " @@ -494,17 +494,17 @@ msgstr "" "entre parenthèses :\n" "\n" -#: nano.c:297 +#: nano.c:298 #, fuzzy msgid "delete_node(): free'd a node, YAY!\n" msgstr "free_node(): libération d'un noeud, OUAIS!\n" -#: nano.c:302 +#: nano.c:303 #, fuzzy msgid "delete_node(): free'd last node.\n" msgstr "free_node(): libération du dernier noeud \n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -512,95 +512,95 @@ msgstr "" "Utilisation: nano [option longue GNU] [option] +LIGNE \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Option\t\tOption Longue\t\tSignification\n" -#: nano.c:360 +#: nano.c:361 #, fuzzy msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr "" "-T \t\t--tabsize=[num]\t\tDefini la profondeur d'une tabulation à num\n" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr "" "-R\t\t--regexp\t\tUtilise les expressions regulières pour la recherche\n" -#: nano.c:367 +#: nano.c:368 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" -#: nano.c:369 +#: nano.c:370 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" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tAfficher ce message\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr "" " -i \t\t--autoindent\t\tIndenter automatiquement les nouvelles lignes\n" -#: nano.c:376 +#: nano.c:377 msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgstr "" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr "" " -l \t\t--nofollow\t\tNe suit pas les liens symboliques. Outrepasse " "l'écriture\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tActiver le support souris\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr "" -#: nano.c:389 +#: nano.c:390 msgid "" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" msgstr "" " -r [#cols] \t--fill=[#cols]\t\tMettre la colonne de fin de ligne à (couper " "les lignes à) #cols\n" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr "" " -s [prog] \t--speller=[prog]\tActiver un vérificateur orthographique " "alternatif\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr "" " -t \t\t--tempfile\t\tSauver automatiquement à la sortie, sans demander\n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -v \t\t--view\t\t\tMode Visualisation (lecture seule)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tNe pas couper les lignes trop longues\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tNe pas afficher la fenêtre d'aide\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tAutoriser la suspension\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +LIGNE\t\t\t\t\tCommencer à la ligne LIGNE\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -608,359 +608,359 @@ msgstr "" "Utilisation: nano [option] +LIGNE \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Option\t\tSignification\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr "-T [num]\tDéfini la pronfondeur de tabulation à num\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr "-R\t\tUtilisation des expressions régulières pour la recherche\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tAfficher les informations de version et sortir\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tAfficher constamment la position du curseur\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tAfficher ce message\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -i \t\tIndenter automatiquement les nouvelles lignes\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr "" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr "-l \t\tNe pas suivre les liens symboliques. Outrepasse à l'écriture\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tActiver la souris\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr "" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr "" " -r [#cols] \tMettre la colonne de fin de ligne à (couper les lignes à) " "#cols\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [prog] \tActiver un vérificateur orthographique alternatif\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tSauver automatiquement à la sortie, sans demander\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tMode Visualisation seule (lecture seule)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tNe pas couper les lignes longues\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tNe pas afficher la fenêtre d'aide\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tAutoriser la suspension\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +LIGNE\t\tDémarrer à la ligne LIGNE\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano version %s (compilée %s, %s)\n" -#: nano.c:449 +#: nano.c:450 #, fuzzy msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr " Email: nano@asty.org\tWeb: http://www.asty.org/nano\n" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" msgstr "" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Marque enregistrée" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Marque effacée" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap appelée avec inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data vaut maintenant \"%s\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Après, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Impossible de créer un nom de fichier temporaire: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Vérification orthographique terminée" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "Sauver le buffer modifié (RÉPONDRE \"No\" EFFACERA LES CHANGEMENTS" -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "Impossible de redimensionner la fenêtre du haut" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "Impossible de bouger la fenêtre du haut" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "Impossible de redimensionner la fenêtre d'édition" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "Impossible de bouger la fenêtre d'édition" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Impossible de redimensionner la fenêtre du bas" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Impossible de bouger la fenêtre du bas" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Main: configuration des fenêtres\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Main: fenêtre du bas\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Main: ouvrir fichier\n" -#: nano.c:2431 +#: nano.c:2437 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "J'ai reçu Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "J'ai reçu Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, fuzzy, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Recherche sensible ) la casse%s%s" -#: search.c:119 +#: search.c:120 #, fuzzy, c-format msgid "Regexp Search%s%s" msgstr "Recherche Regexp%s%s" -#: search.c:121 +#: search.c:122 #, fuzzy, c-format msgid "Case Sensitive Search%s%s" msgstr "Recherche sensible ) la casse%s%s" -#: search.c:123 +#: search.c:124 #, fuzzy, c-format msgid "Search%s%s" msgstr "Recherche%s%s" -#: search.c:126 +#: search.c:127 #, fuzzy msgid " (to replace)" msgstr " (remplacer par)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Recherche annulée" -#: search.c:199 +#: search.c:200 #, fuzzy, c-format msgid "\"%s...\" not found" msgstr "\"%s\" non trouvé" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "La recherche a bouclé" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "%d occurences remplacées" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "1 occurence remplacée" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Remplacement annulé" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Remplacer cette occurence?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Remplacer par [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Rempacer par" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Entrer le numéro de ligne" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Annulé" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Allez, soyez raisonnable" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Seulement %d lignes sont disponibles, saut jusqu'à la dernière ligne" -#: winio.c:123 +#: winio.c:124 #, fuzzy, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x renvoyé pour xplus=%d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "taper '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Nouveau buffer" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr " Fichier: ..." -#: winio.c:495 +#: winio.c:496 #, fuzzy msgid " DIR: ..." msgstr " Fichier: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Modifié" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Déplacement jusqu'à (%d, %d) dans le buffer d'édition\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "J'ai reçu \"%s\"\n" @@ -972,80 +972,81 @@ msgstr "J'ai re #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Oo" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Tt" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Oui" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Tous" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "Non" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "ligne %d sur %d (%.0f%%), caractère %d sur %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Envoi du buffer fichier sur stderr...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Envoi du cutbuffer sur stderr...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Envoi d'un buffer sur stderr...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "" -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "" -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index 71a70c10..74febe27 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano 0.9.99pre2\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2001-02-03 07:47-0000\n" "Last-Translator: Szabolcs Horvath \n" "Language-Team: Hungarian \n" @@ -14,413 +14,413 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer az inptr->data-val lett meghívva = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "a cutbuffert elfújta a szél =)\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: ez nem az elsõ sor és a prew értéke NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "%d sort beolvastam" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" nem található" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Új fájl" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "A megadott fájl \"%s\" egy könyvtár" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, c-format msgid "File \"%s\" is a device file" msgstr "A fájl \"%s\" egy eszközfájl" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Fájl beolvasása" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "Fájl beszúrása [a ./-ból] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Megszakítva" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Nem tudom a fájlt írásra megnyitni: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Írtam >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Nem tudom lezárni %s: %s." #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Nem tudom %s-t megnyitni írásra: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Nem tudom a jogosultságokat beállítani %o on %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "%d sort elmentettem" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Mentés mint" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "a fájl neve %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "A fájl már létezik, felülírjam?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(tovább)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "Nem tudok a könyvtárfán feljebb lépni" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, c-format msgid "Can't open \"%s\": %s" msgstr "Nem tudom megnyitni \"%s\": %s" -#: global.c:131 +#: global.c:132 msgid "Constant cursor position" msgstr "Állandóan mutatja a kurzor helyét" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Automatikus igazítás" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Felfüggesztett" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Súgó mód" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Pico-mód" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Egér támogatás" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Kivágás a végéig" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Reguláris kifejezések" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Automatikus sortörés" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "A súgó meghívása" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Az aktuális fájl lemezre mentése" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Kilépés a nanoból" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Ugrás a megadott számú sorra" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Az adott bekezdés sorkizárt legyen" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "A sorkizártság megszüntetése" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Szöveg kicserélése" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Egy másik fájl beszúrása" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Szöveg keresése" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Ugrás az elõzõ oldalra" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Ugrás a következõ oldalra" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Az aktuális sor kivágása a cutbufferbe" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "A cutbufferben lévõ sor beillesztése az aktuális sorba" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "A kurzor helyének mutatása" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "A helyesírás-ellenõrzõ indítása (ha elérhetõ)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Ugrás az elõzõ sorra" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Ugrás a következõ sorra" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Ugrás a következõ karakterre" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Ugrás az elõzõ karakterre" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Ugrás a sor elejére" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Ugrás a sor végére" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Ugrás az elsõ sorra" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Ugrás a legutolsó sorra" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "A képernyõ frissítése" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "A szöveg megjelölése az aktuális kurzorpozícióban" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "A kurzor helyén lévõ karakter törlése" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "A kurzor elõtt álló karakter törlése" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Tabulátor karakter beszúrása" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "\"Kocsivissza\" karakter beillesztése a kurzor helyére" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Ebben a keresésben/cserében a kis/nagy betûk (nem )számítanak" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Tallózás" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Az aktuális mûvelet megszakítása" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Súgó" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Kilépés" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Mentés" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Sorkizár" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "FájlBeolv" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Csere" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Keresés" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "ElõzõOldal" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Következõ" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Kivágás" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "NSorkizár" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "Beilleszt" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Pozíció" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Helyes-e?" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Fel" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Le" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Elõre" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Vissza" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Eleje" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Vége" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Frissít" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "Megjelöl" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Töröl" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Visszalép" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tabulátor" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Enter" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Ugrás" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Elsõ sor" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Utolsó sor" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "kis/Nagy" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Mégsem" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "Nem cserél" -#: global.c:410 +#: global.c:411 msgid "To Files" msgstr "Tallózás" -#: nano.c:140 +#: nano.c:141 #, c-format msgid "" "\n" @@ -429,7 +429,7 @@ msgstr "" "\n" "A buffer a %s fájlba lett írva\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -438,15 +438,15 @@ msgstr "" "\n" "A %s nem lett írva (a fájl létezik?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "Az ablak mérete túl kicsi a Nanonak..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Hibás billentyû a NÉZÕ módnál" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -459,9 +459,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -484,15 +484,15 @@ msgstr "" "(a választható kombinációkat zárójelben jelezzük):\n" "\n" -#: nano.c:297 +#: nano.c:298 msgid "delete_node(): free'd a node, YAY!\n" msgstr "" -#: nano.c:302 +#: nano.c:303 msgid "delete_node(): free'd last node.\n" msgstr "" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -500,87 +500,87 @@ msgstr "" "Használat: nano [GNU hosszú opciók] [opciók] +SOR \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Opció\t\tHosszú opció\t\tJelentés\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr " -T [szám]\t--tabsize=[szám]\tA tabulátor méretének beállítása\n" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr " -R\t\t--regexp\t\tReguláris kifejezés használata keresésekben\n" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr " -V \t\t--version\t\tVerziószám megjelenítése és kilépés\n" -#: nano.c:369 +#: nano.c:370 msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgstr " -c \t\t--const\t\t\tÁllandóan mutatja a kurzor pozícióját\n" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tKiírja ezt az üzenetet\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tAutomatikusan igazítja az új sorokat\n" -#: nano.c:376 +#: nano.c:377 msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\t--cut\t\t\tA ^K a kurzor pozíciójátõl a sor végéig vág\n" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr "" " -t \t\t--nofollow\t\tNem követi a szimbolikus kötéseket, hanem felülír\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tEgér engedélyezése\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr " -p\t \t--pico\t\t\tA Pico lehetõ legjobb emulálása\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -r [#cols] \t--fill=[#cols]\t\tSet fill cols to (wrap lines at) #cols\n" msgstr "" " -r [#oszlopok] --fill=[#oszlopok]\tOszlopok feltöltése (sorok törése) az " "#oszlopok-ig\n" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr " -s [prog] \t--speller=[prog]\tAlternatív helyesírás-ellenõrzõ\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr " -t \t\t--tempfile\t\tAutomatikus mentés kilépéskor\n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -v \t\t--view\t\t\tCsak olvasható mód\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tNem tördeli a sorokat\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tNem mutatja a súgót\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tFelfüggesztés engedélyezése\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +SOR\t\t\t\t\tA SOR. sornál kezd\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -588,92 +588,92 @@ msgstr "" "Használat: nano [opciók] +SOR \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Opciók\t\tJelentés\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [szám]\tBeállítja a tabulátor szélességét\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr " -R\t\tReguláris kifejezések használata kereséskor\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tKiírja a verziószámot és kilép\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tÁllandóan mutatja a kurzor pozícióját\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tEzt a súgót mutatja\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -i \t\tAutomatikusan igazítja az új sorokat\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr " -k \t\tA ^K a kurzor helyétõl a sor végéig vág\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tNem követi a szimbolikus kötéseket, helyette felülír\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tEgér engedélyezése\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr " -p \t\tA Pico lehetõ legjobb emulálása\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#oszlopok] \tOszlopok feltöltése az #oszlopok-ig\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [prog] \tAlternatív helyesírás-ellenõrzõ\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tAutomatikus mentés kilépéskor\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tCsak olvasható mód\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tNem tördeli a hosszú sorokat\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tNem mutatja a súgó ablakot\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tFelfüggesztés engedélyezése\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +SOR\t\tA SOR. számú sorban kezd\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano - %s verzió. (fordítva %s, %s)\n" -#: nano.c:449 +#: nano.c:450 msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr "" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -681,267 +681,267 @@ msgstr "" "\n" " Fordítási paraméterek:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Megjelölés kezdete" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Megjelölés vége" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap az inptr->data-ból lett meghívva (\"%s\")\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data most = \"%s\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Ezután az adat ez lett = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "A helyettesítõ érték módosítása" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Az ideiglenes fájlt nem tudtam létrehozni: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "" "A helyesírás-ellenõrzés nem sikerült: képtelen vagyok írni a temp fájlt!" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "A helyesírás-ellenõrzés befejezése" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Helyesírás-ellenõrzés nem sikerült" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "" "A változásokat elmentsem (HA \"NEM\", AKKOR MINDEN MÓDOSÍTÁS ELVESZIK) ?" -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "Kaptam egy SIGHUPot" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "A felsõ ablakot nem tudom átméretezni" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "A felsõ ablakot nem tudom mozgatni" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "A szerkesztõ ablakot nem tudom átméretezni" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "A szerkesztõ ablakot nem tudom mozgatni" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Az alsó ablakot nem tudom átméretezni" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Az alsó ablakot nem tudom mozgatni" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "A sorokat most már tudom nem sorkizárttá tenni" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s engedélyezés/kikapcsolás" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "engedélyezve" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "kikapcsolva" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "NumLock hibát fedeztem fel. A Keypad rosszul mûködhet, ha a NumLock be van " "kapcsolva" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Fõprogram: az ablakok beállítása\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Fõprogram: alsó ablak\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Fõprogram: fájl megnyitása\n" -#: nano.c:2431 +#: nano.c:2437 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Az Alt-O-%c billentyûket lenyomtad! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Az Alt-[-1-%c billentyûket lenyomtad! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Az Alt-[-2-%c billentyûket lenyomtad! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Az Alt-[-%c billentyûket lenyomtad! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Az Alt-%c billentyûket lenyomtad! (%d)\n" -#: search.c:117 +#: search.c:118 #, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Regexp keresés (kis/Nagy külön)%s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Regexp keresés%s%s" -#: search.c:121 +#: search.c:122 #, c-format msgid "Case Sensitive Search%s%s" msgstr "Keresés (kis/Nagy külön)%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Keresés%s%s" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (cserére)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Keresés megszakítva" -#: search.c:199 +#: search.c:200 #, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" nem található" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "%d alkalommal fordult elõ, kicseréltem azokat" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "Egyszer fordult elõ, kicseréltem" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "A csere megszakítva" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Hiba a cserénél: ismeretlen alkifejezés!" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Cserélés erre [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Erre lesz cserélve" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Kérem a sor számát" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Megszakítva" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Gyerünk, adj meg egy hihetõbb értéket :-)" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Csak %d sorból áll a szöveg, ezért az utolsóra ugrottam" -#: winio.c:123 +#: winio.c:124 #, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start az xplus=%d-hoz visszatért: %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "bevitel '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Új fájl" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr " Fájl: ..." -#: winio.c:495 +#: winio.c:496 msgid " DIR: ..." msgstr " Könyvtár: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Módosítva" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Átmozgattam (%d, %d) a szerkesztõ-bufferben\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "A \"%s\" lenyomva van.\n" @@ -953,79 +953,80 @@ msgstr "A \"%s\" lenyomva van.\n" #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Ii" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Mm" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Igen" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Mindet" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "Nem" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "%d(/%d). sor (%.0f%%) és a(z) %d(/%d). karakter (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "A fájlbuffer kiírása a standard hibakimenetre...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "A cutbuffer kiírása a standard hibakimenetre...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "A buffer kiírása a standard hibakimenetre...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "A nano szövegszerkesztõ" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "verzió " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "A nano-t õk készítették el Neked:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Külön köszönet:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "A Szabad Szoftver Alapítvány" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim és Eric S. Raymond az ncurses-ért" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "és mindenkinek, akit kifelejtettünk volna..." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "Köszönjük, hogy a nano-t választottad!\n" diff --git a/po/id.po b/po/id.po index d5b9a547..4d4658ec 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: nano-1.0\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2001-02-08 10:09+07:00\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -14,413 +14,413 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer dipangil dgn inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "Hapus cutbuffer =>\n" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: tidak di baris pertama dan sebelumnya adalah NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "Membaca %d baris" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" tidak ditemukan" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "File Baru" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "File \"%s\" adalah sebuah direktori" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, c-format msgid "File \"%s\" is a device file" msgstr "File \"%s\" adalah sebuah file device" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Membaca File" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "File untuk disisipkan [dari ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Dibatalkan" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Tidak dapat membuka file untuk menulis: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Tulis >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Tidak dapat menutup %s: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Tidak dapat membuka %s untuk menulis: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Tidak dapat menset permisi %o pada %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "Menulis %d baris" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Nama file untuk ditulis" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "Namafile adalah %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "File ada, DITIMPA ?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "(lagi)" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "Tidak dapat memindahkan direktori" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, c-format msgid "Can't open \"%s\": %s" msgstr "Tidak dapat membuka \"%s\": %s" -#: global.c:131 +#: global.c:132 msgid "Constant cursor position" msgstr "Posisi kursor konstan" -#: global.c:132 +#: global.c:133 msgid "Auto indent" msgstr "Indent otomatis" -#: global.c:133 +#: global.c:134 msgid "Suspend" msgstr "Tunda" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "Mode bantuan" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "Mode Pico" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "Dukungan mouse" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "Cut hingga akhir" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "Regular expressions" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "Wrap otomatis" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Panggil menu bantuan" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Tulis file sekarang ke disk" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Keluar dari nano" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Ke nomor baris tertentu" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Justifikasi paragraf saat ini" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "Unjustifikasi setelah justifikasi" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Ganti teks dalam editor" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Sertakan file lain ke file saat ini" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Cari teks dalam editor" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Pindah ke layar sebelumnya" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Pindah ke layar berikutnya" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Hapus baris saat ini dan taruh dalam cutbuffer" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Kembalikan dari cutbuffer ke baris saat ini" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Tampilkan posisi kursor" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Panggil spell checker (jika ada)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Naik satu baris" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Turun satu baris" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Pindah satu karakter ke depan" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Pindah satu karakter ke belakang" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Pindah ke awal baris ini" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Pindah ke akhir baris ini" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Ke baris terawal file" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Ke baris terakhir file" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Refresh layar saat ini" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Tandai teks pada lokasi kursor saat ini" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Hapus karakter pada kursor" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Hapus satu karakter di kiri kursor" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Masukkan karakter tab" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Sertakan carriage return di posisi kursor" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Jadikan pencarian/penggantian saat ini case (in)sensitive" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "Ke browser file" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Batalkan fungsi ini" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Cari Bantuan" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Keluar" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Tulis" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Justifikasi" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "Baca File" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Ganti" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Di mana" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Halaman sebelumnya" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Halaman berikutnya" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Potong Teks" -#: global.c:266 +#: global.c:267 msgid "UnJustify" msgstr "UnJustifikasi" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "UnCut Teks" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Pos Kursor" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Mengeja" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Naik" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Turun" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Depan" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Belakang" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Awal" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Akhir" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Refresh" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "Tandai Teks" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Hapus" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Backspace" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tab" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Enter" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Ke baris" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Baris pertama" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Baris terakhir" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "Case Sens" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Batal" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "No Replace" -#: global.c:410 +#: global.c:411 msgid "To Files" msgstr "Ke File" -#: nano.c:140 +#: nano.c:141 #, c-format msgid "" "\n" @@ -429,7 +429,7 @@ msgstr "" "\n" "Buffer ditulis ke %s\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" @@ -438,15 +438,15 @@ msgstr "" "\n" "%s tidak ditulis (file ada?)\n" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "Ukuran window terlalu kecil bagi Nano..." -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Kunci ilegal dalam mode VIEW" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -459,9 +459,9 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" @@ -479,8 +479,8 @@ msgstr "" "\n" "Notasi untuk shortcut adalah sebagai berikut : urutan kunci Control " "dilambangkan\n" -"dengan simbol caret (^) dan dimasukkan dengan menekan tombol Control (Ctrl). " -"\n" +"dengan simbol caret (^) dan dimasukkan dengan menekan tombol Control " +"(Ctrl). \n" "Urutan kunci Escape dilambangkan dengan simbol Meta (M) dan dapat dimasukkan " "dengan \n" "menggunakan tombol Esc, Alt atau Meta tergantung pada setup keyboard anda. \n" @@ -488,99 +488,99 @@ msgstr "" "Kunci-kunci opsional ditunjukkan dalam kurung:\n" "\n" -#: nano.c:297 +#: nano.c:298 msgid "delete_node(): free'd a node, YAY!\n" msgstr "delete_node(): bebaskan sebuah node, YAY!\n" -#: nano.c:302 +#: nano.c:303 msgid "delete_node(): free'd last node.\n" msgstr "delete_node(): bebaskan node terakhir.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" msgstr "Pemakaian: nano [GNU long option] [option] +LINE \n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Option: Long option Arti\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr " -T [num] --tabsize=[num] Set lebar tabulasi ke num\n" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr "-R --regexp Gunakan regular expression untuk mencari\n" -#: nano.c:367 +#: nano.c:368 msgid " -V \t\t--version\t\tPrint version information and exit\n" msgstr "-V --version Tampilkan versi dan keluar\n" -#: nano.c:369 +#: nano.c:370 msgid " -c \t\t--const\t\t\tConstantly show cursor position\n" msgstr "-c --const Menampilkan posisi kursor secara konstan\n" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr "-h --help Tampilkan pesan ini\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr "-i --autoindent Indentasi baris barus secara otomatis\n" -#: nano.c:376 +#: nano.c:377 msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgstr "-k --cut ^K melakukan cut dari kursor ke akhir baris\n" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr "-l --nofollow Jangan ikuti link simbolik, timpa\n" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr "-m --mouse Aktifkan mouse\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr "-p --pico Emulasikan Pico sebaik mungkin\n" -#: nano.c:389 +#: nano.c:390 msgid "" " -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" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr "-s [prog] --speller=[prog] Aktifkan speller alternatif\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr "" "-t --tempfile Autosave saat keluar, jangan minta konfirmasi\n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr "-v --view Mode Tampil (baca saja)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr "-w --nowrap Jangan wrap baris panjang\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr "-x --nohelp Jangan tampilkan jendela bantuan\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr "-z --suspend Aktifkan suspend\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr "+LINE Mulai pada nomor baris LINE\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -588,92 +588,92 @@ msgstr "" "Pemakaian: nano [option] +LINE \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Option Arti\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr " -T [num]\tGanti lebar tabulasi manjadi num\n" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr "-R Gunakan regular expression untuk mencari\n" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr "-V Tampilkan informasi versi dan keluar\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr "-c Menampilkan posisi kursor secara konstan\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr "-h Tampilkan pesan ini\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr "-i Indent baris barus secara otomatis\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr "-k ^K melakukan cut dari kursor ke akhir baris\n" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr "-l Jangan ikuti link simbolik, timpa\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr "-m Aktifkan mouse\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr "-p Emulasikan Pico sebaik mungkin\n" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr "-r [#cols] Set fill col ke (wrap line di) #cols\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr "-s [prog] Aktifkan speller alternatif\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr "-t Autosave saat keluar, jangan minta konfirmasi.\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr "-v Mode Tampil (baca saja)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr "-w Jangan wrap baris panjang\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr "-x Jangan tampilkan jendela bantuan\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr "-z Aktifkan suspend\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr "+LINE Mulai pada nomor baris LINE\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr "GNU nano versi %s (compiled %s, %s)\n" -#: nano.c:449 +#: nano.c:450 msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" @@ -681,265 +681,265 @@ msgstr "" "\n" "Option kompilasi:" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "Set Tanda" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "Unset Tanda" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap dipanggil dengan inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data sekarang =\"%s\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Setelah, data= \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "Edit pengganti" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Tidak dapat membuat nama file sementara: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "Spell checking gagal: tidak dapat menulis file temp!" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Selesai memeriksa ejaan" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "Spell checking gagal" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "Simpan buffer termodifikasi (JAWAB \"No\" AKAN MENGHAPUS PERUBAHAN) ?" -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "Menerima SIGHUP" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "Tidak dapat menganti ukuran jendela atas" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "Tidak dapat memindahkan jendela atas" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "Tidak dapat mengganti ukuran jendela edit" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "Tidak dapat memindah jendela edit" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Tidak dapat mengganti ukuran jendela bawah" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Tidak dapat memindah jendela bawah" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "Sekarang dapat melakukan UnJustify" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "%s enable/disable" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "enabled" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "disabled" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" "Glitch pada NumLock terdeteksi. Keypad akan tidak berfungsi dg tombol " "NumLock off" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Main: menset jendela\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Main: jendela bawah\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Main: membuka file\n" -#: nano.c:2431 +#: nano.c:2437 #, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Saya mendapat Alt-O-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Saya mendapat Alt-[-1-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Saya mendapat Alt-[-2-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Saya mendapat Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Pencarian case sensitif Regexp %s%s" -#: search.c:119 +#: search.c:120 #, c-format msgid "Regexp Search%s%s" msgstr "Pencarian Regexp %s%s" -#: search.c:121 +#: search.c:122 #, c-format msgid "Case Sensitive Search%s%s" msgstr "Pencarian secara case sensitif%s%s" -#: search.c:123 +#: search.c:124 #, c-format msgid "Search%s%s" msgstr "Pencarian%s%s" -#: search.c:126 +#: search.c:127 msgid " (to replace)" msgstr " (ganti)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Pencarian dibatalkan" -#: search.c:199 +#: search.c:200 #, c-format msgid "\"%s...\" not found" msgstr "\"%s...\" tidak ditemukan" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Pancarian diulangi dari awal" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "%d tempat terganti" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "Terganti 1 tempat" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Penggantian dibatalkan" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Ganti kata ini?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "Replace gagal: subekspresi tidak dikenal!" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Ganti dengan [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Ganti dengan" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Masukkan nomor baris" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Dibatalkan" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Ayo, yang masuk akal" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Hanya %d baris tersedia, melompat ke baris akhir" -#: winio.c:123 +#: winio.c:124 #, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x_from_start untuk xplus=%d mengembalikan %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "input '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Buffer baru" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr " File: ..." -#: winio.c:495 +#: winio.c:496 msgid " DIR: ..." msgstr " DIR: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Dimodifikasi" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Pindah ke (%d, %d) dalam buffer edit\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "Saya mendapat \"%s\"\n" @@ -951,80 +951,81 @@ msgstr "Saya mendapat \"%s\"\n" #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Yy" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Tt" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Ss" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr "Ya" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr "Semua" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr "Tidak" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "baris %d dari %d (%f.0f%%), karakter %d dari %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Kirim buffer file ke stderr...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Kirim cutbuffer ke stderr...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Kirim buffer ke stderr...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "Nano teks editor" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "versi " -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "Dibuat untuk anda oleh:" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "Ucapan terima kasih khusus kepada:" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "The Free Software Foundation" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurse" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "dan orang lain yang kami lupa...." -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "Terima kasih telah menggunakan nano!\n" diff --git a/po/it.po b/po/it.po index 2d508b0b..984f4bb4 100644 --- a/po/it.po +++ b/po/it.po @@ -7,425 +7,425 @@ msgid "" msgstr "" "Project-Id-Version: 0.8.7\n" -"POT-Creation-Date: 2001-04-04 23:15-0400\n" +"POT-Creation-Date: 2001-04-30 07:19-0400\n" "PO-Revision-Date: 2000-03-03 04:57+0100\n" "Last-Translator: Daniele Medri \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: cut.c:44 +#: cut.c:45 #, c-format msgid "add_to_cutbuffer called with inptr->data = %s\n" msgstr "add_to_cutbuffer chiamato con inptr->data = %s\n" -#: cut.c:150 +#: cut.c:151 msgid "Blew away cutbuffer =)\n" msgstr "" -#: files.c:123 +#: files.c:124 msgid "read_line: not on first line and prev is NULL" msgstr "read_line: no estamos en la primera línea y la anterior es NULL" -#: files.c:185 files.c:203 +#: files.c:186 files.c:204 #, c-format msgid "Read %d lines" msgstr "Leggi %d linee" -#: files.c:221 search.c:193 +#: files.c:222 search.c:194 #, c-format msgid "\"%s\" not found" msgstr "\"%s\" non trovato" #. We have a new file -#: files.c:225 +#: files.c:226 msgid "New File" msgstr "Nuovo file" -#: files.c:238 +#: files.c:239 #, c-format msgid "File \"%s\" is a directory" msgstr "Il file \"%s\" è una directory" #. Don't open character or block files. Sorry, /dev/sndstat! -#: files.c:241 +#: files.c:242 #, fuzzy, c-format msgid "File \"%s\" is a device file" msgstr "Il file \"%s\" è una directory" -#: files.c:248 +#: files.c:249 msgid "Reading File" msgstr "Lettura file" -#: files.c:262 +#: files.c:263 msgid "File to insert [from ./] " msgstr "File da inserire [da ./] " -#: files.c:309 files.c:334 files.c:566 nano.c:1514 +#: files.c:310 files.c:335 files.c:567 nano.c:1515 msgid "Cancelled" msgstr "Cancellato" -#: files.c:380 files.c:396 files.c:410 files.c:427 files.c:433 +#: files.c:381 files.c:397 files.c:411 files.c:428 files.c:434 #, c-format msgid "Could not open file for writing: %s" msgstr "Impossibile aprire il file in scrittura: %s" -#: files.c:415 +#: files.c:416 #, c-format msgid "Wrote >%s\n" msgstr "Scrivi >%s\n" -#: files.c:442 +#: files.c:443 #, c-format msgid "Could not close %s: %s" msgstr "Impossibile chiudere %s: %s" #. Try a rename?? -#: files.c:465 files.c:474 files.c:479 +#: files.c:466 files.c:475 files.c:480 #, c-format msgid "Could not open %s for writing: %s" msgstr "Impossibile aprire %s in scrittura: %s" -#: files.c:486 +#: files.c:487 #, c-format msgid "Could not set permissions %o on %s: %s" msgstr "Impossibile configurare i permessi di %o su %s: %s" -#: files.c:491 +#: files.c:492 #, c-format msgid "Wrote %d lines" msgstr "Scritte %d linee" -#: files.c:524 +#: files.c:525 msgid "File Name to write" msgstr "Salva con nome" -#: files.c:541 +#: files.c:542 #, c-format msgid "filename is %s" msgstr "Il nome file è %s" -#: files.c:555 +#: files.c:556 msgid "File exists, OVERWRITE ?" msgstr "File esistente, SOVRASCRIVERE?" -#: files.c:977 +#: files.c:978 msgid "(more)" msgstr "" -#: files.c:1236 +#: files.c:1237 msgid "Can't move up a directory" msgstr "" #. We can't open this dir for some reason. Complain -#: files.c:1244 +#: files.c:1245 #, fuzzy, c-format msgid "Can't open \"%s\": %s" msgstr "Impossibile chiudere %s: %s" -#: global.c:131 +#: global.c:132 #, fuzzy msgid "Constant cursor position" msgstr " -c \t\tMostra sempre la posizione del cursore\n" -#: global.c:132 +#: global.c:133 #, fuzzy msgid "Auto indent" msgstr "Vai alla linea" -#: global.c:133 +#: global.c:134 #, fuzzy msgid "Suspend" msgstr "Sospendi" -#: global.c:134 +#: global.c:135 msgid "Help mode" msgstr "" -#: global.c:135 +#: global.c:136 msgid "Pico mode" msgstr "" -#: global.c:136 +#: global.c:137 msgid "Mouse support" msgstr "" -#: global.c:137 +#: global.c:138 msgid "Cut to end" msgstr "" -#: global.c:139 +#: global.c:140 msgid "Regular expressions" msgstr "" -#: global.c:141 +#: global.c:142 msgid "Auto wrap" msgstr "" -#: global.c:185 +#: global.c:186 msgid "Invoke the help menu" msgstr "Invoca menu aiuti" -#: global.c:186 +#: global.c:187 msgid "Write the current file to disk" msgstr "Salva il file corrente sul disco" -#: global.c:187 +#: global.c:188 msgid "Exit from nano" msgstr "Esci da nano" -#: global.c:188 +#: global.c:189 msgid "Goto a specific line number" msgstr "Vai ad un numero linea specifico" -#: global.c:189 +#: global.c:190 msgid "Justify the current paragraph" msgstr "Giustifica il paragrafo corrente" -#: global.c:190 +#: global.c:191 msgid "Unjustify after a justify" msgstr "" -#: global.c:191 +#: global.c:192 msgid "Replace text within the editor" msgstr "Sostituisci testo senza editor" -#: global.c:192 +#: global.c:193 msgid "Insert another file into the current one" msgstr "Inserisci un file dentro il corrente" -#: global.c:193 +#: global.c:194 msgid "Search for text within the editor" msgstr "Cerca testo senza editor" -#: global.c:194 +#: global.c:195 msgid "Move to the previous screen" msgstr "Vai alla schermata precedente" -#: global.c:195 +#: global.c:196 msgid "Move to the next screen" msgstr "Vai alla schermata successiva" -#: global.c:196 +#: global.c:197 msgid "Cut the current line and store it in the cutbuffer" msgstr "Taglia la linea corrente e memorizzala nel cutbuffer" -#: global.c:197 +#: global.c:198 msgid "Uncut from the cutbuffer into the current line" msgstr "Uncut dal cutbuffer dentro la linea corrente" -#: global.c:198 +#: global.c:199 msgid "Show the posititon of the cursor" msgstr "Mostra la posizione del cursore" -#: global.c:199 +#: global.c:200 msgid "Invoke the spell checker (if available)" msgstr "Invocar el corrector ortográfico (si está disponible)" -#: global.c:200 +#: global.c:201 msgid "Move up one line" msgstr "Sposta in alto una linea" -#: global.c:201 +#: global.c:202 msgid "Move down one line" msgstr "Sposta in basso una linea" -#: global.c:202 +#: global.c:203 msgid "Move forward one character" msgstr "Sposta avanti un carattere" -#: global.c:203 +#: global.c:204 msgid "Move back one character" msgstr "Sposta indietro un carattere" -#: global.c:204 +#: global.c:205 msgid "Move to the beginning of the current line" msgstr "Sposta all'inizio della linea corrente" -#: global.c:205 +#: global.c:206 msgid "Move to the end of the current line" msgstr "Sposta alla fine delle linea corrente" -#: global.c:206 +#: global.c:207 msgid "Go to the first line of the file" msgstr "Vai alla prima linea del file" -#: global.c:207 +#: global.c:208 msgid "Go to the last line of the file" msgstr "Vai all'ultima linea del file" -#: global.c:208 +#: global.c:209 msgid "Refresh (redraw) the current screen" msgstr "Aggiorna la schermata corrente" -#: global.c:209 +#: global.c:210 msgid "Mark text at the current cursor location" msgstr "Marca testo nella posizione corrente del cursore" -#: global.c:210 +#: global.c:211 msgid "Delete the character under the cursor" msgstr "Elimina i caratteri sotto il cursore" -#: global.c:212 +#: global.c:213 msgid "Delete the character to the left of the cursor" msgstr "Elimina i caratteri a sinistra del cursore" -#: global.c:213 +#: global.c:214 msgid "Insert a tab character" msgstr "Inserisci un carattere tab" -#: global.c:214 +#: global.c:215 msgid "Insert a carriage return at the cursor position" msgstr "Inserisci un ritorno a capo alla posizione del cursore" -#: global.c:216 +#: global.c:217 msgid "Make the current search or replace case (in)sensitive" msgstr "Ricerca/Sostituisci con case (in)sensitive" -#: global.c:217 +#: global.c:218 msgid "Go to file browser" msgstr "" -#: global.c:218 +#: global.c:219 msgid "Cancel the current function" msgstr "Cancella la funzione corrente" -#: global.c:221 +#: global.c:222 msgid "Get Help" msgstr "Aiuto" -#: global.c:224 global.c:405 global.c:429 +#: global.c:225 global.c:406 global.c:430 msgid "Exit" msgstr "Esci" -#: global.c:227 +#: global.c:228 msgid "WriteOut" msgstr "Sovrascrivi" -#: global.c:232 global.c:321 +#: global.c:233 global.c:322 msgid "Justify" msgstr "Giustifica" -#: global.c:236 global.c:242 +#: global.c:237 global.c:243 msgid "Read File" msgstr "Leggi file" -#: global.c:246 global.c:317 global.c:345 +#: global.c:247 global.c:318 global.c:346 msgid "Replace" msgstr "Sostituisci" -#: global.c:250 +#: global.c:251 msgid "Where Is" msgstr "Dov'è" -#: global.c:254 global.c:397 global.c:421 +#: global.c:255 global.c:398 global.c:422 msgid "Prev Page" msgstr "Pag Prec" -#: global.c:258 global.c:401 global.c:425 +#: global.c:259 global.c:402 global.c:426 msgid "Next Page" msgstr "Pag Seg" -#: global.c:262 +#: global.c:263 msgid "Cut Text" msgstr "Taglia" -#: global.c:266 +#: global.c:267 #, fuzzy msgid "UnJustify" msgstr "Giustifica" -#: global.c:269 +#: global.c:270 msgid "UnCut Txt" msgstr "UnCut Txt" -#: global.c:273 +#: global.c:274 msgid "Cur Pos" msgstr "Posizione" -#: global.c:277 +#: global.c:278 msgid "To Spell" msgstr "Ortografia" -#: global.c:281 +#: global.c:282 msgid "Up" msgstr "Alza" -#: global.c:284 +#: global.c:285 msgid "Down" msgstr "Abbassa" -#: global.c:287 +#: global.c:288 msgid "Forward" msgstr "Avanti" -#: global.c:290 +#: global.c:291 msgid "Back" msgstr "Indietro" -#: global.c:293 +#: global.c:294 msgid "Home" msgstr "Inizio" -#: global.c:296 +#: global.c:297 msgid "End" msgstr "Fine" -#: global.c:299 +#: global.c:300 msgid "Refresh" msgstr "Aggiorna" -#: global.c:302 +#: global.c:303 msgid "Mark Text" msgstr "Marca testo" -#: global.c:305 +#: global.c:306 msgid "Delete" msgstr "Elimina" -#: global.c:309 +#: global.c:310 msgid "Backspace" msgstr "Backspace" -#: global.c:313 +#: global.c:314 msgid "Tab" msgstr "Tab" -#: global.c:325 +#: global.c:326 msgid "Enter" msgstr "Invio" -#: global.c:329 global.c:349 global.c:369 +#: global.c:330 global.c:350 global.c:370 msgid "Goto Line" msgstr "Vai alla linea" -#: global.c:335 global.c:356 global.c:377 global.c:387 +#: global.c:336 global.c:357 global.c:378 global.c:388 msgid "First Line" msgstr "Prima linea" -#: global.c:338 global.c:359 global.c:380 global.c:390 +#: global.c:339 global.c:360 global.c:381 global.c:391 msgid "Last Line" msgstr "Ultima linea" -#: global.c:341 global.c:362 +#: global.c:342 global.c:363 msgid "Case Sens" msgstr "Case sens" -#: global.c:352 global.c:372 global.c:383 global.c:393 global.c:414 -#: global.c:417 winio.c:1063 +#: global.c:353 global.c:373 global.c:384 global.c:394 global.c:415 +#: global.c:418 winio.c:1064 msgid "Cancel" msgstr "Cancella" -#: global.c:365 +#: global.c:366 msgid "No Replace" msgstr "" -#: global.c:410 +#: global.c:411 #, fuzzy msgid "To Files" msgstr "Nuovo file" -#: nano.c:140 +#: nano.c:141 #, fuzzy, c-format msgid "" "\n" @@ -434,22 +434,22 @@ msgstr "" "\n" "Buffer scritto su 'nano.save'\n" -#: nano.c:142 +#: nano.c:143 #, c-format msgid "" "\n" "No %s written (file exists?)\n" msgstr "" -#: nano.c:151 +#: nano.c:152 msgid "Window size is too small for Nano..." msgstr "" -#: nano.c:159 +#: nano.c:160 msgid "Key illegal in VIEW mode" msgstr "Chiave illegale nella modalità VISTA" -#: nano.c:203 +#: nano.c:204 msgid "" " nano help text\n" "\n" @@ -462,25 +462,25 @@ msgid "" "commonly used shortcuts in the editor.\n" "\n" " The notation for shortcuts is as follows: Control-key sequences are notated " -"with a caret (^) symbol and are entered with the Control (Ctrl) key. " -"Escape-key sequences are notated with the Meta (M) symbol and can be entered " -"using either the Esc, Alt or Meta key depending on your keyboard setup. The " +"with a caret (^) symbol and are entered with the Control (Ctrl) key. Escape-" +"key sequences are notated with the Meta (M) symbol and can be entered using " +"either the Esc, Alt or Meta key depending on your keyboard setup. The " "following keystrokes are available in the main editor window. Optional keys " "are shown in parentheses:\n" "\n" msgstr "" -#: nano.c:297 +#: nano.c:298 #, fuzzy msgid "delete_node(): free'd a node, YAY!\n" msgstr "free_node(): liberado un nodo, YEAH!\n" -#: nano.c:302 +#: nano.c:303 #, fuzzy msgid "delete_node(): free'd last node.\n" msgstr "free_node(): liberado el último nodo.\n" -#: nano.c:357 +#: nano.c:358 msgid "" "Usage: nano [GNU long option] [option] +LINE \n" "\n" @@ -488,85 +488,85 @@ msgstr "" "Utilizzo: nano [GNU opzioni lunghe] [opzioni] +LINEA \n" "\n" -#: nano.c:358 +#: nano.c:359 msgid "Option\t\tLong option\t\tMeaning\n" msgstr "Opzioni\t\tLunghe opzioni\t\tSignificato\n" -#: nano.c:360 +#: nano.c:361 msgid " -T [num]\t--tabsize=[num]\t\tSet width of a tab to num\n" msgstr "" -#: nano.c:363 +#: nano.c:364 msgid " -R\t\t--regexp\t\tUse regular expressions for search\n" msgstr "" -#: nano.c:367 +#: nano.c:368 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" -#: nano.c:369 +#: nano.c:370 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" -#: nano.c:371 +#: nano.c:372 msgid " -h \t\t--help\t\t\tShow this message\n" msgstr " -h \t\t--help\t\t\tMostra questo messaggio\n" -#: nano.c:373 +#: nano.c:374 msgid " -i \t\t--autoindent\t\tAutomatically indent new lines\n" msgstr " -i \t\t--autoindent\t\tIndentar automáticamente nuevas líneas\n" -#: nano.c:376 +#: nano.c:377 msgid " -k \t\t--cut\t\t\tLet ^K cut from cursor to end of line\n" msgstr "" -#: nano.c:379 +#: nano.c:380 msgid " -l \t\t--nofollow\t\tDon't follow symbolic links, overwrite\n" msgstr "" -#: nano.c:382 +#: nano.c:383 msgid " -m \t\t--mouse\t\t\tEnable mouse\n" msgstr " -m \t\t--mouse\t\t\tAttiva mouse\n" -#: nano.c:386 +#: nano.c:387 msgid " -p\t \t--pico\t\t\tEmulate Pico as closely as possible\n" msgstr "" -#: nano.c:389 +#: nano.c:390 msgid "" " -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" -#: nano.c:392 +#: nano.c:393 msgid " -s [prog] \t--speller=[prog]\tEnable alternate speller\n" msgstr " -s [prog] \t--speller=[prog]\tAttiva correttore alternativo\n" -#: nano.c:395 +#: nano.c:396 msgid " -t \t\t--tempfile\t\tAuto save on exit, don't prompt\n" msgstr "" " -t \t\t--tempfile\t\tSalvataggio automatico in uscita senza richiesta\n" -#: nano.c:397 +#: nano.c:398 msgid " -v \t\t--view\t\t\tView (read only) mode\n" msgstr " -v \t\t--view\t\t\tVisualizzazione (sola lettura)\n" -#: nano.c:400 +#: nano.c:401 msgid " -w \t\t--nowrap\t\tDon't wrap long lines\n" msgstr " -w \t\t--nowrap\t\tNon interrompere linee lunghe\n" -#: nano.c:403 +#: nano.c:404 msgid " -x \t\t--nohelp\t\tDon't show help window\n" msgstr " -x \t\t--nohelp\t\tNon mostrare finestra aiuti\n" -#: nano.c:405 +#: nano.c:406 msgid " -z \t\t--suspend\t\tEnable suspend\n" msgstr " -z \t\t--suspend\t\tAbilita sospensione\n" -#: nano.c:407 +#: nano.c:408 msgid " +LINE\t\t\t\t\tStart at line number LINE\n" msgstr " +LINE\t\t\t\t\tInizia alla linea numero\n" -#: nano.c:409 +#: nano.c:410 msgid "" "Usage: nano [option] +LINE \n" "\n" @@ -574,359 +574,359 @@ msgstr "" "Uso: nano [opzioni] +LINEA \n" "\n" -#: nano.c:410 +#: nano.c:411 msgid "Option\t\tMeaning\n" msgstr "Opzioni\t\tSignificato\n" -#: nano.c:411 +#: nano.c:412 msgid " -T [num]\tSet width of a tab to num\n" msgstr "" -#: nano.c:412 +#: nano.c:413 msgid " -R\t\tUse regular expressions for search\n" msgstr "" -#: nano.c:413 +#: nano.c:414 msgid " -V \t\tPrint version information and exit\n" msgstr " -V \t\tStampa informazioni sulla versione ed esci\n" -#: nano.c:414 +#: nano.c:415 msgid " -c \t\tConstantly show cursor position\n" msgstr " -c \t\tMostra sempre la posizione del cursore\n" -#: nano.c:415 +#: nano.c:416 msgid " -h \t\tShow this message\n" msgstr " -h \t\tMostra questo messaggio\n" -#: nano.c:416 +#: nano.c:417 msgid " -i \t\tAutomatically indent new lines\n" msgstr " -v \t\tIndentazione automatica nuove linee\n" -#: nano.c:418 +#: nano.c:419 msgid " -k \t\tLet ^K cut from cursor to end of line\n" msgstr "" -#: nano.c:421 +#: nano.c:422 msgid " -l \t\tDon't follow symbolic links, overwrite\n" msgstr " -l \t\tNon seguire i link simbolici, sovrascrivi\n" -#: nano.c:424 +#: nano.c:425 msgid " -m \t\tEnable mouse\n" msgstr " -m \t\tAttiva mouse\n" -#: nano.c:427 +#: nano.c:428 msgid " -p \t\tEmulate Pico as closely as possible\n" msgstr "" -#: nano.c:428 +#: nano.c:429 msgid " -r [#cols] \tSet fill cols to (wrap lines at) #cols\n" msgstr " -r [#cols] \tRiempimento colonne (interrompi linee a) #cols\n" -#: nano.c:430 +#: nano.c:431 msgid " -s [prog] \tEnable alternate speller\n" msgstr " -s [prog] \tAttiva correttore alternativo\n" -#: nano.c:432 +#: nano.c:433 msgid " -t \t\tAuto save on exit, don't prompt\n" msgstr " -t \t\tSalvataggio automatico in uscita senza avviso\n" -#: nano.c:433 +#: nano.c:434 msgid " -v \t\tView (read only) mode\n" msgstr " -v \t\tVisualizza (sola lettura)\n" -#: nano.c:435 +#: nano.c:436 msgid " -w \t\tDon't wrap long lines\n" msgstr " -w \t\tNon interrompere linee lunghe\n" -#: nano.c:437 +#: nano.c:438 msgid " -x \t\tDon't show help window\n" msgstr " -x \t\tNon mostrare la finestra Aiuti\n" -#: nano.c:438 +#: nano.c:439 msgid " -z \t\tEnable suspend\n" msgstr " -z \t\tAttiva sospensione\n" -#: nano.c:439 +#: nano.c:440 msgid " +LINE\t\tStart at line number LINE\n" msgstr " +LINEA\t\tInizia alla LINEA numero\n" -#: nano.c:446 +#: nano.c:447 #, c-format msgid " GNU nano version %s (compiled %s, %s)\n" msgstr " GNU nano versione %s (compilato %s, %s\n" -#: nano.c:449 +#: nano.c:450 #, fuzzy msgid " Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org" msgstr "Email: nano@nano-editor.org\tWeb: http://www.nano-editor.org\n" -#: nano.c:450 +#: nano.c:451 msgid "" "\n" " Compiled options:" msgstr "" -#: nano.c:518 +#: nano.c:519 msgid "Mark Set" msgstr "" -#: nano.c:523 +#: nano.c:524 msgid "Mark UNset" msgstr "" -#: nano.c:1024 +#: nano.c:1025 #, c-format msgid "check_wrap called with inptr->data=\"%s\"\n" msgstr "check_wrap chiamata con inptr->data=\"%s\"\n" -#: nano.c:1076 +#: nano.c:1077 #, c-format msgid "current->data now = \"%s\"\n" msgstr "current->data ora = \"%d\"\n" -#: nano.c:1128 +#: nano.c:1129 #, c-format msgid "After, data = \"%s\"\n" msgstr "Dopo, data = \"%s\"\n" -#: nano.c:1230 +#: nano.c:1231 msgid "Edit a replacement" msgstr "" -#: nano.c:1461 +#: nano.c:1462 #, c-format msgid "Could not create a temporary filename: %s" msgstr "Impossibile creare un nome file temporaneo: %s" -#: nano.c:1467 +#: nano.c:1468 msgid "Spell checking failed: unable to write temp file!" msgstr "" -#: nano.c:1479 +#: nano.c:1480 msgid "Finished checking spelling" msgstr "Controllo ortografico terminato" -#: nano.c:1481 +#: nano.c:1482 msgid "Spell checking failed" msgstr "" -#: nano.c:1501 +#: nano.c:1502 msgid "Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES) ? " msgstr "" "Salva il buffer modificato (RISPONDENDO \"No\" ANNULLERETE I CAMBIAMENTI " "AVVENUTI) ?" -#: nano.c:1597 +#: nano.c:1598 msgid "Received SIGHUP" msgstr "" -#: nano.c:1660 +#: nano.c:1661 msgid "Cannot resize top win" msgstr "Impossibile ridimensionare la finestra superiore" -#: nano.c:1662 +#: nano.c:1663 msgid "Cannot move top win" msgstr "Impossibile spostare la finestra superiore" -#: nano.c:1664 +#: nano.c:1665 msgid "Cannot resize edit win" msgstr "Impossibile ridimensionare la finestra di modifica" -#: nano.c:1666 +#: nano.c:1667 msgid "Cannot move edit win" msgstr "Impossibile spostare finestra di modifica" -#: nano.c:1668 +#: nano.c:1669 msgid "Cannot resize bottom win" msgstr "Impossibile ridimensionare la finestra inferiore" -#: nano.c:1670 +#: nano.c:1671 msgid "Cannot move bottom win" msgstr "Impossibile spostare la finestra inferiore" -#: nano.c:1978 +#: nano.c:1979 msgid "Can now UnJustify!" msgstr "" -#: nano.c:2076 +#: nano.c:2077 #, c-format msgid "%s enable/disable" msgstr "" -#: nano.c:2091 +#: nano.c:2092 msgid "enabled" msgstr "" -#: nano.c:2092 +#: nano.c:2093 msgid "disabled" msgstr "" -#: nano.c:2144 +#: nano.c:2145 msgid "NumLock glitch detected. Keypad will malfunction with NumLock off" msgstr "" -#: nano.c:2366 +#: nano.c:2371 msgid "Main: set up windows\n" msgstr "Main: configura finestre\n" -#: nano.c:2373 +#: nano.c:2378 msgid "Main: bottom win\n" msgstr "Main: finestra inferiore\n" -#: nano.c:2379 +#: nano.c:2384 msgid "Main: open file\n" msgstr "Main: apri file\n" -#: nano.c:2431 +#: nano.c:2437 #, fuzzy, c-format msgid "I got Alt-O-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:2458 +#: nano.c:2464 #, fuzzy, c-format msgid "I got Alt-[-1-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:2491 +#: nano.c:2497 #, fuzzy, c-format msgid "I got Alt-[-2-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:2533 +#: nano.c:2543 #, c-format msgid "I got Alt-[-%c! (%d)\n" msgstr "Premuto Alt-[-%c! (%d)\n" -#: nano.c:2559 +#: nano.c:2569 #, c-format msgid "I got Alt-%c! (%d)\n" msgstr "Premuto Alt-%c! (%d)\n" -#: search.c:117 +#: search.c:118 #, fuzzy, c-format msgid "Case Sensitive Regexp Search%s%s" msgstr "Ricerca case sensitive%s%s" -#: search.c:119 +#: search.c:120 #, fuzzy, c-format msgid "Regexp Search%s%s" msgstr "Ricerca%s%s" -#: search.c:121 +#: search.c:122 #, fuzzy, c-format msgid "Case Sensitive Search%s%s" msgstr "Ricerca case sensitive%s%s" -#: search.c:123 +#: search.c:124 #, fuzzy, c-format msgid "Search%s%s" msgstr "Ricerca%s%s" -#: search.c:126 +#: search.c:127 #, fuzzy msgid " (to replace)" msgstr " (sostituisci)" -#: search.c:135 search.c:326 +#: search.c:136 search.c:327 msgid "Search Cancelled" msgstr "Ricerca annullata" -#: search.c:199 +#: search.c:200 #, fuzzy, c-format msgid "\"%s...\" not found" msgstr "\"%s\" non trovato" -#: search.c:248 +#: search.c:249 msgid "Search Wrapped" msgstr "Ricerca interrotta" -#: search.c:348 +#: search.c:349 #, fuzzy, c-format msgid "Replaced %d occurrences" msgstr "Sostituite %d occorrenze" -#: search.c:350 +#: search.c:351 #, fuzzy msgid "Replaced 1 occurrence" msgstr "Sostituita 1 occorrenza" -#: search.c:488 search.c:592 search.c:608 +#: search.c:489 search.c:599 search.c:615 msgid "Replace Cancelled" msgstr "Sostituzione annullata" -#: search.c:538 +#: search.c:539 msgid "Replace this instance?" msgstr "Sostituisci questa istanza?" -#: search.c:550 +#: search.c:551 msgid "Replace failed: unknown subexpression!" msgstr "" -#: search.c:633 +#: search.c:640 #, c-format msgid "Replace with [%s]" msgstr "Sostituisci con [%s]" -#: search.c:637 search.c:641 +#: search.c:644 search.c:648 msgid "Replace with" msgstr "Sostituisci con" #. Ask for it -#: search.c:676 +#: search.c:683 msgid "Enter line number" msgstr "Inserire numero linea" -#: search.c:678 +#: search.c:685 msgid "Aborted" msgstr "Operazione fallita" -#: search.c:698 +#: search.c:705 msgid "Come on, be reasonable" msgstr "Avanti, sii ragionevole" -#: search.c:703 +#: search.c:710 #, c-format msgid "Only %d lines available, skipping to last line" msgstr "Solo %d linee disponibili, vai all'ultima" -#: winio.c:123 +#: winio.c:124 #, fuzzy, c-format msgid "actual_x_from_start for xplus=%d returned %d\n" msgstr "actual_x per xplus=%d ha riportato %d\n" -#: winio.c:447 +#: winio.c:448 #, c-format msgid "input '%c' (%d)\n" msgstr "input '%c' (%d)\n" -#: winio.c:489 +#: winio.c:490 msgid "New Buffer" msgstr "Nuovo Buffer" -#: winio.c:493 +#: winio.c:494 msgid " File: ..." msgstr "File: ..." -#: winio.c:495 +#: winio.c:496 #, fuzzy msgid " DIR: ..." msgstr "File: ..." -#: winio.c:506 +#: winio.c:507 msgid "Modified" msgstr "Modificato" -#: winio.c:958 +#: winio.c:959 #, c-format msgid "Moved to (%d, %d) in edit buffer\n" msgstr "Mosso in (%d, %d) nel buffer di modifica\n" -#: winio.c:969 +#: winio.c:970 #, c-format msgid "current->data = \"%s\"\n" msgstr "current->data = \"%s\"\n" -#: winio.c:1014 +#: winio.c:1015 #, c-format msgid "I got \"%s\"\n" msgstr "Premuto \"%s\"\n" @@ -938,80 +938,81 @@ msgstr "Premuto \"%s\"\n" #. Yes, no and all are strings of any length. Each string consists of #. all characters accepted as a valid character for that value. #. The first value will be the one displayed in the shortcuts. -#: winio.c:1037 +#: winio.c:1038 msgid "Yy" msgstr "Ss" -#: winio.c:1038 +#: winio.c:1039 msgid "Nn" msgstr "Nn" -#: winio.c:1039 +#: winio.c:1040 msgid "Aa" msgstr "Tt" -#: winio.c:1052 +#: winio.c:1053 msgid "Yes" msgstr " Sì" -#: winio.c:1056 +#: winio.c:1057 msgid "All" msgstr " Tutti" -#: winio.c:1061 +#: winio.c:1062 msgid "No" msgstr " No" -#: winio.c:1204 +#: winio.c:1205 #, c-format msgid "do_cursorpos: linepct = %f, bytepct = %f\n" msgstr "do_cursorpos: linepct = %f, bytepct = %f\n" -#: winio.c:1208 +#: winio.c:1209 +#, c-format msgid "line %d of %d (%.0f%%), character %d of %d (%.0f%%)" msgstr "linea %d di %d (%.0f%%), carattere %d di %d (%.0f%%)" -#: winio.c:1338 +#: winio.c:1339 msgid "Dumping file buffer to stderr...\n" msgstr "Copia file buffer sullo stderr...\n" -#: winio.c:1340 +#: winio.c:1341 msgid "Dumping cutbuffer to stderr...\n" msgstr "Copia cutbuffer sullo stderr...\n" -#: winio.c:1342 +#: winio.c:1343 msgid "Dumping a buffer to stderr...\n" msgstr "Copia un buffer sullo stderr...\n" -#: winio.c:1417 +#: winio.c:1418 msgid "The nano text editor" msgstr "" -#: winio.c:1418 +#: winio.c:1419 msgid "version " msgstr "" -#: winio.c:1419 +#: winio.c:1420 msgid "Brought to you by:" msgstr "" -#: winio.c:1420 +#: winio.c:1421 msgid "Special thanks to:" msgstr "" -#: winio.c:1421 +#: winio.c:1422 msgid "The Free Software Foundation" msgstr "" -#: winio.c:1422 +#: winio.c:1423 msgid "Pavel Curtis, Zeyd Ben-Halim and Eric S. Raymond for ncurses" msgstr "" -#: winio.c:1423 +#: winio.c:1424 msgid "and anyone else we forgot..." msgstr "" -#: winio.c:1424 +#: winio.c:1425 msgid "Thank you for using nano!\n" msgstr "" -- 2.39.5