aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-02-14 21:04:35 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-02-14 21:04:35 +0200
commit8f67459bc82490cca23d511c787a9459c9fca372 (patch)
tree27db9eee674eebd47672f813e42e382ba26e5992
parent0f906dfde40392937b3461f040b7ed52e3d0abbf (diff)
parentb9cc8418bb162e3714abb3313faf7c18b5d10bb0 (diff)
downloadegawk-8f67459bc82490cca23d511c787a9459c9fca372.tar.gz
egawk-8f67459bc82490cca23d511c787a9459c9fca372.tar.bz2
egawk-8f67459bc82490cca23d511c787a9459c9fca372.zip
Merge branch 'gawk-4.2-stable'
-rw-r--r--extension/ChangeLog10
-rw-r--r--extension/Makefile.in61
-rw-r--r--extension/aclocal.m411
-rw-r--r--extension/configh.in28
-rwxr-xr-xextension/configure3845
-rw-r--r--extension/configure.ac20
-rw-r--r--extension/intdiv.c15
-rw-r--r--po/ca.gmobin77799 -> 77799 bytes
-rw-r--r--po/ca.po94
-rw-r--r--po/da.gmobin47570 -> 47570 bytes
-rw-r--r--po/da.po94
-rw-r--r--po/de.gmobin87626 -> 87626 bytes
-rw-r--r--po/de.po94
-rw-r--r--po/es.gmobin41918 -> 41918 bytes
-rw-r--r--po/es.po94
-rw-r--r--po/fi.gmobin84744 -> 84744 bytes
-rw-r--r--po/fi.po94
-rw-r--r--po/fr.gmobin87831 -> 88683 bytes
-rw-r--r--po/fr.po506
-rw-r--r--po/gawk.pot96
-rw-r--r--po/id.gmobin71064 -> 71064 bytes
-rw-r--r--po/id.po94
-rw-r--r--po/it.gmobin83769 -> 84539 bytes
-rw-r--r--po/it.po110
-rw-r--r--po/ja.gmobin48204 -> 48204 bytes
-rw-r--r--po/ja.po94
-rw-r--r--po/ms.gmobin1082 -> 1082 bytes
-rw-r--r--po/ms.po94
-rw-r--r--po/nl.gmobin75617 -> 75617 bytes
-rw-r--r--po/nl.po94
-rw-r--r--po/pl.gmobin63078 -> 63078 bytes
-rw-r--r--po/pl.po94
-rw-r--r--po/pt_BR.gmobin84323 -> 85026 bytes
-rw-r--r--po/pt_BR.po519
-rw-r--r--po/sv.gmobin83283 -> 84719 bytes
-rw-r--r--po/sv.po371
-rw-r--r--po/vi.gmobin95066 -> 95954 bytes
-rw-r--r--po/vi.po481
-rw-r--r--po/zh_CN.gmobin78531 -> 79203 bytes
-rw-r--r--po/zh_CN.po189
40 files changed, 5179 insertions, 2023 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog
index 582b0b5a..1abe1b1c 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,13 @@
+2018-02-14 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Add stuff for finding gettext. Helps in
+ finding MPFR on some systems.
+
+2018-02-11 Andrew J. Schorr <aschorr@telemetry-investments.com>
+
+ * intdiv.c (do_intdiv): Print a warning about loss of precision if
+ MPFR arguments are received when not compiled with MPFR support.
+
2018-02-11 Arnold D. Robbins <arnold@skeeve.com>
* filefuncs.3am: Fix some typos.
diff --git a/extension/Makefile.in b/extension/Makefile.in
index f4bb6289..fca6c896 100644
--- a/extension/Makefile.in
+++ b/extension/Makefile.in
@@ -114,10 +114,16 @@ host_triplet = @host@
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../m4/arch.m4 \
- $(top_srcdir)/../m4/mpfr.m4 $(top_srcdir)/m4/dirfd.m4 \
- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
+ $(top_srcdir)/../m4/codeset.m4 $(top_srcdir)/../m4/gettext.m4 \
+ $(top_srcdir)/../m4/iconv.m4 $(top_srcdir)/../m4/intlmacosx.m4 \
+ $(top_srcdir)/../m4/lcmessage.m4 $(top_srcdir)/../m4/mpfr.m4 \
+ $(top_srcdir)/../m4/po.m4 $(top_srcdir)/m4/dirfd.m4 \
+ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
+ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
+ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/progtest.m4 \
+ $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
@@ -159,7 +165,8 @@ am__installdirs = "$(DESTDIR)$(pkgextensiondir)" \
"$(DESTDIR)$(man3dir)"
LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkgextension_LTLIBRARIES)
am__DEPENDENCIES_1 =
-filefuncs_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
+filefuncs_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_filefuncs_la_OBJECTS = filefuncs.lo stack.lo gawkfts.lo
filefuncs_la_OBJECTS = $(am_filefuncs_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
@@ -169,80 +176,80 @@ am__v_lt_1 =
filefuncs_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(filefuncs_la_LDFLAGS) $(LDFLAGS) -o $@
-fnmatch_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+fnmatch_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_fnmatch_la_OBJECTS = fnmatch.lo
fnmatch_la_OBJECTS = $(am_fnmatch_la_OBJECTS)
fnmatch_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(fnmatch_la_LDFLAGS) $(LDFLAGS) -o $@
-fork_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+fork_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_fork_la_OBJECTS = fork.lo
fork_la_OBJECTS = $(am_fork_la_OBJECTS)
fork_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(fork_la_LDFLAGS) $(LDFLAGS) -o $@
-inplace_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+inplace_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_inplace_la_OBJECTS = inplace.lo
inplace_la_OBJECTS = $(am_inplace_la_OBJECTS)
inplace_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(inplace_la_LDFLAGS) $(LDFLAGS) -o $@
-intdiv_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
+intdiv_la_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1)
am_intdiv_la_OBJECTS = intdiv.lo
intdiv_la_OBJECTS = $(am_intdiv_la_OBJECTS)
intdiv_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(intdiv_la_LDFLAGS) $(LDFLAGS) -o $@
-ordchr_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+ordchr_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_ordchr_la_OBJECTS = ordchr.lo
ordchr_la_OBJECTS = $(am_ordchr_la_OBJECTS)
ordchr_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(ordchr_la_LDFLAGS) $(LDFLAGS) -o $@
-readdir_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+readdir_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_readdir_la_OBJECTS = readdir.lo
readdir_la_OBJECTS = $(am_readdir_la_OBJECTS)
readdir_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(readdir_la_LDFLAGS) $(LDFLAGS) -o $@
-readdir_test_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+readdir_test_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_readdir_test_la_OBJECTS = readdir_test.lo
readdir_test_la_OBJECTS = $(am_readdir_test_la_OBJECTS)
readdir_test_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(readdir_test_la_LDFLAGS) $(LDFLAGS) \
-o $@
-readfile_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+readfile_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_readfile_la_OBJECTS = readfile.lo
readfile_la_OBJECTS = $(am_readfile_la_OBJECTS)
readfile_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(readfile_la_LDFLAGS) $(LDFLAGS) -o $@
-revoutput_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+revoutput_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_revoutput_la_OBJECTS = revoutput.lo
revoutput_la_OBJECTS = $(am_revoutput_la_OBJECTS)
revoutput_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(revoutput_la_LDFLAGS) $(LDFLAGS) -o $@
-revtwoway_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+revtwoway_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_revtwoway_la_OBJECTS = revtwoway.lo
revtwoway_la_OBJECTS = $(am_revtwoway_la_OBJECTS)
revtwoway_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(revtwoway_la_LDFLAGS) $(LDFLAGS) -o $@
-rwarray_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+rwarray_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_rwarray_la_OBJECTS = rwarray.lo
rwarray_la_OBJECTS = $(am_rwarray_la_OBJECTS)
rwarray_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(rwarray_la_LDFLAGS) $(LDFLAGS) -o $@
-testext_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+testext_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_testext_la_OBJECTS = testext.lo
testext_la_OBJECTS = $(am_testext_la_OBJECTS)
testext_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(testext_la_LDFLAGS) $(LDFLAGS) -o $@
-time_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+time_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_time_la_OBJECTS = time.lo
time_la_OBJECTS = $(am_time_la_OBJECTS)
time_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
@@ -344,6 +351,7 @@ am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \
$(srcdir)/configh.in $(top_srcdir)/build-aux/ar-lib \
$(top_srcdir)/build-aux/compile \
$(top_srcdir)/build-aux/config.guess \
+ $(top_srcdir)/build-aux/config.rpath \
$(top_srcdir)/build-aux/config.sub \
$(top_srcdir)/build-aux/depcomp \
$(top_srcdir)/build-aux/install-sh \
@@ -420,25 +428,37 @@ ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
+GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
+GMSGFMT = @GMSGFMT@
+GMSGFMT_015 = @GMSGFMT_015@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INTLLIBS = @INTLLIBS@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
+LIBICONV = @LIBICONV@
+LIBINTL = @LIBINTL@
LIBMPFR = @LIBMPFR@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
+LTLIBICONV = @LTLIBICONV@
+LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
+MSGFMT = @MSGFMT@
+MSGFMT_015 = @MSGFMT_015@
+MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
@@ -453,12 +473,17 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
+POSUB = @POSUB@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
+USE_NLS = @USE_NLS@
VERSION = @VERSION@
+XGETTEXT = @XGETTEXT@
+XGETTEXT_015 = @XGETTEXT_015@
+XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
diff --git a/extension/aclocal.m4 b/extension/aclocal.m4
index 1e7a343c..fc5b0430 100644
--- a/extension/aclocal.m4
+++ b/extension/aclocal.m4
@@ -1211,10 +1211,21 @@ AC_SUBST([am__untar])
]) # _AM_PROG_TAR
m4_include([../m4/arch.m4])
+m4_include([../m4/codeset.m4])
+m4_include([../m4/gettext.m4])
+m4_include([../m4/iconv.m4])
+m4_include([../m4/intlmacosx.m4])
+m4_include([../m4/lcmessage.m4])
m4_include([../m4/mpfr.m4])
+m4_include([../m4/po.m4])
m4_include([m4/dirfd.m4])
+m4_include([m4/lib-ld.m4])
+m4_include([m4/lib-link.m4])
+m4_include([m4/lib-prefix.m4])
m4_include([m4/libtool.m4])
m4_include([m4/ltoptions.m4])
m4_include([m4/ltsugar.m4])
m4_include([m4/ltversion.m4])
m4_include([m4/lt~obsolete.m4])
+m4_include([m4/nls.m4])
+m4_include([m4/progtest.m4])
diff --git a/extension/configh.in b/extension/configh.in
index 2789e1a7..c398eb26 100644
--- a/extension/configh.in
+++ b/extension/configh.in
@@ -10,6 +10,22 @@
#endif
+/* Define to 1 if translation of program messages to the user's native
+ language is requested. */
+#undef ENABLE_NLS
+
+/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
+ CoreFoundation framework. */
+#undef HAVE_CFLOCALECOPYCURRENT
+
+/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
+ the CoreFoundation framework. */
+#undef HAVE_CFPREFERENCESCOPYAPPVALUE
+
+/* Define if the GNU dcgettext() function is already present or preinstalled.
+ */
+#undef HAVE_DCGETTEXT
+
/* Define to 1 if you have the declaration of `dirfd', and to 0 if you don't.
*/
#undef HAVE_DECL_DIRFD
@@ -42,12 +58,24 @@
/* Define to 1 if you have the `GetSystemTimeAsFileTime' function. */
#undef HAVE_GETSYSTEMTIMEASFILETIME
+/* Define if the GNU gettext() function is already present or preinstalled. */
+#undef HAVE_GETTEXT
+
/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
+/* Define if you have the iconv() function and it works. */
+#undef HAVE_ICONV
+
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
+/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
+#undef HAVE_LANGINFO_CODESET
+
+/* Define if your <locale.h> file defines LC_MESSAGES. */
+#undef HAVE_LC_MESSAGES
+
/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
diff --git a/extension/configure b/extension/configure
index 2ace2d86..3bdccfc0 100755
--- a/extension/configure
+++ b/extension/configure
@@ -631,6 +631,7 @@ ac_includes_default="\
# include <unistd.h>
#endif"
+gt_needs=
ac_subst_vars='am__EXEEXT_FALSE
am__EXEEXT_TRUE
LTLIBOBJS
@@ -653,7 +654,16 @@ ac_ct_DUMPBIN
DUMPBIN
LD
FGREP
-SED
+LIBTOOL
+ac_ct_AR
+AR
+POSUB
+LTLIBINTL
+LIBINTL
+INTLLIBS
+LTLIBICONV
+LIBICONV
+INTL_MACOSX_LIBS
host_os
host_vendor
host_cpu
@@ -662,13 +672,20 @@ build_os
build_vendor
build_cpu
build
-LIBTOOL
-ac_ct_AR
-AR
-AM_BACKSLASH
-AM_DEFAULT_VERBOSITY
-AM_DEFAULT_V
-AM_V
+XGETTEXT_EXTRA_OPTIONS
+MSGMERGE
+XGETTEXT_015
+XGETTEXT
+GMSGFMT_015
+MSGFMT_015
+GMSGFMT
+MSGFMT
+GETTEXT_MACRO_VERSION
+USE_NLS
+SED
+EGREP
+GREP
+CPP
am__fastdepCC_FALSE
am__fastdepCC_TRUE
CCDEPMODE
@@ -679,6 +696,17 @@ AMDEP_TRUE
am__quote
am__include
DEPDIR
+OBJEXT
+EXEEXT
+ac_ct_CC
+CPPFLAGS
+LDFLAGS
+CFLAGS
+CC
+AM_BACKSLASH
+AM_DEFAULT_VERBOSITY
+AM_DEFAULT_V
+AM_V
am__untar
am__tar
AMTAR
@@ -702,16 +730,6 @@ am__isrc
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
-EGREP
-GREP
-CPP
-OBJEXT
-EXEEXT
-ac_ct_CC
-CPPFLAGS
-LDFLAGS
-CFLAGS
-CC
target_alias
host_alias
build_alias
@@ -753,16 +771,20 @@ SHELL'
ac_subst_files=''
ac_user_opts='
enable_option_checking
-enable_dependency_tracking
enable_silent_rules
+enable_dependency_tracking
enable_mpfr
+enable_nls
+with_gnu_ld
+enable_rpath
+with_libiconv_prefix
+with_libintl_prefix
enable_largefile
enable_static
enable_shared
with_pic
enable_fast_install
with_aix_soname
-with_gnu_ld
with_sysroot
enable_libtool_lock
with_mpfr
@@ -1395,13 +1417,15 @@ Optional Features:
--disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
+ --enable-silent-rules less verbose build output (undo: "make V=1")
+ --disable-silent-rules verbose build output (undo: "make V=0")
--enable-dependency-tracking
do not reject slow dependency extractors
--disable-dependency-tracking
speeds up one-time build
- --enable-silent-rules less verbose build output (undo: "make V=1")
- --disable-silent-rules verbose build output (undo: "make V=0")
--disable-mpfr do not check for MPFR
+ --disable-nls do not use Native Language Support
+ --disable-rpath do not hardcode runtime library paths
--disable-largefile omit support for large files
--enable-static[=PKGS] build static libraries [default=no]
--enable-shared[=PKGS] build shared libraries [default=yes]
@@ -1412,6 +1436,11 @@ Optional Features:
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
+ --with-gnu-ld assume the C compiler uses GNU ld default=no
+ --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib
+ --without-libiconv-prefix don't search for libiconv in includedir and libdir
+ --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib
+ --without-libintl-prefix don't search for libintl in includedir and libdir
--with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use
both]
--with-aix-soname=aix|svr4|both
@@ -1755,6 +1784,52 @@ $as_echo "$ac_res" >&6; }
} # ac_fn_c_check_header_compile
+# ac_fn_c_try_link LINENO
+# -----------------------
+# Try to link conftest.$ac_ext, and return whether this succeeded.
+ac_fn_c_try_link ()
+{
+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ rm -f conftest.$ac_objext conftest$ac_exeext
+ if { { ac_try="$ac_link"
+case "(($ac_try" in
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+ *) ac_try_echo=$ac_try;;
+esac
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
+$as_echo "$ac_try_echo"; } >&5
+ (eval "$ac_link") 2>conftest.err
+ ac_status=$?
+ if test -s conftest.err; then
+ grep -v '^ *+' conftest.err >conftest.er1
+ cat conftest.er1 >&5
+ mv -f conftest.er1 conftest.err
+ fi
+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+ test $ac_status = 0; } && {
+ test -z "$ac_c_werror_flag" ||
+ test ! -s conftest.err
+ } && test -s conftest$ac_exeext && {
+ test "$cross_compiling" = yes ||
+ test -x conftest$ac_exeext
+ }; then :
+ ac_retval=0
+else
+ $as_echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+ ac_retval=1
+fi
+ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
+ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
+ # interfere with the next link command; also delete a directory that is
+ # left behind by Apple's compiler. We do this before executing the actions.
+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ as_fn_set_status $ac_retval
+
+} # ac_fn_c_try_link
+
# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES
# ----------------------------------------------------
# Tries to find if the field MEMBER exists in type AGGR, after including
@@ -1812,52 +1887,6 @@ $as_echo "$ac_res" >&6; }
} # ac_fn_c_check_member
-# ac_fn_c_try_link LINENO
-# -----------------------
-# Try to link conftest.$ac_ext, and return whether this succeeded.
-ac_fn_c_try_link ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext conftest$ac_exeext
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && {
- test -z "$ac_c_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext && {
- test "$cross_compiling" = yes ||
- test -x conftest$ac_exeext
- }; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_retval=1
-fi
- # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
- # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
- # interfere with the next link command; also delete a directory that is
- # left behind by Apple's compiler. We do this before executing the actions.
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
- as_fn_set_status $ac_retval
-
-} # ac_fn_c_try_link
-
# ac_fn_c_check_func LINENO FUNC VAR
# ----------------------------------
# Tests whether FUNC exists, setting the cache variable VAR accordingly
@@ -2254,6 +2283,7 @@ $as_echo "$as_me: creating cache $cache_file" >&6;}
>$cache_file
fi
+gt_needs="$gt_needs "
# Check that the precious variables saved in the cache have kept the same
# value.
ac_cache_corrupted=false
@@ -2324,6 +2354,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
ac_aux_dir=
for ac_dir in build-aux "$srcdir"/build-aux; do
if test -f "$ac_dir/install-sh"; then
@@ -2354,9 +2386,650 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
+am__api_version='1.15'
+
+# Find a good install program. We prefer a C program (faster),
+# so one script is as good as another. But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# OS/2's system install, which has a completely different semantic
+# ./install, which can be erroneously created by make from ./install.sh.
+# Reject install programs that cannot install multiple files.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
+if test -z "$INSTALL"; then
+if ${ac_cv_path_install+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ # Account for people who put trailing slashes in PATH elements.
+case $as_dir/ in #((
+ ./ | .// | /[cC]/* | \
+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
+ /usr/ucb/* ) ;;
+ *)
+ # OSF1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF since it installs stuff as root
+ # by default.
+ for ac_prog in ginstall scoinst install; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+ if test $ac_prog = install &&
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # AIX install. It has an incompatible calling convention.
+ :
+ elif test $ac_prog = install &&
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # program-specific install script used by HP pwplus--don't use.
+ :
+ else
+ rm -rf conftest.one conftest.two conftest.dir
+ echo one > conftest.one
+ echo two > conftest.two
+ mkdir conftest.dir
+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
+ test -s conftest.one && test -s conftest.two &&
+ test -s conftest.dir/conftest.one &&
+ test -s conftest.dir/conftest.two
+ then
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+ break 3
+ fi
+ fi
+ fi
+ done
+ done
+ ;;
+esac
+
+ done
+IFS=$as_save_IFS
+
+rm -rf conftest.one conftest.two conftest.dir
+
+fi
+ if test "${ac_cv_path_install+set}" = set; then
+ INSTALL=$ac_cv_path_install
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for INSTALL within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ INSTALL=$ac_install_sh
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
+$as_echo "$INSTALL" >&6; }
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
+$as_echo_n "checking whether build environment is sane... " >&6; }
+# Reject unsafe characters in $srcdir or the absolute working directory
+# name. Accept space and tab only in the latter.
+am_lf='
+'
+case `pwd` in
+ *[\\\"\#\$\&\'\`$am_lf]*)
+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
+esac
+case $srcdir in
+ *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
+ as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
+esac
+
+# Do 'set' in a subshell so we don't clobber the current shell's
+# arguments. Must try -L first in case configure is actually a
+# symlink; some systems play weird games with the mod time of symlinks
+# (eg FreeBSD returns the mod time of the symlink's containing
+# directory).
+if (
+ am_has_slept=no
+ for am_try in 1 2; do
+ echo "timestamp, slept: $am_has_slept" > conftest.file
+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+ if test "$*" = "X"; then
+ # -L didn't work.
+ set X `ls -t "$srcdir/configure" conftest.file`
+ fi
+ if test "$*" != "X $srcdir/configure conftest.file" \
+ && test "$*" != "X conftest.file $srcdir/configure"; then
+
+ # If neither matched, then we have a broken ls. This can happen
+ # if, for instance, CONFIG_SHELL is bash and it inherits a
+ # broken ls alias from the environment. This has actually
+ # happened. Such a system could not be considered "sane".
+ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
+ alias in your environment" "$LINENO" 5
+ fi
+ if test "$2" = conftest.file || test $am_try -eq 2; then
+ break
+ fi
+ # Just in case.
+ sleep 1
+ am_has_slept=yes
+ done
+ test "$2" = conftest.file
+ )
+then
+ # Ok.
+ :
+else
+ as_fn_error $? "newly created file is older than distributed files!
+Check your system clock" "$LINENO" 5
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+# If we didn't sleep, we still need to ensure time stamps of config.status and
+# generated files are strictly newer.
+am_sleep_pid=
+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
+ ( sleep 1 ) &
+ am_sleep_pid=$!
+fi
+
+rm -f conftest.file
+
+test "$program_prefix" != NONE &&
+ program_transform_name="s&^&$program_prefix&;$program_transform_name"
+# Use a double $ so make ignores it.
+test "$program_suffix" != NONE &&
+ program_transform_name="s&\$&$program_suffix&;$program_transform_name"
+# Double any \ or $.
+# By default was `s,x,x', remove it if useless.
+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
+
# Expand $ac_aux_dir to an absolute path.
am_aux_dir=`cd "$ac_aux_dir" && pwd`
+if test x"${MISSING+set}" != xset; then
+ case $am_aux_dir in
+ *\ * | *\ *)
+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
+ *)
+ MISSING="\${SHELL} $am_aux_dir/missing" ;;
+ esac
+fi
+# Use eval to expand $SHELL
+if eval "$MISSING --is-lightweight"; then
+ am_missing_run="$MISSING "
+else
+ am_missing_run=
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
+$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
+fi
+
+if test x"${install_sh+set}" != xset; then
+ case $am_aux_dir in
+ *\ * | *\ *)
+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
+ *)
+ install_sh="\${SHELL} $am_aux_dir/install-sh"
+ esac
+fi
+
+# Installed binaries are usually stripped using 'strip' when the user
+# run "make install-strip". However 'strip' might not be the right
+# tool to use in cross-compilation environments, therefore Automake
+# will honor the 'STRIP' environment variable to overrule this program.
+if test "$cross_compiling" != no; then
+ if test -n "$ac_tool_prefix"; then
+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
+set dummy ${ac_tool_prefix}strip; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_STRIP+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if test -n "$STRIP"; then
+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_STRIP="${ac_tool_prefix}strip"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+fi
+fi
+STRIP=$ac_cv_prog_STRIP
+if test -n "$STRIP"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
+$as_echo "$STRIP" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_prog_STRIP"; then
+ ac_ct_STRIP=$STRIP
+ # Extract the first word of "strip", so it can be a program name with args.
+set dummy strip; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if test -n "$ac_ct_STRIP"; then
+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_ac_ct_STRIP="strip"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+fi
+fi
+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
+if test -n "$ac_ct_STRIP"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
+$as_echo "$ac_ct_STRIP" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+ if test "x$ac_ct_STRIP" = x; then
+ STRIP=":"
+ else
+ case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+ STRIP=$ac_ct_STRIP
+ fi
+else
+ STRIP="$ac_cv_prog_STRIP"
+fi
+
+fi
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
+if test -z "$MKDIR_P"; then
+ if ${ac_cv_path_mkdir+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_prog in mkdir gmkdir; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
+ 'mkdir (GNU coreutils) '* | \
+ 'mkdir (coreutils) '* | \
+ 'mkdir (fileutils) '4.1*)
+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
+ break 3;;
+ esac
+ done
+ done
+ done
+IFS=$as_save_IFS
+
+fi
+
+ test -d ./--version && rmdir ./--version
+ if test "${ac_cv_path_mkdir+set}" = set; then
+ MKDIR_P="$ac_cv_path_mkdir -p"
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for MKDIR_P within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ MKDIR_P="$ac_install_sh -d"
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
+$as_echo "$MKDIR_P" >&6; }
+
+for ac_prog in gawk mawk nawk awk
+do
+ # Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_prog_AWK+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if test -n "$AWK"; then
+ ac_cv_prog_AWK="$AWK" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_AWK="$ac_prog"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+fi
+fi
+AWK=$ac_cv_prog_AWK
+if test -n "$AWK"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
+$as_echo "$AWK" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+ test -n "$AWK" && break
+done
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
+set x ${MAKE-make}
+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ cat >conftest.make <<\_ACEOF
+SHELL = /bin/sh
+all:
+ @echo '@@@%%%=$(MAKE)=@@@%%%'
+_ACEOF
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
+case `${MAKE-make} -f conftest.make 2>/dev/null` in
+ *@@@%%%=?*=@@@%%%*)
+ eval ac_cv_prog_make_${ac_make}_set=yes;;
+ *)
+ eval ac_cv_prog_make_${ac_make}_set=no;;
+esac
+rm -f conftest.make
+fi
+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+ SET_MAKE=
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+ SET_MAKE="MAKE=${MAKE-make}"
+fi
+
+rm -rf .tst 2>/dev/null
+mkdir .tst 2>/dev/null
+if test -d .tst; then
+ am__leading_dot=.
+else
+ am__leading_dot=_
+fi
+rmdir .tst 2>/dev/null
+
+# Check whether --enable-silent-rules was given.
+if test "${enable_silent_rules+set}" = set; then :
+ enableval=$enable_silent_rules;
+fi
+
+case $enable_silent_rules in # (((
+ yes) AM_DEFAULT_VERBOSITY=0;;
+ no) AM_DEFAULT_VERBOSITY=1;;
+ *) AM_DEFAULT_VERBOSITY=1;;
+esac
+am_make=${MAKE-make}
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
+if ${am_cv_make_support_nested_variables+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if $as_echo 'TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+ @$(TRUE)
+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
+ am_cv_make_support_nested_variables=yes
+else
+ am_cv_make_support_nested_variables=no
+fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
+$as_echo "$am_cv_make_support_nested_variables" >&6; }
+if test $am_cv_make_support_nested_variables = yes; then
+ AM_V='$(V)'
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+ AM_V=$AM_DEFAULT_VERBOSITY
+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AM_BACKSLASH='\'
+
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
+ # is not polluted with repeated "-I."
+ am__isrc=' -I$(srcdir)'
+ # test to see if srcdir already configured
+ if test -f $srcdir/config.status; then
+ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
+ fi
+fi
+
+# test whether we have cygpath
+if test -z "$CYGPATH_W"; then
+ if (cygpath --version) >/dev/null 2>/dev/null; then
+ CYGPATH_W='cygpath -w'
+ else
+ CYGPATH_W=echo
+ fi
+fi
+
+
+# Define the identity of the package.
+ PACKAGE='gawk-extensions'
+ VERSION='4.2.0'
+
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE "$PACKAGE"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define VERSION "$VERSION"
+_ACEOF
+
+# Some tools Automake needs.
+
+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
+
+
+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
+
+
+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
+
+
+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
+
+
+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
+
+# For better backward compatibility. To be removed once Automake 1.9.x
+# dies out for good. For more background, see:
+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+mkdir_p='$(MKDIR_P)'
+
+# We need awk for the "check" target (and possibly the TAP driver). The
+# system "awk" is bad on some platforms.
+# Always define AMTAR for backward compatibility. Yes, it's still used
+# in the wild :-( We should find a proper way to deprecate it ...
+AMTAR='$${TAR-tar}'
+
+
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar pax cpio none'
+
+am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
+
+
+
+
+
+
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes. So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+ cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present. This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message. This
+can help us improve future automake versions.
+
+END
+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+ echo 'Configuration will proceed anyway, since you have set the' >&2
+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+ echo >&2
+ else
+ cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <http://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+ as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
+ fi
+fi
+
+
+
+DEPDIR="${am__leading_dot}deps"
+
+ac_config_commands="$ac_config_commands depfiles"
+
+
+am_make=${MAKE-make}
+cat > confinc << 'END'
+am__doit:
+ @echo this is the am__doit target
+.PHONY: am__doit
+END
+# If we don't find an include directive, just comment out the code.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
+$as_echo_n "checking for style of include used by $am_make... " >&6; }
+am__include="#"
+am__quote=
+_am_result=none
+# First try GNU make style include.
+echo "include confinc" > confmf
+# Ignore all kinds of additional output from 'make'.
+case `$am_make -s -f confmf 2> /dev/null` in #(
+*the\ am__doit\ target*)
+ am__include=include
+ am__quote=
+ _am_result=GNU
+ ;;
+esac
+# Now try BSD make style include.
+if test "$am__include" = "#"; then
+ echo '.include "confinc"' > confmf
+ case `$am_make -s -f confmf 2> /dev/null` in #(
+ *the\ am__doit\ target*)
+ am__include=.include
+ am__quote="\""
+ _am_result=BSD
+ ;;
+ esac
+fi
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
+$as_echo "$_am_result" >&6; }
+rm -f confinc confmf
+
+# Check whether --enable-dependency-tracking was given.
+if test "${enable_dependency_tracking+set}" = set; then :
+ enableval=$enable_dependency_tracking;
+fi
+
+if test "x$enable_dependency_tracking" != xno; then
+ am_depcomp="$ac_aux_dir/depcomp"
+ AMDEPBACKSLASH='\'
+ am__nodep='_no'
+fi
+ if test "x$enable_dependency_tracking" != xno; then
+ AMDEP_TRUE=
+ AMDEP_FALSE='#'
+else
+ AMDEP_TRUE='#'
+ AMDEP_FALSE=
+fi
+
+
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
@@ -3205,6 +3878,134 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
ac_compiler_gnu=$ac_cv_c_compiler_gnu
+depcc="$CC" am_compiler_list=
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
+$as_echo_n "checking dependency style of $depcc... " >&6; }
+if ${am_cv_CC_dependencies_compiler_type+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+ # We make a subdir and do the tests there. Otherwise we can end up
+ # making bogus files that we don't know about and never remove. For
+ # instance it was reported that on HP-UX the gcc test will end up
+ # making a dummy file named 'D' -- because '-MD' means "put the output
+ # in D".
+ rm -rf conftest.dir
+ mkdir conftest.dir
+ # Copy depcomp to subdir because otherwise we won't find it if we're
+ # using a relative directory.
+ cp "$am_depcomp" conftest.dir
+ cd conftest.dir
+ # We will build objects and dependencies in a subdirectory because
+ # it helps to detect inapplicable dependency modes. For instance
+ # both Tru64's cc and ICC support -MD to output dependencies as a
+ # side effect of compilation, but ICC will put the dependencies in
+ # the current directory while Tru64 will put them in the object
+ # directory.
+ mkdir sub
+
+ am_cv_CC_dependencies_compiler_type=none
+ if test "$am_compiler_list" = ""; then
+ am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
+ fi
+ am__universal=false
+ case " $depcc " in #(
+ *\ -arch\ *\ -arch\ *) am__universal=true ;;
+ esac
+
+ for depmode in $am_compiler_list; do
+ # Setup a source with many dependencies, because some compilers
+ # like to wrap large dependency lists on column 80 (with \), and
+ # we should not choose a depcomp mode which is confused by this.
+ #
+ # We need to recreate these files for each test, as the compiler may
+ # overwrite some of them when testing with obscure command lines.
+ # This happens at least with the AIX C compiler.
+ : > sub/conftest.c
+ for i in 1 2 3 4 5 6; do
+ echo '#include "conftst'$i'.h"' >> sub/conftest.c
+ # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
+ # Solaris 10 /bin/sh.
+ echo '/* dummy */' > sub/conftst$i.h
+ done
+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+
+ # We check with '-c' and '-o' for the sake of the "dashmstdout"
+ # mode. It turns out that the SunPro C++ compiler does not properly
+ # handle '-M -o', and we need to detect this. Also, some Intel
+ # versions had trouble with output in subdirs.
+ am__obj=sub/conftest.${OBJEXT-o}
+ am__minus_obj="-o $am__obj"
+ case $depmode in
+ gcc)
+ # This depmode causes a compiler race in universal mode.
+ test "$am__universal" = false || continue
+ ;;
+ nosideeffect)
+ # After this tag, mechanisms are not by side-effect, so they'll
+ # only be used when explicitly requested.
+ if test "x$enable_dependency_tracking" = xyes; then
+ continue
+ else
+ break
+ fi
+ ;;
+ msvc7 | msvc7msys | msvisualcpp | msvcmsys)
+ # This compiler won't grok '-c -o', but also, the minuso test has
+ # not run yet. These depmodes are late enough in the game, and
+ # so weak that their functioning should not be impacted.
+ am__obj=conftest.${OBJEXT-o}
+ am__minus_obj=
+ ;;
+ none) break ;;
+ esac
+ if depmode=$depmode \
+ source=sub/conftest.c object=$am__obj \
+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
+ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
+ >/dev/null 2>conftest.err &&
+ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
+ grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
+ # icc doesn't choke on unknown options, it will just issue warnings
+ # or remarks (even with -Werror). So we grep stderr for any message
+ # that says an option was ignored or not supported.
+ # When given -MP, icc 7.0 and 7.1 complain thusly:
+ # icc: Command line warning: ignoring option '-M'; no argument required
+ # The diagnosis changed in icc 8.0:
+ # icc: Command line remark: option '-MP' not supported
+ if (grep 'ignoring option' conftest.err ||
+ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
+ am_cv_CC_dependencies_compiler_type=$depmode
+ break
+ fi
+ fi
+ done
+
+ cd ..
+ rm -rf conftest.dir
+else
+ am_cv_CC_dependencies_compiler_type=none
+fi
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
+$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
+
+ if
+ test "x$enable_dependency_tracking" != xno \
+ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
+ am__fastdepCC_TRUE=
+ am__fastdepCC_FALSE='#'
+else
+ am__fastdepCC_TRUE='#'
+ am__fastdepCC_FALSE=
+fi
+
+
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
@@ -3761,228 +4562,203 @@ fi # ac_cv_zos_uss = yes
INSTALL="$ac_aux_dir/install-sh -c"
export INSTALL
-am__api_version='1.15'
+SKIP_MPFR=no
+# Check whether --enable-mpfr was given.
+if test "${enable_mpfr+set}" = set; then :
+ enableval=$enable_mpfr; if test "$enableval" = no
+ then
+ SKIP_MPFR=yes
+ fi
-# Find a good install program. We prefer a C program (faster),
-# so one script is as good as another. But avoid the broken or
-# incompatible versions:
-# SysV /etc/install, /usr/sbin/install
-# SunOS /usr/etc/install
-# IRIX /sbin/install
-# AIX /bin/install
-# AmigaOS /C/install, which installs bootblocks on floppy discs
-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
-# AFS /usr/afsws/bin/install, which mishandles nonexistent args
-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
-# OS/2's system install, which has a completely different semantic
-# ./install, which can be erroneously created by make from ./install.sh.
-# Reject install programs that cannot install multiple files.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
-$as_echo_n "checking for a BSD-compatible install... " >&6; }
-if test -z "$INSTALL"; then
-if ${ac_cv_path_install+:} false; then :
+fi
+
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
+$as_echo_n "checking for a sed that does not truncate output... " >&6; }
+if ${ac_cv_path_SED+:} false; then :
$as_echo_n "(cached) " >&6
else
+ ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
+ for ac_i in 1 2 3 4 5 6 7; do
+ ac_script="$ac_script$as_nl$ac_script"
+ done
+ echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed
+ { ac_script=; unset ac_script;}
+ if test -z "$SED"; then
+ ac_path_SED_found=false
+ # Loop through the user's path and test for each of PROGNAME-LIST
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
- # Account for people who put trailing slashes in PATH elements.
-case $as_dir/ in #((
- ./ | .// | /[cC]/* | \
- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
- ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
- /usr/ucb/* ) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- # Don't use installbsd from OSF since it installs stuff as root
- # by default.
- for ac_prog in ginstall scoinst install; do
- for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
- if test $ac_prog = install &&
- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
- # AIX install. It has an incompatible calling convention.
- :
- elif test $ac_prog = install &&
- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
- # program-specific install script used by HP pwplus--don't use.
- :
- else
- rm -rf conftest.one conftest.two conftest.dir
- echo one > conftest.one
- echo two > conftest.two
- mkdir conftest.dir
- if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
- test -s conftest.one && test -s conftest.two &&
- test -s conftest.dir/conftest.one &&
- test -s conftest.dir/conftest.two
- then
- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
- break 3
- fi
- fi
- fi
- done
- done
- ;;
+ for ac_prog in sed gsed; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
+ as_fn_executable_p "$ac_path_SED" || continue
+# Check for GNU ac_path_SED and select it if it is found.
+ # Check for GNU $ac_path_SED
+case `"$ac_path_SED" --version 2>&1` in
+*GNU*)
+ ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;;
+*)
+ ac_count=0
+ $as_echo_n 0123456789 >"conftest.in"
+ while :
+ do
+ cat "conftest.in" "conftest.in" >"conftest.tmp"
+ mv "conftest.tmp" "conftest.in"
+ cp "conftest.in" "conftest.nl"
+ $as_echo '' >> "conftest.nl"
+ "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
+ as_fn_arith $ac_count + 1 && ac_count=$as_val
+ if test $ac_count -gt ${ac_path_SED_max-0}; then
+ # Best one so far, save it but keep looking for a better one
+ ac_cv_path_SED="$ac_path_SED"
+ ac_path_SED_max=$ac_count
+ fi
+ # 10*(2^10) chars as input seems more than enough
+ test $ac_count -gt 10 && break
+ done
+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
esac
+ $ac_path_SED_found && break 3
+ done
+ done
done
IFS=$as_save_IFS
-
-rm -rf conftest.one conftest.two conftest.dir
+ if test -z "$ac_cv_path_SED"; then
+ as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5
+ fi
+else
+ ac_cv_path_SED=$SED
+fi
fi
- if test "${ac_cv_path_install+set}" = set; then
- INSTALL=$ac_cv_path_install
- else
- # As a last resort, use the slow shell script. Don't cache a
- # value for INSTALL within a source directory, because that will
- # break other packages using the cache if that directory is
- # removed, or if the value is a relative name.
- INSTALL=$ac_install_sh
- fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
+$as_echo "$ac_cv_path_SED" >&6; }
+ SED="$ac_cv_path_SED"
+ rm -f conftest.sed
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
+$as_echo_n "checking whether NLS is requested... " >&6; }
+ # Check whether --enable-nls was given.
+if test "${enable_nls+set}" = set; then :
+ enableval=$enable_nls; USE_NLS=$enableval
+else
+ USE_NLS=yes
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
-$as_echo "$INSTALL" >&6; }
-# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
-# It thinks the first close brace ends the variable substitution.
-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
+$as_echo "$USE_NLS" >&6; }
-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
-$as_echo_n "checking whether build environment is sane... " >&6; }
-# Reject unsafe characters in $srcdir or the absolute working directory
-# name. Accept space and tab only in the latter.
-am_lf='
-'
-case `pwd` in
- *[\\\"\#\$\&\'\`$am_lf]*)
- as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
-esac
-case $srcdir in
- *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
- as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
-esac
-# Do 'set' in a subshell so we don't clobber the current shell's
-# arguments. Must try -L first in case configure is actually a
-# symlink; some systems play weird games with the mod time of symlinks
-# (eg FreeBSD returns the mod time of the symlink's containing
-# directory).
-if (
- am_has_slept=no
- for am_try in 1 2; do
- echo "timestamp, slept: $am_has_slept" > conftest.file
- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
- if test "$*" = "X"; then
- # -L didn't work.
- set X `ls -t "$srcdir/configure" conftest.file`
- fi
- if test "$*" != "X $srcdir/configure conftest.file" \
- && test "$*" != "X conftest.file $srcdir/configure"; then
+ GETTEXT_MACRO_VERSION=0.19
- # If neither matched, then we have a broken ls. This can happen
- # if, for instance, CONFIG_SHELL is bash and it inherits a
- # broken ls alias from the environment. This has actually
- # happened. Such a system could not be considered "sane".
- as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
- alias in your environment" "$LINENO" 5
- fi
- if test "$2" = conftest.file || test $am_try -eq 2; then
- break
- fi
- # Just in case.
- sleep 1
- am_has_slept=yes
- done
- test "$2" = conftest.file
- )
-then
- # Ok.
- :
-else
- as_fn_error $? "newly created file is older than distributed files!
-Check your system clock" "$LINENO" 5
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
-# If we didn't sleep, we still need to ensure time stamps of config.status and
-# generated files are strictly newer.
-am_sleep_pid=
-if grep 'slept: no' conftest.file >/dev/null 2>&1; then
- ( sleep 1 ) &
- am_sleep_pid=$!
-fi
-rm -f conftest.file
-test "$program_prefix" != NONE &&
- program_transform_name="s&^&$program_prefix&;$program_transform_name"
-# Use a double $ so make ignores it.
-test "$program_suffix" != NONE &&
- program_transform_name="s&\$&$program_suffix&;$program_transform_name"
-# Double any \ or $.
-# By default was `s,x,x', remove it if useless.
-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
-program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
-if test x"${MISSING+set}" != xset; then
- case $am_aux_dir in
- *\ * | *\ *)
- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
- *)
- MISSING="\${SHELL} $am_aux_dir/missing" ;;
- esac
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
fi
-# Use eval to expand $SHELL
-if eval "$MISSING --is-lightweight"; then
- am_missing_run="$MISSING "
+
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
else
- am_missing_run=
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
-$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
+ ac_executable_p="test -f"
fi
+rm -f conf$$.file
-if test x"${install_sh+set}" != xset; then
- case $am_aux_dir in
- *\ * | *\ *)
- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
+# Extract the first word of "msgfmt", so it can be a program name with args.
+set dummy msgfmt; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_MSGFMT+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case "$MSGFMT" in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
+ ;;
*)
- install_sh="\${SHELL} $am_aux_dir/install-sh"
- esac
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ echo "$as_me: trying $ac_dir/$ac_word..." >&5
+ if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 &&
+ (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
+ ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+ test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
+ ;;
+esac
+fi
+MSGFMT="$ac_cv_path_MSGFMT"
+if test "$MSGFMT" != ":"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
+$as_echo "$MSGFMT" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
fi
-# Installed binaries are usually stripped using 'strip' when the user
-# run "make install-strip". However 'strip' might not be the right
-# tool to use in cross-compilation environments, therefore Automake
-# will honor the 'STRIP' environment variable to overrule this program.
-if test "$cross_compiling" != no; then
- if test -n "$ac_tool_prefix"; then
- # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-set dummy ${ac_tool_prefix}strip; ac_word=$2
+ # Extract the first word of "gmsgfmt", so it can be a program name with args.
+set dummy gmsgfmt; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_STRIP+:} false; then :
+if ${ac_cv_path_GMSGFMT+:} false; then :
$as_echo_n "(cached) " >&6
else
- if test -n "$STRIP"; then
- ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+ case $GMSGFMT in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_prog_STRIP="${ac_tool_prefix}strip"
+ ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
@@ -3990,554 +4766,2096 @@ done
done
IFS=$as_save_IFS
+ test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
+ ;;
+esac
fi
-fi
-STRIP=$ac_cv_prog_STRIP
-if test -n "$STRIP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
-$as_echo "$STRIP" >&6; }
+GMSGFMT=$ac_cv_path_GMSGFMT
+if test -n "$GMSGFMT"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5
+$as_echo "$GMSGFMT" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
+
+ case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;
+ *) MSGFMT_015=$MSGFMT ;;
+ esac
+
+ case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;
+ *) GMSGFMT_015=$GMSGFMT ;;
+ esac
+
+
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
fi
-if test -z "$ac_cv_prog_STRIP"; then
- ac_ct_STRIP=$STRIP
- # Extract the first word of "strip", so it can be a program name with args.
-set dummy strip; ac_word=$2
+
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
+else
+ ac_executable_p="test -f"
+fi
+rm -f conf$$.file
+
+# Extract the first word of "xgettext", so it can be a program name with args.
+set dummy xgettext; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
+if ${ac_cv_path_XGETTEXT+:} false; then :
$as_echo_n "(cached) " >&6
else
- if test -n "$ac_ct_STRIP"; then
- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
+ case "$XGETTEXT" in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
+ ;;
+ *)
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ echo "$as_me: trying $ac_dir/$ac_word..." >&5
+ if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 &&
+ (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
+ ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+ test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
+ ;;
+esac
+fi
+XGETTEXT="$ac_cv_path_XGETTEXT"
+if test "$XGETTEXT" != ":"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
+$as_echo "$XGETTEXT" >&6; }
else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_prog_ac_ct_STRIP="strip"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+ rm -f messages.po
+
+ case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
+ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;
+ *) XGETTEXT_015=$XGETTEXT ;;
+ esac
+
+
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
fi
-done
- done
-IFS=$as_save_IFS
+ rm -f conf$$.sh
+fi
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
+else
+ ac_executable_p="test -f"
fi
+rm -f conf$$.file
+
+# Extract the first word of "msgmerge", so it can be a program name with args.
+set dummy msgmerge; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_MSGMERGE+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case "$MSGMERGE" in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
+ ;;
+ *)
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ echo "$as_me: trying $ac_dir/$ac_word..." >&5
+ if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then
+ ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+ test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
+ ;;
+esac
fi
-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-if test -n "$ac_ct_STRIP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
-$as_echo "$ac_ct_STRIP" >&6; }
+MSGMERGE="$ac_cv_path_MSGMERGE"
+if test "$MSGMERGE" != ":"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5
+$as_echo "$MSGMERGE" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
- if test "x$ac_ct_STRIP" = x; then
- STRIP=":"
+
+ test -n "$localedir" || localedir='${datadir}/locale'
+
+
+ test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS=
+
+
+ ac_config_commands="$ac_config_commands po-directories"
+
+
+
+ if test "X$prefix" = "XNONE"; then
+ acl_final_prefix="$ac_default_prefix"
else
- case $cross_compiling:$ac_tool_warned in
-yes:)
-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-ac_tool_warned=yes ;;
-esac
- STRIP=$ac_ct_STRIP
+ acl_final_prefix="$prefix"
fi
+ if test "X$exec_prefix" = "XNONE"; then
+ acl_final_exec_prefix='${prefix}'
+ else
+ acl_final_exec_prefix="$exec_prefix"
+ fi
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
+ prefix="$acl_save_prefix"
+
+# Make sure we can run config.sub.
+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
+ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
+$as_echo_n "checking build system type... " >&6; }
+if ${ac_cv_build+:} false; then :
+ $as_echo_n "(cached) " >&6
else
- STRIP="$ac_cv_prog_STRIP"
-fi
+ ac_build_alias=$build_alias
+test "x$ac_build_alias" = x &&
+ ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
+test "x$ac_build_alias" = x &&
+ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
fi
-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
+$as_echo "$ac_cv_build" >&6; }
+case $ac_cv_build in
+*-*-*) ;;
+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
+esac
+build=$ac_cv_build
+ac_save_IFS=$IFS; IFS='-'
+set x $ac_cv_build
+shift
+build_cpu=$1
+build_vendor=$2
+shift; shift
+# Remember, the first character of IFS is used to create $*,
+# except with old shells:
+build_os=$*
+IFS=$ac_save_IFS
+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
-$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
-if test -z "$MKDIR_P"; then
- if ${ac_cv_path_mkdir+:} false; then :
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
+$as_echo_n "checking host system type... " >&6; }
+if ${ac_cv_host+:} false; then :
$as_echo_n "(cached) " >&6
else
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_prog in mkdir gmkdir; do
- for ac_exec_ext in '' $ac_executable_extensions; do
- as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
- case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
- 'mkdir (GNU coreutils) '* | \
- 'mkdir (coreutils) '* | \
- 'mkdir (fileutils) '4.1*)
- ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
- break 3;;
- esac
- done
- done
- done
-IFS=$as_save_IFS
+ if test "x$host_alias" = x; then
+ ac_cv_host=$ac_cv_build
+else
+ ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
+fi
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
+$as_echo "$ac_cv_host" >&6; }
+case $ac_cv_host in
+*-*-*) ;;
+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
+esac
+host=$ac_cv_host
+ac_save_IFS=$IFS; IFS='-'
+set x $ac_cv_host
+shift
+host_cpu=$1
+host_vendor=$2
+shift; shift
+# Remember, the first character of IFS is used to create $*,
+# except with old shells:
+host_os=$*
+IFS=$ac_save_IFS
+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
- test -d ./--version && rmdir ./--version
- if test "${ac_cv_path_mkdir+set}" = set; then
- MKDIR_P="$ac_cv_path_mkdir -p"
+
+
+# Check whether --with-gnu-ld was given.
+if test "${with_gnu_ld+set}" = set; then :
+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
+else
+ with_gnu_ld=no
+fi
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
else
- # As a last resort, use the slow shell script. Don't cache a
- # value for MKDIR_P within a source directory, because that will
- # break other packages using the cache if that directory is
- # removed, or if the value is a relative name.
- MKDIR_P="$ac_install_sh -d"
+ PATH_SEPARATOR=:
fi
+ rm -f conf$$.sh
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
-$as_echo "$MKDIR_P" >&6; }
-
-for ac_prog in gawk mawk nawk awk
-do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
-set dummy $ac_prog; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_AWK+:} false; then :
- $as_echo_n "(cached) " >&6
+ac_prog=ld
+if test "$GCC" = yes; then
+ # Check if gcc -print-prog-name=ld gives a path.
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5
+$as_echo_n "checking for ld used by GCC... " >&6; }
+ case $host in
+ *-*-mingw*)
+ # gcc leaves a trailing carriage return which upsets mingw
+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
+ *)
+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
+ esac
+ case $ac_prog in
+ # Accept absolute paths.
+ [\\/]* | [A-Za-z]:[\\/]*)
+ re_direlt='/[^/][^/]*/\.\./'
+ # Canonicalize the path of ld
+ ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
+ while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
+ ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
+ done
+ test -z "$LD" && LD="$ac_prog"
+ ;;
+ "")
+ # If it fails, then pretend we aren't using GCC.
+ ac_prog=ld
+ ;;
+ *)
+ # If it is relative, then search for the first ld in PATH.
+ with_gnu_ld=unknown
+ ;;
+ esac
+elif test "$with_gnu_ld" = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
+$as_echo_n "checking for GNU ld... " >&6; }
else
- if test -n "$AWK"; then
- ac_cv_prog_AWK="$AWK" # Let the user override the test.
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
+$as_echo_n "checking for non-GNU ld... " >&6; }
+fi
+if ${acl_cv_path_LD+:} false; then :
+ $as_echo_n "(cached) " >&6
else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_prog_AWK="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- break 2
- fi
-done
+ if test -z "$LD"; then
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
+ for ac_dir in $PATH; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
+ acl_cv_path_LD="$ac_dir/$ac_prog"
+ # Check to see if the program is GNU ld. I'd rather use --version,
+ # but apparently some GNU ld's only accept -v.
+ # Break only if it was the GNU/non-GNU ld that we prefer.
+ case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in
+ *GNU* | *'with BFD'*)
+ test "$with_gnu_ld" != no && break ;;
+ *)
+ test "$with_gnu_ld" != yes && break ;;
+ esac
+ fi
done
-IFS=$as_save_IFS
-
+ IFS="$ac_save_ifs"
+else
+ acl_cv_path_LD="$LD" # Let the user override the test with a path.
fi
fi
-AWK=$ac_cv_prog_AWK
-if test -n "$AWK"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
-$as_echo "$AWK" >&6; }
+
+LD="$acl_cv_path_LD"
+if test -n "$LD"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
+$as_echo "$LD" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
+if ${acl_cv_prog_gnu_ld+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ # I'd rather use --version here, but apparently some GNU ld's only accept -v.
+case `$LD -v 2>&1 </dev/null` in
+*GNU* | *'with BFD'*)
+ acl_cv_prog_gnu_ld=yes ;;
+*)
+ acl_cv_prog_gnu_ld=no ;;
+esac
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5
+$as_echo "$acl_cv_prog_gnu_ld" >&6; }
+with_gnu_ld=$acl_cv_prog_gnu_ld
- test -n "$AWK" && break
-done
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
-set x ${MAKE-make}
-ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5
+$as_echo_n "checking for shared library run path origin... " >&6; }
+if ${acl_cv_rpath+:} false; then :
$as_echo_n "(cached) " >&6
else
- cat >conftest.make <<\_ACEOF
-SHELL = /bin/sh
-all:
- @echo '@@@%%%=$(MAKE)=@@@%%%'
-_ACEOF
-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
-case `${MAKE-make} -f conftest.make 2>/dev/null` in
- *@@@%%%=?*=@@@%%%*)
- eval ac_cv_prog_make_${ac_make}_set=yes;;
- *)
- eval ac_cv_prog_make_${ac_make}_set=no;;
-esac
-rm -f conftest.make
+
+ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
+ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
+ . ./conftest.sh
+ rm -f ./conftest.sh
+ acl_cv_rpath=done
+
fi
-if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- SET_MAKE=
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5
+$as_echo "$acl_cv_rpath" >&6; }
+ wl="$acl_cv_wl"
+ acl_libext="$acl_cv_libext"
+ acl_shlibext="$acl_cv_shlibext"
+ acl_libname_spec="$acl_cv_libname_spec"
+ acl_library_names_spec="$acl_cv_library_names_spec"
+ acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
+ acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
+ acl_hardcode_direct="$acl_cv_hardcode_direct"
+ acl_hardcode_minus_L="$acl_cv_hardcode_minus_L"
+ # Check whether --enable-rpath was given.
+if test "${enable_rpath+set}" = set; then :
+ enableval=$enable_rpath; :
else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- SET_MAKE="MAKE=${MAKE-make}"
+ enable_rpath=yes
fi
-rm -rf .tst 2>/dev/null
-mkdir .tst 2>/dev/null
-if test -d .tst; then
- am__leading_dot=.
+
+
+
+ acl_libdirstem=lib
+ acl_libdirstem2=
+ case "$host_os" in
+ solaris*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5
+$as_echo_n "checking for 64-bit host... " >&6; }
+if ${gl_cv_solaris_64bit+:} false; then :
+ $as_echo_n "(cached) " >&6
else
- am__leading_dot=_
-fi
-rmdir .tst 2>/dev/null
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
-DEPDIR="${am__leading_dot}deps"
+#ifdef _LP64
+sixtyfour bits
+#endif
-ac_config_commands="$ac_config_commands depfiles"
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ $EGREP "sixtyfour bits" >/dev/null 2>&1; then :
+ gl_cv_solaris_64bit=yes
+else
+ gl_cv_solaris_64bit=no
+fi
+rm -f conftest*
-am_make=${MAKE-make}
-cat > confinc << 'END'
-am__doit:
- @echo this is the am__doit target
-.PHONY: am__doit
-END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
-am__include="#"
-am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
- ;;
- esac
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5
+$as_echo "$gl_cv_solaris_64bit" >&6; }
+ if test $gl_cv_solaris_64bit = yes; then
+ acl_libdirstem=lib/64
+ case "$host_cpu" in
+ sparc*) acl_libdirstem2=lib/sparcv9 ;;
+ i*86 | x86_64) acl_libdirstem2=lib/amd64 ;;
+ esac
+ fi
+ ;;
+ *)
+ searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`
+ if test -n "$searchpath"; then
+ acl_save_IFS="${IFS= }"; IFS=":"
+ for searchdir in $searchpath; do
+ if test -d "$searchdir"; then
+ case "$searchdir" in
+ */lib64/ | */lib64 ) acl_libdirstem=lib64 ;;
+ */../ | */.. )
+ # Better ignore directories of this form. They are misleading.
+ ;;
+ *) searchdir=`cd "$searchdir" && pwd`
+ case "$searchdir" in
+ */lib64 ) acl_libdirstem=lib64 ;;
+ esac ;;
+ esac
+ fi
+ done
+ IFS="$acl_save_IFS"
+ fi
+ ;;
+ esac
+ test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
-# Check whether --enable-dependency-tracking was given.
-if test "${enable_dependency_tracking+set}" = set; then :
- enableval=$enable_dependency_tracking;
-fi
-if test "x$enable_dependency_tracking" != xno; then
- am_depcomp="$ac_aux_dir/depcomp"
- AMDEPBACKSLASH='\'
- am__nodep='_no'
+
+
+
+
+
+
+
+
+ use_additional=yes
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+
+# Check whether --with-libiconv-prefix was given.
+if test "${with_libiconv_prefix+set}" = set; then :
+ withval=$with_libiconv_prefix;
+ if test "X$withval" = "Xno"; then
+ use_additional=no
+ else
+ if test "X$withval" = "X"; then
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ else
+ additional_includedir="$withval/include"
+ additional_libdir="$withval/$acl_libdirstem"
+ if test "$acl_libdirstem2" != "$acl_libdirstem" \
+ && ! test -d "$withval/$acl_libdirstem"; then
+ additional_libdir="$withval/$acl_libdirstem2"
+ fi
+ fi
+ fi
+
fi
- if test "x$enable_dependency_tracking" != xno; then
- AMDEP_TRUE=
- AMDEP_FALSE='#'
+
+ LIBICONV=
+ LTLIBICONV=
+ INCICONV=
+ LIBICONV_PREFIX=
+ HAVE_LIBICONV=
+ rpathdirs=
+ ltrpathdirs=
+ names_already_handled=
+ names_next_round='iconv '
+ while test -n "$names_next_round"; do
+ names_this_round="$names_next_round"
+ names_next_round=
+ for name in $names_this_round; do
+ already_handled=
+ for n in $names_already_handled; do
+ if test "$n" = "$name"; then
+ already_handled=yes
+ break
+ fi
+ done
+ if test -z "$already_handled"; then
+ names_already_handled="$names_already_handled $name"
+ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
+ eval value=\"\$HAVE_LIB$uppername\"
+ if test -n "$value"; then
+ if test "$value" = yes; then
+ eval value=\"\$LIB$uppername\"
+ test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value"
+ eval value=\"\$LTLIB$uppername\"
+ test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value"
+ else
+ :
+ fi
+ else
+ found_dir=
+ found_la=
+ found_so=
+ found_a=
+ eval libname=\"$acl_libname_spec\" # typically: libname=lib$name
+ if test -n "$acl_shlibext"; then
+ shrext=".$acl_shlibext" # typically: shrext=.so
+ else
+ shrext=
+ fi
+ if test $use_additional = yes; then
+ dir="$additional_libdir"
+ if test -n "$acl_shlibext"; then
+ if test -f "$dir/$libname$shrext"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext"
+ else
+ if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then
+ ver=`(cd "$dir" && \
+ for f in "$libname$shrext".*; do echo "$f"; done \
+ | sed -e "s,^$libname$shrext\\\\.,," \
+ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \
+ | sed 1q ) 2>/dev/null`
+ if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext.$ver"
+ fi
+ else
+ eval library_names=\"$acl_library_names_spec\"
+ for f in $library_names; do
+ if test -f "$dir/$f"; then
+ found_dir="$dir"
+ found_so="$dir/$f"
+ break
+ fi
+ done
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ if test -f "$dir/$libname.$acl_libext"; then
+ found_dir="$dir"
+ found_a="$dir/$libname.$acl_libext"
+ fi
+ fi
+ if test "X$found_dir" != "X"; then
+ if test -f "$dir/$libname.la"; then
+ found_la="$dir/$libname.la"
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ for x in $LDFLAGS $LTLIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ case "$x" in
+ -L*)
+ dir=`echo "X$x" | sed -e 's/^X-L//'`
+ if test -n "$acl_shlibext"; then
+ if test -f "$dir/$libname$shrext"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext"
+ else
+ if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then
+ ver=`(cd "$dir" && \
+ for f in "$libname$shrext".*; do echo "$f"; done \
+ | sed -e "s,^$libname$shrext\\\\.,," \
+ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \
+ | sed 1q ) 2>/dev/null`
+ if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext.$ver"
+ fi
+ else
+ eval library_names=\"$acl_library_names_spec\"
+ for f in $library_names; do
+ if test -f "$dir/$f"; then
+ found_dir="$dir"
+ found_so="$dir/$f"
+ break
+ fi
+ done
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ if test -f "$dir/$libname.$acl_libext"; then
+ found_dir="$dir"
+ found_a="$dir/$libname.$acl_libext"
+ fi
+ fi
+ if test "X$found_dir" != "X"; then
+ if test -f "$dir/$libname.la"; then
+ found_la="$dir/$libname.la"
+ fi
+ fi
+ ;;
+ esac
+ if test "X$found_dir" != "X"; then
+ break
+ fi
+ done
+ fi
+ if test "X$found_dir" != "X"; then
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name"
+ if test "X$found_so" != "X"; then
+ if test "$enable_rpath" = no \
+ || test "X$found_dir" = "X/usr/$acl_libdirstem" \
+ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ else
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $found_dir"
+ fi
+ if test "$acl_hardcode_direct" = yes; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ else
+ if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $found_dir"
+ fi
+ else
+ haveit=
+ for x in $LDFLAGS $LIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir"
+ fi
+ if test "$acl_hardcode_minus_L" != no; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ else
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
+ fi
+ fi
+ fi
+ fi
+ else
+ if test "X$found_a" != "X"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a"
+ else
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name"
+ fi
+ fi
+ additional_includedir=
+ case "$found_dir" in
+ */$acl_libdirstem | */$acl_libdirstem/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
+ if test "$name" = 'iconv'; then
+ LIBICONV_PREFIX="$basedir"
+ fi
+ additional_includedir="$basedir/include"
+ ;;
+ */$acl_libdirstem2 | */$acl_libdirstem2/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'`
+ if test "$name" = 'iconv'; then
+ LIBICONV_PREFIX="$basedir"
+ fi
+ additional_includedir="$basedir/include"
+ ;;
+ esac
+ if test "X$additional_includedir" != "X"; then
+ if test "X$additional_includedir" != "X/usr/include"; then
+ haveit=
+ if test "X$additional_includedir" = "X/usr/local/include"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ for x in $CPPFLAGS $INCICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-I$additional_includedir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_includedir"; then
+ INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir"
+ fi
+ fi
+ fi
+ fi
+ fi
+ if test -n "$found_la"; then
+ save_libdir="$libdir"
+ case "$found_la" in
+ */* | *\\*) . "$found_la" ;;
+ *) . "./$found_la" ;;
+ esac
+ libdir="$save_libdir"
+ for dep in $dependency_libs; do
+ case "$dep" in
+ -L*)
+ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
+ if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \
+ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then
+ haveit=
+ if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \
+ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ haveit=
+ for x in $LDFLAGS $LIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir"
+ fi
+ fi
+ haveit=
+ for x in $LDFLAGS $LTLIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir"
+ fi
+ fi
+ fi
+ fi
+ ;;
+ -R*)
+ dir=`echo "X$dep" | sed -e 's/^X-R//'`
+ if test "$enable_rpath" != no; then
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $dir"
+ fi
+ fi
+ ;;
+ -l*)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
+ ;;
+ *.la)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
+ ;;
+ *)
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$dep"
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep"
+ ;;
+ esac
+ done
+ fi
+ else
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name"
+ fi
+ fi
+ fi
+ done
+ done
+ if test "X$rpathdirs" != "X"; then
+ if test -n "$acl_hardcode_libdir_separator"; then
+ alldirs=
+ for found_dir in $rpathdirs; do
+ alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir"
+ done
+ acl_save_libdir="$libdir"
+ libdir="$alldirs"
+ eval flag=\"$acl_hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
+ else
+ for found_dir in $rpathdirs; do
+ acl_save_libdir="$libdir"
+ libdir="$found_dir"
+ eval flag=\"$acl_hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
+ done
+ fi
+ fi
+ if test "X$ltrpathdirs" != "X"; then
+ for found_dir in $ltrpathdirs; do
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir"
+ done
+ fi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5
+$as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; }
+if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :
+ $as_echo_n "(cached) " >&6
else
- AMDEP_TRUE='#'
- AMDEP_FALSE=
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <CoreFoundation/CFPreferences.h>
+int
+main ()
+{
+CFPreferencesCopyAppValue(NULL, NULL)
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ gt_cv_func_CFPreferencesCopyAppValue=yes
+else
+ gt_cv_func_CFPreferencesCopyAppValue=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ LIBS="$gt_save_LIBS"
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5
+$as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; }
+ if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
+$as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h
-# Check whether --enable-silent-rules was given.
-if test "${enable_silent_rules+set}" = set; then :
- enableval=$enable_silent_rules;
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5
+$as_echo_n "checking for CFLocaleCopyCurrent... " >&6; }
+if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <CoreFoundation/CFLocale.h>
+int
+main ()
+{
+CFLocaleCopyCurrent();
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ gt_cv_func_CFLocaleCopyCurrent=yes
+else
+ gt_cv_func_CFLocaleCopyCurrent=no
fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ LIBS="$gt_save_LIBS"
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5
+$as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; }
+ if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
-case $enable_silent_rules in # (((
- yes) AM_DEFAULT_VERBOSITY=0;;
- no) AM_DEFAULT_VERBOSITY=1;;
- *) AM_DEFAULT_VERBOSITY=1;;
-esac
-am_make=${MAKE-make}
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
-$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
-if ${am_cv_make_support_nested_variables+:} false; then :
+$as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h
+
+ fi
+ INTL_MACOSX_LIBS=
+ if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
+ INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
+ fi
+
+
+
+
+
+
+ LIBINTL=
+ LTLIBINTL=
+ POSUB=
+
+ case " $gt_needs " in
+ *" need-formatstring-macros "*) gt_api_version=3 ;;
+ *" need-ngettext "*) gt_api_version=2 ;;
+ *) gt_api_version=1 ;;
+ esac
+ gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc"
+ gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl"
+
+ if test "$USE_NLS" = "yes"; then
+ gt_use_preinstalled_gnugettext=no
+
+
+ if test $gt_api_version -ge 3; then
+ gt_revision_test_code='
+#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
+#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
+#endif
+typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
+'
+ else
+ gt_revision_test_code=
+ fi
+ if test $gt_api_version -ge 2; then
+ gt_expression_test_code=' + * ngettext ("", "", 0)'
+ else
+ gt_expression_test_code=
+ fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5
+$as_echo_n "checking for GNU gettext in libc... " >&6; }
+if eval \${$gt_func_gnugettext_libc+:} false; then :
$as_echo_n "(cached) " >&6
else
- if $as_echo 'TRUE=$(BAR$(V))
-BAR0=false
-BAR1=true
-V=1
-am__doit:
- @$(TRUE)
-.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
- am_cv_make_support_nested_variables=yes
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <libintl.h>
+$gt_revision_test_code
+extern int _nl_msg_cat_cntr;
+extern int *_nl_domain_bindings;
+
+int
+main ()
+{
+
+bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ eval "$gt_func_gnugettext_libc=yes"
else
- am_cv_make_support_nested_variables=no
+ eval "$gt_func_gnugettext_libc=no"
fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
-$as_echo "$am_cv_make_support_nested_variables" >&6; }
-if test $am_cv_make_support_nested_variables = yes; then
- AM_V='$(V)'
- AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+eval ac_res=\$$gt_func_gnugettext_libc
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+
+ if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
+
+
+
+
+
+ am_save_CPPFLAGS="$CPPFLAGS"
+
+ for element in $INCICONV; do
+ haveit=
+ for x in $CPPFLAGS; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X$element"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
+ fi
+ done
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
+$as_echo_n "checking for iconv... " >&6; }
+if ${am_cv_func_iconv+:} false; then :
+ $as_echo_n "(cached) " >&6
else
- AM_V=$AM_DEFAULT_VERBOSITY
- AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+
+ am_cv_func_iconv="no, consider installing GNU libiconv"
+ am_cv_lib_iconv=no
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <stdlib.h>
+#include <iconv.h>
+
+int
+main ()
+{
+iconv_t cd = iconv_open("","");
+ iconv(cd,NULL,NULL,NULL,NULL);
+ iconv_close(cd);
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ am_cv_func_iconv=yes
fi
-AM_BACKSLASH='\'
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ if test "$am_cv_func_iconv" != yes; then
+ am_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIBICONV"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
-if test "`cd $srcdir && pwd`" != "`pwd`"; then
- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
- # is not polluted with repeated "-I."
- am__isrc=' -I$(srcdir)'
- # test to see if srcdir already configured
- if test -f $srcdir/config.status; then
- as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
- fi
+#include <stdlib.h>
+#include <iconv.h>
+
+int
+main ()
+{
+iconv_t cd = iconv_open("","");
+ iconv(cd,NULL,NULL,NULL,NULL);
+ iconv_close(cd);
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ am_cv_lib_iconv=yes
+ am_cv_func_iconv=yes
fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ LIBS="$am_save_LIBS"
+ fi
-# test whether we have cygpath
-if test -z "$CYGPATH_W"; then
- if (cygpath --version) >/dev/null 2>/dev/null; then
- CYGPATH_W='cygpath -w'
- else
- CYGPATH_W=echo
- fi
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5
+$as_echo "$am_cv_func_iconv" >&6; }
+ if test "$am_cv_func_iconv" = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5
+$as_echo_n "checking for working iconv... " >&6; }
+if ${am_cv_func_iconv_works+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ am_save_LIBS="$LIBS"
+ if test $am_cv_lib_iconv = yes; then
+ LIBS="$LIBS $LIBICONV"
+ fi
+ am_cv_func_iconv_works=no
+ for ac_iconv_const in '' 'const'; do
+ if test "$cross_compiling" = yes; then :
+ case "$host_os" in
+ aix* | hpux*) am_cv_func_iconv_works="guessing no" ;;
+ *) am_cv_func_iconv_works="guessing yes" ;;
+ esac
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
-# Define the identity of the package.
- PACKAGE='gawk-extensions'
- VERSION='4.2.0'
+#include <iconv.h>
+#include <string.h>
+#ifndef ICONV_CONST
+# define ICONV_CONST $ac_iconv_const
+#endif
-cat >>confdefs.h <<_ACEOF
-#define PACKAGE "$PACKAGE"
+int
+main ()
+{
+int result = 0;
+ /* Test against AIX 5.1 bug: Failures are not distinguishable from successful
+ returns. */
+ {
+ iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8");
+ if (cd_utf8_to_88591 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */
+ char buf[10];
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = strlen (input);
+ char *outptr = buf;
+ size_t outbytesleft = sizeof (buf);
+ size_t res = iconv (cd_utf8_to_88591,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if (res == 0)
+ result |= 1;
+ iconv_close (cd_utf8_to_88591);
+ }
+ }
+ /* Test against Solaris 10 bug: Failures are not distinguishable from
+ successful returns. */
+ {
+ iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646");
+ if (cd_ascii_to_88591 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\263";
+ char buf[10];
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = strlen (input);
+ char *outptr = buf;
+ size_t outbytesleft = sizeof (buf);
+ size_t res = iconv (cd_ascii_to_88591,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if (res == 0)
+ result |= 2;
+ iconv_close (cd_ascii_to_88591);
+ }
+ }
+ /* Test against AIX 6.1..7.1 bug: Buffer overrun. */
+ {
+ iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1");
+ if (cd_88591_to_utf8 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\304";
+ static char buf[2] = { (char)0xDE, (char)0xAD };
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = 1;
+ char *outptr = buf;
+ size_t outbytesleft = 1;
+ size_t res = iconv (cd_88591_to_utf8,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD)
+ result |= 4;
+ iconv_close (cd_88591_to_utf8);
+ }
+ }
+#if 0 /* This bug could be worked around by the caller. */
+ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */
+ {
+ iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591");
+ if (cd_88591_to_utf8 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
+ char buf[50];
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = strlen (input);
+ char *outptr = buf;
+ size_t outbytesleft = sizeof (buf);
+ size_t res = iconv (cd_88591_to_utf8,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if ((int)res > 0)
+ result |= 8;
+ iconv_close (cd_88591_to_utf8);
+ }
+ }
+#endif
+ /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is
+ provided. */
+ if (/* Try standardized names. */
+ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1)
+ /* Try IRIX, OSF/1 names. */
+ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1)
+ /* Try AIX names. */
+ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1)
+ /* Try HP-UX names. */
+ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1))
+ result |= 16;
+ return result;
+
+ ;
+ return 0;
+}
_ACEOF
+if ac_fn_c_try_run "$LINENO"; then :
+ am_cv_func_iconv_works=yes
+fi
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
+ conftest.$ac_objext conftest.beam conftest.$ac_ext
+fi
+ test "$am_cv_func_iconv_works" = no || break
+ done
+ LIBS="$am_save_LIBS"
-cat >>confdefs.h <<_ACEOF
-#define VERSION "$VERSION"
-_ACEOF
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5
+$as_echo "$am_cv_func_iconv_works" >&6; }
+ case "$am_cv_func_iconv_works" in
+ *no) am_func_iconv=no am_cv_lib_iconv=no ;;
+ *) am_func_iconv=yes ;;
+ esac
+ else
+ am_func_iconv=no am_cv_lib_iconv=no
+ fi
+ if test "$am_func_iconv" = yes; then
-# Some tools Automake needs.
+$as_echo "#define HAVE_ICONV 1" >>confdefs.h
-ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
+ fi
+ if test "$am_cv_lib_iconv" = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5
+$as_echo_n "checking how to link with libiconv... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5
+$as_echo "$LIBICONV" >&6; }
+ else
+ CPPFLAGS="$am_save_CPPFLAGS"
+ LIBICONV=
+ LTLIBICONV=
+ fi
-AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
-AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
-AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-# For better backward compatibility. To be removed once Automake 1.9.x
-# dies out for good. For more background, see:
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
-mkdir_p='$(MKDIR_P)'
-# We need awk for the "check" target (and possibly the TAP driver). The
-# system "awk" is bad on some platforms.
-# Always define AMTAR for backward compatibility. Yes, it's still used
-# in the wild :-( We should find a proper way to deprecate it ...
-AMTAR='$${TAR-tar}'
+ use_additional=yes
-# We'll loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar pax cpio none'
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
-am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+# Check whether --with-libintl-prefix was given.
+if test "${with_libintl_prefix+set}" = set; then :
+ withval=$with_libintl_prefix;
+ if test "X$withval" = "Xno"; then
+ use_additional=no
+ else
+ if test "X$withval" = "X"; then
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
-depcc="$CC" am_compiler_list=
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
-$as_echo_n "checking dependency style of $depcc... " >&6; }
-if ${am_cv_CC_dependencies_compiler_type+:} false; then :
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ else
+ additional_includedir="$withval/include"
+ additional_libdir="$withval/$acl_libdirstem"
+ if test "$acl_libdirstem2" != "$acl_libdirstem" \
+ && ! test -d "$withval/$acl_libdirstem"; then
+ additional_libdir="$withval/$acl_libdirstem2"
+ fi
+ fi
+ fi
+
+fi
+
+ LIBINTL=
+ LTLIBINTL=
+ INCINTL=
+ LIBINTL_PREFIX=
+ HAVE_LIBINTL=
+ rpathdirs=
+ ltrpathdirs=
+ names_already_handled=
+ names_next_round='intl '
+ while test -n "$names_next_round"; do
+ names_this_round="$names_next_round"
+ names_next_round=
+ for name in $names_this_round; do
+ already_handled=
+ for n in $names_already_handled; do
+ if test "$n" = "$name"; then
+ already_handled=yes
+ break
+ fi
+ done
+ if test -z "$already_handled"; then
+ names_already_handled="$names_already_handled $name"
+ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
+ eval value=\"\$HAVE_LIB$uppername\"
+ if test -n "$value"; then
+ if test "$value" = yes; then
+ eval value=\"\$LIB$uppername\"
+ test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value"
+ eval value=\"\$LTLIB$uppername\"
+ test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value"
+ else
+ :
+ fi
+ else
+ found_dir=
+ found_la=
+ found_so=
+ found_a=
+ eval libname=\"$acl_libname_spec\" # typically: libname=lib$name
+ if test -n "$acl_shlibext"; then
+ shrext=".$acl_shlibext" # typically: shrext=.so
+ else
+ shrext=
+ fi
+ if test $use_additional = yes; then
+ dir="$additional_libdir"
+ if test -n "$acl_shlibext"; then
+ if test -f "$dir/$libname$shrext"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext"
+ else
+ if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then
+ ver=`(cd "$dir" && \
+ for f in "$libname$shrext".*; do echo "$f"; done \
+ | sed -e "s,^$libname$shrext\\\\.,," \
+ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \
+ | sed 1q ) 2>/dev/null`
+ if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext.$ver"
+ fi
+ else
+ eval library_names=\"$acl_library_names_spec\"
+ for f in $library_names; do
+ if test -f "$dir/$f"; then
+ found_dir="$dir"
+ found_so="$dir/$f"
+ break
+ fi
+ done
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ if test -f "$dir/$libname.$acl_libext"; then
+ found_dir="$dir"
+ found_a="$dir/$libname.$acl_libext"
+ fi
+ fi
+ if test "X$found_dir" != "X"; then
+ if test -f "$dir/$libname.la"; then
+ found_la="$dir/$libname.la"
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ for x in $LDFLAGS $LTLIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ case "$x" in
+ -L*)
+ dir=`echo "X$x" | sed -e 's/^X-L//'`
+ if test -n "$acl_shlibext"; then
+ if test -f "$dir/$libname$shrext"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext"
+ else
+ if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then
+ ver=`(cd "$dir" && \
+ for f in "$libname$shrext".*; do echo "$f"; done \
+ | sed -e "s,^$libname$shrext\\\\.,," \
+ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \
+ | sed 1q ) 2>/dev/null`
+ if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then
+ found_dir="$dir"
+ found_so="$dir/$libname$shrext.$ver"
+ fi
+ else
+ eval library_names=\"$acl_library_names_spec\"
+ for f in $library_names; do
+ if test -f "$dir/$f"; then
+ found_dir="$dir"
+ found_so="$dir/$f"
+ break
+ fi
+ done
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ if test -f "$dir/$libname.$acl_libext"; then
+ found_dir="$dir"
+ found_a="$dir/$libname.$acl_libext"
+ fi
+ fi
+ if test "X$found_dir" != "X"; then
+ if test -f "$dir/$libname.la"; then
+ found_la="$dir/$libname.la"
+ fi
+ fi
+ ;;
+ esac
+ if test "X$found_dir" != "X"; then
+ break
+ fi
+ done
+ fi
+ if test "X$found_dir" != "X"; then
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name"
+ if test "X$found_so" != "X"; then
+ if test "$enable_rpath" = no \
+ || test "X$found_dir" = "X/usr/$acl_libdirstem" \
+ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ else
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $found_dir"
+ fi
+ if test "$acl_hardcode_direct" = yes; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ else
+ if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $found_dir"
+ fi
+ else
+ haveit=
+ for x in $LDFLAGS $LIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir"
+ fi
+ if test "$acl_hardcode_minus_L" != no; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ else
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
+ fi
+ fi
+ fi
+ fi
+ else
+ if test "X$found_a" != "X"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a"
+ else
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name"
+ fi
+ fi
+ additional_includedir=
+ case "$found_dir" in
+ */$acl_libdirstem | */$acl_libdirstem/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
+ if test "$name" = 'intl'; then
+ LIBINTL_PREFIX="$basedir"
+ fi
+ additional_includedir="$basedir/include"
+ ;;
+ */$acl_libdirstem2 | */$acl_libdirstem2/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'`
+ if test "$name" = 'intl'; then
+ LIBINTL_PREFIX="$basedir"
+ fi
+ additional_includedir="$basedir/include"
+ ;;
+ esac
+ if test "X$additional_includedir" != "X"; then
+ if test "X$additional_includedir" != "X/usr/include"; then
+ haveit=
+ if test "X$additional_includedir" = "X/usr/local/include"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ for x in $CPPFLAGS $INCINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-I$additional_includedir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_includedir"; then
+ INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir"
+ fi
+ fi
+ fi
+ fi
+ fi
+ if test -n "$found_la"; then
+ save_libdir="$libdir"
+ case "$found_la" in
+ */* | *\\*) . "$found_la" ;;
+ *) . "./$found_la" ;;
+ esac
+ libdir="$save_libdir"
+ for dep in $dependency_libs; do
+ case "$dep" in
+ -L*)
+ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
+ if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \
+ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then
+ haveit=
+ if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \
+ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux* | gnu* | k*bsd*-gnu) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ haveit=
+ for x in $LDFLAGS $LIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir"
+ fi
+ fi
+ haveit=
+ for x in $LDFLAGS $LTLIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir"
+ fi
+ fi
+ fi
+ fi
+ ;;
+ -R*)
+ dir=`echo "X$dep" | sed -e 's/^X-R//'`
+ if test "$enable_rpath" != no; then
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $dir"
+ fi
+ fi
+ ;;
+ -l*)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
+ ;;
+ *.la)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
+ ;;
+ *)
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$dep"
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep"
+ ;;
+ esac
+ done
+ fi
+ else
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name"
+ fi
+ fi
+ fi
+ done
+ done
+ if test "X$rpathdirs" != "X"; then
+ if test -n "$acl_hardcode_libdir_separator"; then
+ alldirs=
+ for found_dir in $rpathdirs; do
+ alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir"
+ done
+ acl_save_libdir="$libdir"
+ libdir="$alldirs"
+ eval flag=\"$acl_hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
+ else
+ for found_dir in $rpathdirs; do
+ acl_save_libdir="$libdir"
+ libdir="$found_dir"
+ eval flag=\"$acl_hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
+ done
+ fi
+ fi
+ if test "X$ltrpathdirs" != "X"; then
+ for found_dir in $ltrpathdirs; do
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir"
+ done
+ fi
+
+
+
+
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5
+$as_echo_n "checking for GNU gettext in libintl... " >&6; }
+if eval \${$gt_func_gnugettext_libintl+:} false; then :
$as_echo_n "(cached) " >&6
else
- if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
- # We make a subdir and do the tests there. Otherwise we can end up
- # making bogus files that we don't know about and never remove. For
- # instance it was reported that on HP-UX the gcc test will end up
- # making a dummy file named 'D' -- because '-MD' means "put the output
- # in D".
- rm -rf conftest.dir
- mkdir conftest.dir
- # Copy depcomp to subdir because otherwise we won't find it if we're
- # using a relative directory.
- cp "$am_depcomp" conftest.dir
- cd conftest.dir
- # We will build objects and dependencies in a subdirectory because
- # it helps to detect inapplicable dependency modes. For instance
- # both Tru64's cc and ICC support -MD to output dependencies as a
- # side effect of compilation, but ICC will put the dependencies in
- # the current directory while Tru64 will put them in the object
- # directory.
- mkdir sub
+ gt_save_CPPFLAGS="$CPPFLAGS"
+ CPPFLAGS="$CPPFLAGS $INCINTL"
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIBINTL"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
- am_cv_CC_dependencies_compiler_type=none
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
- fi
- am__universal=false
- case " $depcc " in #(
- *\ -arch\ *\ -arch\ *) am__universal=true ;;
- esac
+#include <libintl.h>
+$gt_revision_test_code
+extern int _nl_msg_cat_cntr;
+extern
+#ifdef __cplusplus
+"C"
+#endif
+const char *_nl_expand_alias (const char *);
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
- # we should not choose a depcomp mode which is confused by this.
- #
- # We need to recreate these files for each test, as the compiler may
- # overwrite some of them when testing with obscure command lines.
- # This happens at least with the AIX C compiler.
- : > sub/conftest.c
- for i in 1 2 3 4 5 6; do
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
- # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
- # Solaris 10 /bin/sh.
- echo '/* dummy */' > sub/conftst$i.h
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+int
+main ()
+{
- # We check with '-c' and '-o' for the sake of the "dashmstdout"
- # mode. It turns out that the SunPro C++ compiler does not properly
- # handle '-M -o', and we need to detect this. Also, some Intel
- # versions had trouble with output in subdirs.
- am__obj=sub/conftest.${OBJEXT-o}
- am__minus_obj="-o $am__obj"
- case $depmode in
- gcc)
- # This depmode causes a compiler race in universal mode.
- test "$am__universal" = false || continue
- ;;
- nosideeffect)
- # After this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested.
- if test "x$enable_dependency_tracking" = xyes; then
- continue
+bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ eval "$gt_func_gnugettext_libintl=yes"
+else
+ eval "$gt_func_gnugettext_libintl=no"
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then
+ LIBS="$LIBS $LIBICONV"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <libintl.h>
+$gt_revision_test_code
+extern int _nl_msg_cat_cntr;
+extern
+#ifdef __cplusplus
+"C"
+#endif
+const char *_nl_expand_alias (const char *);
+
+int
+main ()
+{
+
+bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ LIBINTL="$LIBINTL $LIBICONV"
+ LTLIBINTL="$LTLIBINTL $LTLIBICONV"
+ eval "$gt_func_gnugettext_libintl=yes"
+
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ fi
+ CPPFLAGS="$gt_save_CPPFLAGS"
+ LIBS="$gt_save_LIBS"
+fi
+eval ac_res=\$$gt_func_gnugettext_libintl
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+ fi
+
+ if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
+ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \
+ && test "$PACKAGE" != gettext-runtime \
+ && test "$PACKAGE" != gettext-tools; }; then
+ gt_use_preinstalled_gnugettext=yes
+ else
+ LIBINTL=
+ LTLIBINTL=
+ INCINTL=
+ fi
+
+
+
+ if test -n "$INTL_MACOSX_LIBS"; then
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+ LIBINTL="$LIBINTL $INTL_MACOSX_LIBS"
+ LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS"
+ fi
+ fi
+
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+
+$as_echo "#define ENABLE_NLS 1" >>confdefs.h
+
+ else
+ USE_NLS=no
+ fi
+ fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5
+$as_echo_n "checking whether to use NLS... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
+$as_echo "$USE_NLS" >&6; }
+ if test "$USE_NLS" = "yes"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5
+$as_echo_n "checking where the gettext function comes from... " >&6; }
+ if test "$gt_use_preinstalled_gnugettext" = "yes"; then
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
+ gt_source="external libintl"
else
- break
+ gt_source="libc"
fi
- ;;
- msvc7 | msvc7msys | msvisualcpp | msvcmsys)
- # This compiler won't grok '-c -o', but also, the minuso test has
- # not run yet. These depmodes are late enough in the game, and
- # so weak that their functioning should not be impacted.
- am__obj=conftest.${OBJEXT-o}
- am__minus_obj=
- ;;
- none) break ;;
- esac
- if depmode=$depmode \
- source=sub/conftest.c object=$am__obj \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
- >/dev/null 2>conftest.err &&
- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
- # that says an option was ignored or not supported.
- # When given -MP, icc 7.0 and 7.1 complain thusly:
- # icc: Command line warning: ignoring option '-M'; no argument required
- # The diagnosis changed in icc 8.0:
- # icc: Command line remark: option '-MP' not supported
- if (grep 'ignoring option' conftest.err ||
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
- am_cv_CC_dependencies_compiler_type=$depmode
+ else
+ gt_source="included intl directory"
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5
+$as_echo "$gt_source" >&6; }
+ fi
+
+ if test "$USE_NLS" = "yes"; then
+
+ if test "$gt_use_preinstalled_gnugettext" = "yes"; then
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5
+$as_echo_n "checking how to link with libintl... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5
+$as_echo "$LIBINTL" >&6; }
+
+ for element in $INCINTL; do
+ haveit=
+ for x in $CPPFLAGS; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X$element"; then
+ haveit=yes
break
fi
+ done
+ if test -z "$haveit"; then
+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
fi
done
- cd ..
- rm -rf conftest.dir
-else
- am_cv_CC_dependencies_compiler_type=none
-fi
+ fi
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
-$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
-CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
- if
- test "x$enable_dependency_tracking" != xno \
- && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
- am__fastdepCC_TRUE=
- am__fastdepCC_FALSE='#'
-else
- am__fastdepCC_TRUE='#'
- am__fastdepCC_FALSE=
-fi
+$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
+$as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h
-# POSIX will say in a future version that running "rm -f" with no argument
-# is OK; and we want to be able to make that assumption in our Makefile
-# recipes. So use an aggressive probe to check that the usage we want is
-# actually supported "in the wild" to an acceptable degree.
-# See automake bug#10828.
-# To make any issue more visible, cause the running configure to be aborted
-# by default if the 'rm' program in use doesn't match our expectations; the
-# user can still override this though.
-if rm -f && rm -fr && rm -rf; then : OK; else
- cat >&2 <<'END'
-Oops!
+ fi
-Your 'rm' program seems unable to run without file operands specified
-on the command line, even when the '-f' option is present. This is contrary
-to the behaviour of most rm programs out there, and not conforming with
-the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+ POSUB=po
+ fi
-Please tell bug-automake@gnu.org about your system, including the value
-of your $PATH and any error possibly output before this message. This
-can help us improve future automake versions.
-END
- if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
- echo 'Configuration will proceed anyway, since you have set the' >&2
- echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
- echo >&2
- else
- cat >&2 <<'END'
-Aborting the configuration process, to ensure you take notice of the issue.
-You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: <http://www.gnu.org/software/coreutils/>.
+ INTLLIBS="$LIBINTL"
-If you want to complete the configuration process using your problematic
-'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
-to "yes", and re-run configure.
-END
- as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
- fi
+
+
+
+
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5
+$as_echo_n "checking for nl_langinfo and CODESET... " >&6; }
+if ${am_cv_langinfo_codeset+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <langinfo.h>
+int
+main ()
+{
+char* cs = nl_langinfo(CODESET); return !cs;
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ am_cv_langinfo_codeset=yes
+else
+ am_cv_langinfo_codeset=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset" >&5
+$as_echo "$am_cv_langinfo_codeset" >&6; }
+ if test $am_cv_langinfo_codeset = yes; then
+$as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h
+
+ fi
-SKIP_MPFR=no
-# Check whether --enable-mpfr was given.
-if test "${enable_mpfr+set}" = set; then :
- enableval=$enable_mpfr; if test "$enableval" = no
- then
- SKIP_MPFR=yes
- fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
+$as_echo_n "checking for LC_MESSAGES... " >&6; }
+if ${gt_cv_val_LC_MESSAGES+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <locale.h>
+int
+main ()
+{
+return LC_MESSAGES
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ gt_cv_val_LC_MESSAGES=yes
+else
+ gt_cv_val_LC_MESSAGES=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_val_LC_MESSAGES" >&5
+$as_echo "$gt_cv_val_LC_MESSAGES" >&6; }
+ if test $gt_cv_val_LC_MESSAGES = yes; then
+
+$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
+
+ fi
ac_fn_c_check_member "$LINENO" "struct stat" "st_blksize" "ac_cv_member_struct_stat_st_blksize" "$ac_includes_default"
@@ -4978,77 +7296,6 @@ macro_revision='2.4.6'
ltmain=$ac_aux_dir/ltmain.sh
-# Make sure we can run config.sub.
-$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
- as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
-$as_echo_n "checking build system type... " >&6; }
-if ${ac_cv_build+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_build_alias=$build_alias
-test "x$ac_build_alias" = x &&
- ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
-test "x$ac_build_alias" = x &&
- as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
-ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
-$as_echo "$ac_cv_build" >&6; }
-case $ac_cv_build in
-*-*-*) ;;
-*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
-esac
-build=$ac_cv_build
-ac_save_IFS=$IFS; IFS='-'
-set x $ac_cv_build
-shift
-build_cpu=$1
-build_vendor=$2
-shift; shift
-# Remember, the first character of IFS is used to create $*,
-# except with old shells:
-build_os=$*
-IFS=$ac_save_IFS
-case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
-$as_echo_n "checking host system type... " >&6; }
-if ${ac_cv_host+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- if test "x$host_alias" = x; then
- ac_cv_host=$ac_cv_build
-else
- ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
-fi
-
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
-$as_echo "$ac_cv_host" >&6; }
-case $ac_cv_host in
-*-*-*) ;;
-*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
-esac
-host=$ac_cv_host
-ac_save_IFS=$IFS; IFS='-'
-set x $ac_cv_host
-shift
-host_cpu=$1
-host_vendor=$2
-shift; shift
-# Remember, the first character of IFS is used to create $*,
-# except with old shells:
-host_os=$*
-IFS=$ac_save_IFS
-case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-
-
# Backslashify metacharacters that are still active within
# double-quoted strings.
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
@@ -13264,14 +15511,6 @@ $as_echo_n "checking that generated files are newer than configure... " >&6; }
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
$as_echo "done" >&6; }
-if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
- as_fn_error $? "conditional \"AMDEP\" was never defined.
-Usually this means the macro was only invoked conditionally." "$LINENO" 5
-fi
-if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
- as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
-Usually this means the macro was only invoked conditionally." "$LINENO" 5
-fi
if test -n "$EXEEXT"; then
am__EXEEXT_TRUE=
am__EXEEXT_FALSE='#'
@@ -13280,6 +15519,14 @@ else
am__EXEEXT_FALSE=
fi
+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
+ as_fn_error $? "conditional \"AMDEP\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
+ as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
: "${CONFIG_STATUS=./config.status}"
ac_write_fail=0
@@ -13865,6 +16112,13 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
# INIT-COMMANDS
#
AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+# Capture the value of obsolete ALL_LINGUAS because we need it to compute
+ # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
+ # from automake < 1.5.
+ eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
+ # Capture the value of LINGUAS because we need it to compute CATALOGS.
+ LINGUAS="${LINGUAS-%UNSET%}"
+
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -14158,6 +16412,7 @@ for ac_config_target in $ac_config_targets
do
case $ac_config_target in
"depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
+ "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;;
"libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
"config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:configh.in" ;;
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
@@ -14849,6 +17104,120 @@ $as_echo X"$file" |
done
}
;;
+ "po-directories":C)
+ for ac_file in $CONFIG_FILES; do
+ # Support "outfile[:infile[:infile...]]"
+ case "$ac_file" in
+ *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
+ esac
+ # PO directories have a Makefile.in generated from Makefile.in.in.
+ case "$ac_file" in */Makefile.in)
+ # Adjust a relative srcdir.
+ ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
+ ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
+ ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
+ # In autoconf-2.13 it is called $ac_given_srcdir.
+ # In autoconf-2.50 it is called $srcdir.
+ test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
+ case "$ac_given_srcdir" in
+ .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
+ /*) top_srcdir="$ac_given_srcdir" ;;
+ *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+ # Treat a directory as a PO directory if and only if it has a
+ # POTFILES.in file. This allows packages to have multiple PO
+ # directories under different names or in different locations.
+ if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
+ rm -f "$ac_dir/POTFILES"
+ test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
+ gt_tab=`printf '\t'`
+ cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
+ POMAKEFILEDEPS="POTFILES.in"
+ # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
+ # on $ac_dir but don't depend on user-specified configuration
+ # parameters.
+ if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
+ # The LINGUAS file contains the set of available languages.
+ if test -n "$OBSOLETE_ALL_LINGUAS"; then
+ test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
+ fi
+ ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
+ # Hide the ALL_LINGUAS assignment from automake < 1.5.
+ eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
+ POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
+ else
+ # The set of available languages was given in configure.in.
+ # Hide the ALL_LINGUAS assignment from automake < 1.5.
+ eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
+ fi
+ # Compute POFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
+ # Compute UPDATEPOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
+ # Compute DUMMYPOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
+ # Compute GMOFILES
+ # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
+ case "$ac_given_srcdir" in
+ .) srcdirpre= ;;
+ *) srcdirpre='$(srcdir)/' ;;
+ esac
+ POFILES=
+ UPDATEPOFILES=
+ DUMMYPOFILES=
+ GMOFILES=
+ for lang in $ALL_LINGUAS; do
+ POFILES="$POFILES $srcdirpre$lang.po"
+ UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
+ DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
+ GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
+ done
+ # CATALOGS depends on both $ac_dir and the user's LINGUAS
+ # environment variable.
+ INST_LINGUAS=
+ if test -n "$ALL_LINGUAS"; then
+ for presentlang in $ALL_LINGUAS; do
+ useit=no
+ if test "%UNSET%" != "$LINGUAS"; then
+ desiredlanguages="$LINGUAS"
+ else
+ desiredlanguages="$ALL_LINGUAS"
+ fi
+ for desiredlang in $desiredlanguages; 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
+ INST_LINGUAS="$INST_LINGUAS $presentlang"
+ fi
+ done
+ fi
+ CATALOGS=
+ if test -n "$INST_LINGUAS"; then
+ for lang in $INST_LINGUAS; do
+ CATALOGS="$CATALOGS $lang.gmo"
+ done
+ fi
+ test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
+ sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
+ for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
+ if test -f "$f"; then
+ case "$f" in
+ *.orig | *.bak | *~) ;;
+ *) cat "$f" >> "$ac_dir/Makefile" ;;
+ esac
+ fi
+ done
+ fi
+ ;;
+ esac
+ done ;;
"libtool":C)
# See if we are running on zsh, and set the options that allow our
diff --git a/extension/configure.ac b/extension/configure.ac
index 2b913364..8d44e2b2 100644
--- a/extension/configure.ac
+++ b/extension/configure.ac
@@ -1,7 +1,7 @@
dnl
dnl configure.ac --- autoconf input file for gawk
dnl
-dnl Copyright (C) 2012-2017 the Free Software Foundation, Inc.
+dnl Copyright (C) 2012-2018 the Free Software Foundation, Inc.
dnl
dnl This file is part of GAWK, the GNU implementation of the
dnl AWK Programming Language.
@@ -25,17 +25,20 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT([GNU Awk Bundled Extensions],[4.2.0],[bug-gawk@gnu.org],[gawk-extensions])
+AC_PREREQ([2.69])
+
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([1.15 -Wall -Werror])
+
+
AC_USE_SYSTEM_EXTENSIONS
AC_ZOS_USS
INSTALL="$ac_aux_dir/install-sh -c"
export INSTALL
-AM_INIT_AUTOMAKE([1.15 -Wall -Werror])
-
SKIP_MPFR=no
AC_ARG_ENABLE([mpfr],
[AS_HELP_STRING([--disable-mpfr],[do not check for MPFR])],
@@ -45,6 +48,17 @@ AC_ARG_ENABLE([mpfr],
fi
)
+dnl Set the programming language for checks. Fortunately,
+dnl this only needs to be set once, since everything is in C.
+AC_LANG([C])
+
+dnl initialize GNU gettext
+dnl this seems to help with finding MPFR on some systems, too.
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION([0.19.7])
+AM_LANGINFO_CODESET
+gt_LC_MESSAGES
+
dnl checks for structure members
AC_CHECK_MEMBERS([struct stat.st_blksize])
diff --git a/extension/intdiv.c b/extension/intdiv.c
index 529ea361..bd0919cc 100644
--- a/extension/intdiv.c
+++ b/extension/intdiv.c
@@ -126,11 +126,21 @@ do_intdiv(int nargs, awk_value_t *result, struct awk_ext_func *unused)
clear_array(array);
#ifdef HAVE_MPFR
- if (nv.num_type == AWK_NUMBER_TYPE_DOUBLE && dv.num_type == AWK_NUMBER_TYPE_DOUBLE) {
+ if (nv.num_type == AWK_NUMBER_TYPE_DOUBLE && dv.num_type == AWK_NUMBER_TYPE_DOUBLE)
#endif
+ {
/* regular precision */
double num, denom, quotient, remainder;
+#ifndef HAVE_MPFR
+ if (nv.num_type != AWK_NUMBER_TYPE_DOUBLE || dv.num_type != AWK_NUMBER_TYPE_DOUBLE) {
+ static int warned = 0;
+ if (!warned) {
+ warning(ext_id, _("intdiv: MPFR arguments converted to IEEE because this extension was not compiled with MPFR support; loss of precision may occur"));
+ warned = 1;
+ }
+ }
+#endif
num = double_to_int(nv.num_value);
denom = double_to_int(dv.num_value);
@@ -150,8 +160,9 @@ do_intdiv(int nargs, awk_value_t *result, struct awk_ext_func *unused)
array_set_number(array, "quotient", 8, quotient);
array_set_number(array, "remainder", 9, remainder);
+ }
#ifdef HAVE_MPFR
- } else {
+ else {
/* extended precision */
mpz_ptr numer, denom;
mpz_t numer_tmp, denom_tmp;
diff --git a/po/ca.gmo b/po/ca.gmo
index d8f55fc4..999a7c8e 100644
--- a/po/ca.gmo
+++ b/po/ca.gmo
Binary files differ
diff --git a/po/ca.po b/po/ca.po
index f5fb59c7..e21e2a5b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.3h\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2016-12-18 19:51+0100\n"
"Last-Translator: Walter Garcia-Fontes <walter.garcia@upf.edu>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
@@ -245,11 +245,11 @@ msgstr "s'ha intentat usar la no-funci %s en una crida a funcions"
msgid "invalid subscript expression"
msgstr "expressi de subndex no vlida"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "advertiment: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatal: "
@@ -1400,7 +1400,7 @@ msgstr ""
"on [N] - (igual que la traa inversa) imprimeix la traa de tots els N marcs "
"interiors (exteriors si N < 0)."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "error: "
@@ -2797,144 +2797,144 @@ msgstr "la neteja de la canonada per al co-procs de `%sx' ha fallat (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "la neteja del fitxer `%s' ha fallat (%s)."
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "port local %s no vlid a `/inet'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "port local %s no vlid a `/inet'"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "amfitri remot i informaci de port (%s, %s) no vlids"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "amfitri remot i informaci de port (%s, %s) no vlids"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "les comunicacions TCP/IP no estan suportades"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "no es pot obrir `%s', mode `%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "ha fallat el tancament del pty mestre (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr ""
"ha fallat la finalitzaci de la sortida estndard en els processos fills (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"ha fallat el trasllat del pty esclau cap a l'eixida estndard dels processos "
"fills (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr ""
"ha fallat la finalitzaci de l'entrada estndard en els processos fills (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"ha fallat el trasllat del pty esclau cap a l'entrada estndard dels "
"processos fills (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "ha fallat el tancament del pty esclau (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "no es pot crear el procs fill per a `%s' (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"ha fallat la redirecci cap a l'eixida estndard dels processos fills (dup: "
"%s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"ha fallat la redirecci cap a l'entrada estndard dels processos fills (dup: "
"%s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "ha fallat la restauraci de l'eixida estndard en el procs pare\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "ha fallat la restauraci de l'entrada estndard en el procs pare\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "ha fallat la finalitzaci de la canonada (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "`|&' no est suportat"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "no es pot obrir la canonada `%s' (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "no es pot crear el procs fill per a `%s' (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
"getline: s'ha intentat llegir d'un final de lectura tancada d'una canonada "
"de doble via"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: s'ha rebut un punter nul"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
"l'analitzador d'entrades `%s' est en conflicte amb analitzador d'entrades `"
"%s' installat prviament"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "l'analitzador d'entrada `%s' no ha pogut obrir `%s'"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: s'ha rebut un punter nul"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
@@ -2942,16 +2942,16 @@ msgstr ""
"l'embolcall de sortida `%s' est en conflicte amb l'embolcall de sortida `"
"%s' installat prviament"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "l'embolcall de sortida `%s' no ha pogut obrir `%s'"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: s'ha rebut un punter nul"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
@@ -2960,25 +2960,25 @@ msgstr ""
"el processsador de dues vies `%s' est en conflicte amb el processador de "
"dues vies `%s' installat prviament"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "el processador de dues vies `%s' no ha pogut obrir `%s'"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "el fitxer de dades `%s' est buit"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "no s'ha pogut assignar ms memria d'entrada"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "el valor multicarcter de `RS' s una extensi de gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "la comunicaci IPv6 no est suportada"
@@ -3285,38 +3285,38 @@ msgstr "excepci de coma flotant"
msgid "fatal error: internal error"
msgstr "error fatal: error intern"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "error fatal: error intern: segfault"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "error fatal: error intern: sobreeiximent de pila"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "no s'ha pre-obert el descriptor fd per a %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "no es pot pre-obrir /dev/null per al descriptor fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "s'ignonar l'argument buit de `-e/--source'"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M ignorat: no s'ha compilat el suport MPFR/GMP"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: no es reconeix l'opci `-W %s', ser ignorada\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: l'opci requereix un argument -- %c\n"
diff --git a/po/da.gmo b/po/da.gmo
index f13c8921..ec4ef100 100644
--- a/po/da.gmo
+++ b/po/da.gmo
Binary files differ
diff --git a/po/da.po b/po/da.po
index a5c53407..41a8a012 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.1d\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2015-05-18 12:37+0200\n"
"Last-Translator: Keld Simonsen <keld@keldix.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -240,11 +240,11 @@ msgstr "forsg p at bruge ikke-funktionen '%s' som et funktionskald"
msgid "invalid subscript expression"
msgstr "ugyldigt indeksudtryk"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "advarsel: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatal: "
@@ -1332,7 +1332,7 @@ msgid ""
"if N < 0) frames."
msgstr ""
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "fejl: "
@@ -2707,174 +2707,174 @@ msgstr "ko-procesrensning af datakanalen til '%s' mislykkedes (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "filrensning af '%s' mislykkedes (%s)."
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "lokal port %s ugyldig i '/inet'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "lokal port %s ugyldig i '/inet'"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "fjernvrt og portinformation (%s, %s) ugyldige"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "fjernvrt og portinformation (%s, %s) ugyldige"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP-kommunikation understttes ikke"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "kunne ikke bne '%s', tilstand '%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "lukning af master-pty mislykkedes (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "lukning af standard ud i underproces mislykkedes (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"flytning af slave-pty til standard ud i underproces mislykkedes (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "lukning af standard ind i underproces mislykkedes (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"flytning af slave-pty til standard ind i underproces mislykkedes (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "lukning af slave-pty mislykkedes (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "kan ikke oprette barneproces for '%s' (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"flytning af datakanal til standard ud i underproces mislykkedes (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"flytning af datakanalen til standard ind i underproces mislykkedes (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "genskabelse af standard ud i forlderprocessen mislykkedes\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "genskabelse af standard ind i forlderprocessen mislykkedes\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "lukning af datakanalen mislykkedes (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "'|&' understttes ikke"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "kan ikke bne datakanalen '%s' (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "kan ikke oprette barneproces for '%s' (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr ""
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr ""
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr ""
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr ""
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr ""
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
msgstr ""
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr ""
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "datafilen '%s' er tom"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "kunne ikke allokere mere hukommelse til inddata"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "'RS' som flertegnsvrdi er en gawk-udvidelse"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6-kommunikation understttes ikke"
@@ -3186,38 +3186,38 @@ msgstr "flydendetalsundtagelse"
msgid "fatal error: internal error"
msgstr "fatal fejl: intern fejl"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "fatal fejl: intern fejl: segmentfejl"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "fatal fejl: intern fejl: stakoverlb"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "ingen fd %d bnet i forvejen"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "kunne ikke i forvejen bne /dev/null for fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "tomt argument til '-e/--source' ignoreret"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: flaget '-W %s' ukendt, ignoreret\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: flaget krver et argument -- %c\n"
diff --git a/po/de.gmo b/po/de.gmo
index c5b16297..ea38a4a5 100644
--- a/po/de.gmo
+++ b/po/de.gmo
Binary files differ
diff --git a/po/de.po b/po/de.po
index 7820f8f5..16c35ef6 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.64\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2017-09-18 09:08+0200\n"
"Last-Translator: Philipp Thomas <pth@suse.de>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
@@ -246,11 +246,11 @@ msgstr "es wird versucht, „%s“ als Funktion aufzurufen, obwohl es keine ist"
msgid "invalid subscript expression"
msgstr "Ungültiger Index-Ausdruck"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "Warnung: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "Fatal: "
@@ -1402,7 +1402,7 @@ msgstr ""
"where [N] - (wie bei backtrace) Liste von allen oder den N innersten "
"(äußersten wenn N <0> Stackframes"
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "Fehler: "
@@ -2818,186 +2818,186 @@ msgstr "Ko-Prozess: Das Leeren der Pipe zu „%s“ ist gescheitert (%s)"
msgid "file flush of `%s' failed (%s)."
msgstr "Das Leeren der Datei „%s“ ist gescheitert (%s)"
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "Der lokale Port „%s“ ist ungültig in „/inet”: %s"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "Der lokale Port „%s“ ist ungültig in „/inet”"
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "Die Angaben zu entferntem Host und Port (%s, %s) sind ungültig: %s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "Die Angaben zu entferntem Host und Port (%s, %s) sind ungültig"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP-Verbindungen werden nicht unterstützt"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "„%s“ konnte nicht geöffnet werden, Modus „%s“"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr ""
"Das Schließen der übergeordneten Terminal-Gerätedatei ist gescheitert (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "Das Schließen der Standardausgabe im Kindprozess ist gescheitert (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"Das Verschieben der untergeordneten Terminal-Gerätedatei zur Standardausgabe "
"im Kindprozess ist gescheitert (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "Schließen von stdin im Kindprozess gescheitert (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"Das Verschieben der untergeordneten Terminal-Gerätedatei zur Standardeingabe "
"im Kindprozess ist gescheitert (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr ""
"Das Schließen der untergeordneten Terminal-Gerätedatei ist gescheitert (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "Kindprozess für „%s“ kann nicht erzeugt werden (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"Das Verschieben der Pipe zur Standardausgabe im Kindprozess ist gescheitert "
"(dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"Das Verschieben der Pipe zur Standardeingabe im Kindprozess ist gescheitert "
"(dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr ""
"Das Wiederherstellen der Standardausgabe im Elternprozess ist gescheitert\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr ""
"Das Wiederherstellen der Standardeingabe im Elternprozess ist gescheitert\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "Das Schließen der Pipe ist gescheitert (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "»|&« wird nicht unterstützt"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "Pipe „%s“ kann nicht geöffnet werden (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "Kindprozess für „%s“ kann nicht erzeugt werden (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
"getline: es wird versucht, vom geschlossenen lesenden Ende einer "
"bidirektionalen Pipe zu lesen"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: NULL-Zeiger erhalten"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
"Eingabeparser „%s“ steht im Konflikt mit dem vorher installierten "
"Eingabeparser „%s“"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "Eingabeparser „%s“ konnte „%s“ nicht öffnen"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: NULL-Zeiger erhalten"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr "Ausgabeverpackung „%s“ steht im Konflikt mit Ausgabeverpackung „%s“"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "Ausgabeverpackung „%s“ konnte „%s“ nicht öffnen"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: NULL-Zeiger erhalten"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
msgstr "Zweiwegeprozessor „%s“ steht im Konflikt mit Zweiwegeprozessor „%s“"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "Zweiwegeprozessor „%s“ konnte „%s“ nicht öffnen"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "Die Datei „%s“ ist leer"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "Es konnte kein weiterer Speicher für die Eingabe beschafft werden"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "Multicharacter-Wert von »RS« ist eine gawk-Erweiterung"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6-Verbindungen werden nicht unterstützt"
@@ -3315,39 +3315,39 @@ msgstr "Fließkomma-Ausnahme"
msgid "fatal error: internal error"
msgstr "Fataler Fehler: interner Fehler"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "Fataler Fehler: interner Fehler: Speicherbegrenzungsfehler"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "Fataler Fehler: interner Fehler: Stapelüberlauf"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "Kein bereits geöffneter Dateideskriptor %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "/dev/null konnte nicht für Dateideskriptor %d geöffnet werden"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "Das leere Argument für »--source« wird ignoriert"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
"-M wurde ignoriert: die Unterstützung von MPFR/GMP wurde nicht eingebaut"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: Die Option »-W %s« ist unbekannt und wird ignoriert\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: Die Option %c erfordert ein Argument\n"
diff --git a/po/es.gmo b/po/es.gmo
index 778b71a7..ad54171d 100644
--- a/po/es.gmo
+++ b/po/es.gmo
Binary files differ
diff --git a/po/es.po b/po/es.po
index 5eb153ce..e4089508 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.0.0h\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2012-01-30 07:42-0600\n"
"Last-Translator: Cristian Othón Martínez Vera <cfuga@cfuga.mx>\n"
"Language-Team: Spanish <es@li.org>\n"
@@ -243,11 +243,11 @@ msgstr "se intentó usar la función `%s' como una matriz"
msgid "invalid subscript expression"
msgstr "expresión de subíndice inválida"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "aviso: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatal: "
@@ -1370,7 +1370,7 @@ msgid ""
"if N < 0) frames."
msgstr ""
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "error: "
@@ -2762,174 +2762,174 @@ msgstr "falló la limpieza del co-proceso de la tubería a `%s' (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "falló la limpieza del fichero de `%s' (%s)."
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "puerto local %s inválido en `/inet'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "puerto local %s inválido en `/inet'"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "anfitrión remoto e información de puerto (%s, %s) inválidos"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "anfitrión remoto e información de puerto (%s, %s) inválidos"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "no se admiten las comunicaciones TCP/IP"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "no se puede abrir `%s', modo `%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "falló al cerrar el pty maestro (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "falló al cerrar la salida estándar en el hijo (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"falló el movimiento del pty esclavo a la salida estándar en el hijo (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "falló al cerrar la entrada estándar en el hijo (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"falló el movimiento del pty esclavo a la entrada estándar en el hijo (dup: "
"%s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "falló al cerrar el pty esclavo (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "no se puede crear el proceso hijo para `%s' (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "falló el movimiento a la salida estándar en el hijo (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"falló el movimiento de la tubería a la entrada estándar en el hijo (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "falló la restauración de la salida estándar en el proceso padre\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "falló la restauración de la entrada estándar en el proceso padre\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "falló al cerrar la tubería (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "no se admite `|&'"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "no se puede abrir la tubería `%s' (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "no se puede crear el proceso hijo para `%s' (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr ""
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr ""
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr ""
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr ""
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr ""
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
msgstr ""
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr ""
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "el fichero de datos `%s' está vacío"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "no se puede reservar más memoria de entrada"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "el valor multicaracter de `RS' es una extensión de gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "no se admite la comunicación IPv6"
@@ -3252,38 +3252,38 @@ msgstr "excepción de coma flotante"
msgid "fatal error: internal error"
msgstr "error fatal: error interno"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "error fatal: error interno: falla de segmentación"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "error fatal: error interno: desbordamiento de pila"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "no existe el df %d abierto previamente"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "no se puede abrir previamente /dev/null para el df %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "se descarta el argumento vacío para `-e/--source'"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: no se reconoce la opción `-W %s', se descarta\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: la opción requiere un argumento -- %c\n"
diff --git a/po/fi.gmo b/po/fi.gmo
index 776b765e..b719659b 100644
--- a/po/fi.gmo
+++ b/po/fi.gmo
Binary files differ
diff --git a/po/fi.po b/po/fi.po
index 6fdb6c59..f9c3a976 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.62\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2017-08-19 12:18+0300\n"
"Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -241,11 +241,11 @@ msgstr "yritys käyttää ei-funktio ”%s” funktiokutsussa"
msgid "invalid subscript expression"
msgstr "virheellinen indeksointilauseke"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "varoitus: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "tuhoisa: "
@@ -1368,7 +1368,7 @@ msgstr ""
"missä [N] - (sama kuin paluujälki) tulostaa kaikkien tai N-sisimmäisen "
"(ulommaisen jos N < 0) kehyksen jäljen."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "virhe: "
@@ -2771,138 +2771,138 @@ msgstr "putken apuprosessityhjennys uudelleenohjaukseen ”%s” epäonnistui (%
msgid "file flush of `%s' failed (%s)."
msgstr "uudelleenohjauksen ”%s” tiedostontyhjennys epäonnistui (%s)."
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "paikallinen portti %s virheellinen pistokkeessa ”/inet”"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "paikallinen portti %s virheellinen pistokkeessa ”/inet”"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "etäkone- ja porttitiedot (%s, %s) ovat virheellisiä"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "etäkone- ja porttitiedot (%s, %s) ovat virheellisiä"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP-viestintää ei tueta"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "laitteen ”%s” avaus epäonnistui, tila ”%s”"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "”master pty”-sulkeminen epäonnistui (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "vakiotulosteen sulkeminen lapsiprosessissa epäonnistui (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"”slave pty”:n siirtäminen vakiotulosteeseen lapsiprosessissa epäonnistui "
"(dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "vakiosyötteen sulkeminen lapsiprosessissa epäonnistui (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"”slave pty”:n siirtäminen vakiosyötteeseen lapsiprosessissa epäonnistui "
"(dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "”slave pty”:n sulkeminen epäonnistui (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "lapsiprosessin luominen komennolle ”%s” (fork: %s) epäonnistui"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"putken siirtäminen vakiotulosteeseen lapsiprosessissa epäonnistui (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"putken siirtäminen vakiosyötteeseen lapsiprosessissa epäonnistui (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "vakiotulosteen palauttaminen äitiprosessissa epäonnistui\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "vakiosyötön palauttaminen äitiprosessissa epäonnistui\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "putken sulkeminen epäonnistui (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "”|&” ei tueta"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "putken ”%s” (%s) avaaminen epäonnistui"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "lapsiprosessin luominen komennolle ”%s” (fork: %s) epäonnistui"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr "getline: yritys lukea kaksisuuntaisen putken suljetusta lukupäästä"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: vastaanotettiin NULL-osoitin"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
"syötejäsennin ”%s” on ristiriidassa aiemmin asennetun syötejäsentimen ”%s” "
"kanssa"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "syötejäsentäjä ”%s” epäonnistui kohteen ”%s” avaamisessa"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: vastaanotti NULL-osoittimen"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
@@ -2910,16 +2910,16 @@ msgstr ""
"tulostekäärin ”%s” on ristiriidassa aiemmin asennetun tulostekäärimen ”%s” "
"kanssa"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "tulostekäärin ”%s” epäonnistui avaamaan ”%s”"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: vastaanotti NULL-osoittimen"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
@@ -2928,25 +2928,25 @@ msgstr ""
"kaksisuuntainen prosessori ”%s” on ristiriidassa aiemmin asennetun "
"kaksisuuntaisen prosessorin ”%s” kanssa"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "kaksisuuntainen prosessori ”%s” epäonnistui avaamaan ”%s”"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "data-tiedosto ”%s” on tyhjä"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "lisäsyötemuistin varaus epäonnistui"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "”RS”-monimerkkiarvo on gawk-laajennus"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6-viestintää ei tueta"
@@ -3261,39 +3261,39 @@ msgstr "liukulukupoikkeus"
msgid "fatal error: internal error"
msgstr "tuhoisa virhe: sisäinen virhe"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "tuhoisa virhe: sisäinen virhe: segmenttivirhe"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "tuhoisa virhe: sisäinen virhe: pinoylivuoto"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "ei avattu uudelleen tiedostomäärittelijää %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr ""
"laitteen /dev/null avaaminen uudelleen tiedostomäärittelijälle %d epäonnistui"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "tyhjä argumentti valitsimelle ”-e/--source” ohitetaan"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M ohitettu: MPFR/GMP-tuki ei ole käännetty kohteessa"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: valitsin ”-W %s” on tunnistamaton, ohitetaan\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: valitsin vaatii argumentin -- %c\n"
diff --git a/po/fr.gmo b/po/fr.gmo
index e7cbab0e..b406c13f 100644
--- a/po/fr.gmo
+++ b/po/fr.gmo
Binary files differ
diff --git a/po/fr.po b/po/fr.po
index 67b4e67e..ec698503 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,9 +9,10 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.2.0e\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2018-01-29 23:26+0100\n"
-"Last-Translator: Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir.org>\n"
+"Last-Translator: Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir."
+"org>\n"
"Language-Team: French <traduc@traduc.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -162,7 +163,9 @@ msgstr "« return » est utilisé hors du contexte d'une fonction"
#: awkgram.y:1065
msgid "plain `print' in BEGIN or END rule should probably be `print \"\"'"
-msgstr "dans BEGIN ou END, un « print » seul devrait sans doute être un « print \"\" »"
+msgstr ""
+"dans BEGIN ou END, un « print » seul devrait sans doute être un « print "
+"\"\" »"
#: awkgram.y:1132 awkgram.y:1182
msgid "`delete' is not allowed with SYMTAB"
@@ -220,7 +223,9 @@ msgstr "les appels indirects de fonctions sont une extension gawk"
#: awkgram.y:1854
#, c-format
msgid "can not use special variable `%s' for indirect function call"
-msgstr "impossible d'utiliser la variable spéciale « %s » pour un appel indirect de fonction"
+msgstr ""
+"impossible d'utiliser la variable spéciale « %s » pour un appel indirect de "
+"fonction"
#: awkgram.y:1880
#, c-format
@@ -231,11 +236,11 @@ msgstr "tentative d'appel de « %s » comme fonction"
msgid "invalid subscript expression"
msgstr "expression indice incorrecte"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "avertissement : "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatal : "
@@ -314,17 +319,22 @@ msgstr "le fichier source ne se termine pas par un passage à la ligne"
#: awkgram.y:3489
msgid "unterminated regexp ends with `\\' at end of file"
-msgstr "expression rationnelle non refermée terminée par un « \\ » en fin de fichier"
+msgstr ""
+"expression rationnelle non refermée terminée par un « \\ » en fin de fichier"
#: awkgram.y:3516
#, c-format
msgid "%s: %d: tawk regex modifier `/.../%c' doesn't work in gawk"
-msgstr "%s : %d : le modificateur d'expressions rationnelles « /.../%c » de tawk ne marche pas dans gawk"
+msgstr ""
+"%s : %d : le modificateur d'expressions rationnelles « /.../%c » de tawk ne "
+"marche pas dans gawk"
#: awkgram.y:3520
#, c-format
msgid "tawk regex modifier `/.../%c' doesn't work in gawk"
-msgstr "le modificateur d'expressions rationnelles « /.../%c » de tawk ne marche pas dans gawk"
+msgstr ""
+"le modificateur d'expressions rationnelles « /.../%c » de tawk ne marche pas "
+"dans gawk"
#: awkgram.y:3533
msgid "unterminated regexp"
@@ -336,7 +346,8 @@ msgstr "expression rationnelle non refermée en fin de fichier"
#: awkgram.y:3616
msgid "use of `\\ #...' line continuation is not portable"
-msgstr "l'utilisation de « \\ #... » pour prolonger une ligne n'est pas portable"
+msgstr ""
+"l'utilisation de « \\ #... » pour prolonger une ligne n'est pas portable"
#: awkgram.y:3636
msgid "backslash not last character on line"
@@ -406,7 +417,9 @@ msgstr "%d n'est pas un nombre d'arguments valide de %s"
#: awkgram.y:4374
#, c-format
msgid "%s: string literal as last arg of substitute has no effect"
-msgstr "%s : une chaîne littérale en dernier argument d'une substitution est sans effet"
+msgstr ""
+"%s : une chaîne littérale en dernier argument d'une substitution est sans "
+"effet"
#: awkgram.y:4379
#, c-format
@@ -423,15 +436,18 @@ msgstr "close : le 2e argument est une extension gawk"
#: awkgram.y:4545
msgid "use of dcgettext(_\"...\") is incorrect: remove leading underscore"
-msgstr "utilisation incorrecte de dcgettext(_\"...\") : enlevez le souligné de tête"
+msgstr ""
+"utilisation incorrecte de dcgettext(_\"...\") : enlevez le souligné de tête"
#: awkgram.y:4560
msgid "use of dcngettext(_\"...\") is incorrect: remove leading underscore"
-msgstr "utilisation incorrecte de dcngettext(_\"...\") : enlevez le souligné de tête"
+msgstr ""
+"utilisation incorrecte de dcngettext(_\"...\") : enlevez le souligné de tête"
#: awkgram.y:4579
msgid "index: regexp constant as second argument is not allowed"
-msgstr "index : le second argument ne peut être une expression rationnelle constante"
+msgstr ""
+"index : le second argument ne peut être une expression rationnelle constante"
#: awkgram.y:4632
#, c-format
@@ -468,17 +484,21 @@ msgstr "nom de fonction « %s » déjà défini"
#: awkgram.y:4848
#, c-format
msgid "function `%s': can't use function name as parameter name"
-msgstr "fonction « %s » : impossible d'utiliser un nom de fonction comme paramètre"
+msgstr ""
+"fonction « %s » : impossible d'utiliser un nom de fonction comme paramètre"
#: awkgram.y:4851
#, c-format
msgid "function `%s': can't use special variable `%s' as a function parameter"
-msgstr "fonction « %s » : impossible d'utiliser la variable spéciale « %s » comme paramètre d'une fonction"
+msgstr ""
+"fonction « %s » : impossible d'utiliser la variable spéciale « %s » comme "
+"paramètre d'une fonction"
#: awkgram.y:4859
#, c-format
msgid "function `%s': parameter #%d, `%s', duplicates parameter #%d"
-msgstr "fonction « %s » : paramètre #%d, « %s » est un doublon du paramètre #%d"
+msgstr ""
+"fonction « %s » : paramètre #%d, « %s » est un doublon du paramètre #%d"
#: awkgram.y:4945 awkgram.y:4951
#, c-format
@@ -515,8 +535,11 @@ msgstr "tentative de division par zéro dans « %% »"
# gawk 'BEGIN { $1++ = 1 }'
#: awkgram.y:5552
-msgid "cannot assign a value to the result of a field post-increment expression"
-msgstr "impossible d'assigner une valeur au résultat de la post-incrémentation d'un champ"
+msgid ""
+"cannot assign a value to the result of a field post-increment expression"
+msgstr ""
+"impossible d'assigner une valeur au résultat de la post-incrémentation d'un "
+"champ"
#: awkgram.y:5555
#, c-format
@@ -548,12 +571,16 @@ msgstr "exp : l'argument %g est hors limite"
#: builtin.c:245
#, c-format
msgid "fflush: cannot flush: pipe `%.*s' opened for reading, not writing"
-msgstr "fflush : vidage impossible : le tube « %.*s » est ouvert en lecture et non en écriture"
+msgstr ""
+"fflush : vidage impossible : le tube « %.*s » est ouvert en lecture et non "
+"en écriture"
#: builtin.c:248
#, c-format
msgid "fflush: cannot flush: file `%.*s' opened for reading, not writing"
-msgstr "fflush : vidage impossible : fichier « %.*s » ouvert en lecture, pas en écriture"
+msgstr ""
+"fflush : vidage impossible : fichier « %.*s » ouvert en lecture, pas en "
+"écriture"
#: builtin.c:259
#, c-format
@@ -563,12 +590,15 @@ msgstr "fflush : vidage vers le fichier « %.*s » impossible : %s"
#: builtin.c:264
#, c-format
msgid "fflush: cannot flush: two-way pipe `%.*s' has closed write end"
-msgstr "fflush : vidage impossible : le tube bidirectionnel « %.*s » a fermé son côté écriture"
+msgstr ""
+"fflush : vidage impossible : le tube bidirectionnel « %.*s » a fermé son "
+"côté écriture"
#: builtin.c:270
#, c-format
msgid "fflush: `%.*s' is not an open file, pipe or co-process"
-msgstr "fflush : « %.*s » n'est ni un fichier ouvert, ni un tube, ni un co-processus"
+msgstr ""
+"fflush : « %.*s » n'est ni un fichier ouvert, ni un tube, ni un co-processus"
#: builtin.c:377
msgid "index: received non-string first argument"
@@ -605,7 +635,8 @@ msgstr "log : l'argument est négatif %g"
#: builtin.c:783 builtin.c:788 builtin.c:939
msgid "fatal: must use `count$' on all formats or none"
-msgstr "fatal : « numéro$ » doit être utilisé pour toutes les formats ou pour aucun"
+msgstr ""
+"fatal : « numéro$ » doit être utilisé pour toutes les formats ou pour aucun"
#: builtin.c:858
#, c-format
@@ -633,7 +664,8 @@ msgstr "fatal : le numéro d'argument de « $ » doit être > 0"
#: builtin.c:926
#, c-format
msgid "fatal: arg count %ld greater than total number of supplied arguments"
-msgstr "fatal : le numéro d'argument %ld est > au nombre total d'arguments fournis"
+msgstr ""
+"fatal : le numéro d'argument %ld est > au nombre total d'arguments fournis"
#: builtin.c:930
msgid "fatal: `$' not permitted after period in format"
@@ -641,7 +673,8 @@ msgstr "fatal : dans un format, « $ » ne doit pas suivre un point"
#: builtin.c:949
msgid "fatal: no `$' supplied for positional field width or precision"
-msgstr "fatal : aucun « $ » fourni pour la taille ou la précision du champ positionné"
+msgstr ""
+"fatal : aucun « $ » fourni pour la taille ou la précision du champ positionné"
#: builtin.c:1019
msgid "`l' is meaningless in awk formats; ignored"
@@ -713,7 +746,8 @@ msgstr "printf : aucun argument"
#: builtin.c:1704
msgid "printf: attempt to write to closed write end of two-way pipe"
-msgstr "printf : tentative d'écriture vers un tube bidirectionnel fermé côté écriture"
+msgstr ""
+"printf : tentative d'écriture vers un tube bidirectionnel fermé côté écriture"
#: builtin.c:1745
msgid "sqrt: received non-numeric argument"
@@ -765,13 +799,17 @@ msgstr "substr : l'index de début %g est au-delà de la fin de la chaîne"
#: builtin.c:1863
#, c-format
-msgid "substr: length %g at start index %g exceeds length of first argument (%lu)"
-msgstr "substr : la longueur %g à partir de %g dépasse la fin du 1er argument (%lu)"
+msgid ""
+"substr: length %g at start index %g exceeds length of first argument (%lu)"
+msgstr ""
+"substr : la longueur %g à partir de %g dépasse la fin du 1er argument (%lu)"
# Exemple : gawk --lint 'BEGIN { PROCINFO["strftime"]=123 ; print strftime() }'
#: builtin.c:1936
msgid "strftime: format value in PROCINFO[\"strftime\"] has numeric type"
-msgstr "strftime : la valeur de formatage PROCINFO[\"strftime\"] est de type numérique"
+msgstr ""
+"strftime : la valeur de formatage PROCINFO[\"strftime\"] est de type "
+"numérique"
#: builtin.c:1956
msgid "strftime: received non-numeric second argument"
@@ -814,7 +852,8 @@ msgstr "mktime : l'argument n'est pas une chaîne"
#: builtin.c:2117
msgid "mktime: at least one of the values is out of the default range"
-msgstr "mktime : au moins l'une des valeurs est en dehors de la plage par défaut"
+msgstr ""
+"mktime : au moins l'une des valeurs est en dehors de la plage par défaut"
#: builtin.c:2153
msgid "'system' function not allowed in sandbox mode"
@@ -826,7 +865,8 @@ msgstr "system : l'argument n'est pas une chaîne"
#: builtin.c:2227 builtin.c:2300
msgid "print: attempt to write to closed write end of two-way pipe"
-msgstr "print : tentative d'écriture vers un tube bidirectionnel fermé côté écriture"
+msgstr ""
+"print : tentative d'écriture vers un tube bidirectionnel fermé côté écriture"
#: builtin.c:2323
#, c-format
@@ -924,7 +964,8 @@ msgstr "rshift(%f, %f) : les valeurs non entières seront tronquées"
#: builtin.c:3451
#, c-format
msgid "rshift(%f, %f): too large shift value will give strange results"
-msgstr "rshift(%f, %f) : un décalage trop grand donnera des résultats inattendus"
+msgstr ""
+"rshift(%f, %f) : un décalage trop grand donnera des résultats inattendus"
#: builtin.c:3476 mpfr.c:977
msgid "and: called with less than two arguments"
@@ -1005,8 +1046,11 @@ msgstr "intdiv : tentative de division par zéro"
#: builtin.c:4080
#, c-format
-msgid "typeof detected invalid flags combination `%s'; please file a bug report."
-msgstr "typeof : utilisation de drapeaux incorrects « %s ». Merci de nous remonter l'erreur."
+msgid ""
+"typeof detected invalid flags combination `%s'; please file a bug report."
+msgstr ""
+"typeof : utilisation de drapeaux incorrects « %s ». Merci de nous remonter "
+"l'erreur."
#: builtin.c:4095
#, c-format
@@ -1045,7 +1089,8 @@ msgstr "sauve « %s » : commande interdite."
#: command.y:341
msgid "Can't use command `commands' for breakpoint/watchpoint commands"
-msgstr "Impossible d'utiliser « commands » pour des points d'arrêt ou de surveillance"
+msgstr ""
+"Impossible d'utiliser « commands » pour des points d'arrêt ou de surveillance"
#: command.y:343
msgid "no breakpoint/watchpoint has been set yet"
@@ -1058,7 +1103,8 @@ msgstr "numéro de point d'arrêt ou de surveillance incorrect"
#: command.y:350
#, c-format
msgid "Type commands for when %s %d is hit, one per line.\n"
-msgstr "Entrez les commandes exécutées lors de l'appui de %s %d, une par ligne.\n"
+msgstr ""
+"Entrez les commandes exécutées lors de l'appui de %s %d, une par ligne.\n"
#: command.y:352
#, c-format
@@ -1119,24 +1165,36 @@ msgid "non-zero integer value"
msgstr "valeur entière non nulle"
#: command.y:819
-msgid "backtrace [N] - print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "backtrace [N] - affiche la trace de tout ou des N dernières trames (du début si N < 0)."
+msgid ""
+"backtrace [N] - print trace of all or N innermost (outermost if N < 0) "
+"frames."
+msgstr ""
+"backtrace [N] - affiche la trace de tout ou des N dernières trames (du début "
+"si N < 0)."
#: command.y:821
-msgid "break [[filename:]N|function] - set breakpoint at the specified location."
-msgstr "break [[fichier:]N|fonction] - définit un point d'arrêt à l'endroit indiqué."
+msgid ""
+"break [[filename:]N|function] - set breakpoint at the specified location."
+msgstr ""
+"break [[fichier:]N|fonction] - définit un point d'arrêt à l'endroit indiqué."
#: command.y:823
msgid "clear [[filename:]N|function] - delete breakpoints previously set."
msgstr "clear [[fichier:]N|fonction] - détruit un point d'arrêt existant."
#: command.y:825
-msgid "commands [num] - starts a list of commands to be executed at a breakpoint(watchpoint) hit."
-msgstr "commands [no] - débute une liste de commande à lancer aux points d'arrêt ou de surveillance."
+msgid ""
+"commands [num] - starts a list of commands to be executed at a "
+"breakpoint(watchpoint) hit."
+msgstr ""
+"commands [no] - débute une liste de commande à lancer aux points d'arrêt ou "
+"de surveillance."
#: command.y:827
msgid "condition num [expr] - set or clear breakpoint or watchpoint condition."
-msgstr "condition no [expr] - défini ou détruit une condition d'arrêt ou de surveillance."
+msgstr ""
+"condition no [expr] - défini ou détruit une condition d'arrêt ou de "
+"surveillance."
#: command.y:829
msgid "continue [COUNT] - continue program being debugged."
@@ -1148,7 +1206,8 @@ msgstr "delete [points d'arrêt] [plage] - détruit les points d'arrêt indiqué
#: command.y:833
msgid "disable [breakpoints] [range] - disable specified breakpoints."
-msgstr "disable [points d'arrêt] [plage] - désactive les points d'arrêt indiqués."
+msgstr ""
+"disable [points d'arrêt] [plage] - désactive les points d'arrêt indiqués."
#: command.y:835
msgid "display [var] - print value of variable each time the program stops."
@@ -1160,11 +1219,13 @@ msgstr "down [N] - descend de N trames dans la pile."
#: command.y:839
msgid "dump [filename] - dump instructions to file or stdout."
-msgstr "dump [fichier] - vide les instructions vers la sortie standard ou un fichier."
+msgstr ""
+"dump [fichier] - vide les instructions vers la sortie standard ou un fichier."
#: command.y:841
msgid "enable [once|del] [breakpoints] [range] - enable specified breakpoints."
-msgstr "enable [once|del] [points d'arrêt] [plage] - active les points d'arrêt."
+msgstr ""
+"enable [once|del] [points d'arrêt] [plage] - active les points d'arrêt."
#: command.y:843
msgid "end - end a list of commands or awk statements."
@@ -1188,27 +1249,35 @@ msgstr "frame [N] - sélectionne et affiche la trame N de la pile."
#: command.y:853
msgid "help [command] - print list of commands or explanation of command."
-msgstr "help [commande] - affiche la liste des commandes ou explique la commande."
+msgstr ""
+"help [commande] - affiche la liste des commandes ou explique la commande."
#: command.y:855
msgid "ignore N COUNT - set ignore-count of breakpoint number N to COUNT."
msgstr "ignore N NB - ignore les NB prochaines occurrences du point d'arrêt N."
#: command.y:857
-msgid "info topic - source|sources|variables|functions|break|frame|args|locals|display|watch."
-msgstr "info sujet - source|sources|variables|functions|break|frame|args|locals|display|watch."
+msgid ""
+"info topic - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
+msgstr ""
+"info sujet - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
#: command.y:859
msgid "list [-|+|[filename:]lineno|function|range] - list specified line(s)."
-msgstr "list [-|+|[fichier:]no_ligne|fonction|plage] - affiche les lignes indiquées."
+msgstr ""
+"list [-|+|[fichier:]no_ligne|fonction|plage] - affiche les lignes indiquées."
#: command.y:861
msgid "next [COUNT] - step program, proceeding through subroutine calls."
msgstr "next [NB] - avance ligne par ligne, sans détailler les sous-routines."
#: command.y:863
-msgid "nexti [COUNT] - step one instruction, but proceed through subroutine calls."
-msgstr "nexti [NB] - avance d'une instruction, sans détailler les sous-routines."
+msgid ""
+"nexti [COUNT] - step one instruction, but proceed through subroutine calls."
+msgstr ""
+"nexti [NB] - avance d'une instruction, sans détailler les sous-routines."
#: command.y:865
msgid "option [name[=value]] - set or display debugger option(s)."
@@ -1236,15 +1305,19 @@ msgstr "run - démarre et redémarre l'exécution du programme."
#: command.y:878
msgid "save filename - save commands from the session to file."
-msgstr "save fichier - enregistre les commandes de la sessions dans un fichier."
+msgstr ""
+"save fichier - enregistre les commandes de la sessions dans un fichier."
#: command.y:881
msgid "set var = value - assign value to a scalar variable."
msgstr "set var = valeur - assigne une valeur à une variable scalaire."
#: command.y:883
-msgid "silent - suspends usual message when stopped at a breakpoint/watchpoint."
-msgstr "silent - suspend les messages habituels lors des points d'arrêt et de surveillance."
+msgid ""
+"silent - suspends usual message when stopped at a breakpoint/watchpoint."
+msgstr ""
+"silent - suspend les messages habituels lors des points d'arrêt et de "
+"surveillance."
#: command.y:885
msgid "source file - execute commands from file."
@@ -1268,11 +1341,17 @@ msgstr "trace on|off - affiche les instructions avant de les exécuter."
#: command.y:895
msgid "undisplay [N] - remove variable(s) from automatic display list."
-msgstr "undisplay [N] - retire la ou les variables de la liste d'affichage automatique."
+msgstr ""
+"undisplay [N] - retire la ou les variables de la liste d'affichage "
+"automatique."
#: command.y:897
-msgid "until [[filename:]N|function] - execute until program reaches a different line or line N within current frame."
-msgstr "until [[fichier:]N|fonction] - exécution jusqu'à dépasser la ligne courant ou la ligne N, dans la trame actuelle."
+msgid ""
+"until [[filename:]N|function] - execute until program reaches a different "
+"line or line N within current frame."
+msgstr ""
+"until [[fichier:]N|fonction] - exécution jusqu'à dépasser la ligne courant "
+"ou la ligne N, dans la trame actuelle."
#: command.y:899
msgid "unwatch [N] - remove variable(s) from watch list."
@@ -1287,10 +1366,14 @@ msgid "watch var - set a watchpoint for a variable."
msgstr "watch var - définit un point de surveillance pour une variable."
#: command.y:905
-msgid "where [N] - (same as backtrace) print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "where [N] - (identique à backtrace) affiche la trace de tout ou des N dernières trames (du début si N < 0)."
+msgid ""
+"where [N] - (same as backtrace) print trace of all or N innermost (outermost "
+"if N < 0) frames."
+msgstr ""
+"where [N] - (identique à backtrace) affiche la trace de tout ou des N "
+"dernières trames (du début si N < 0)."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "erreur : "
@@ -1346,7 +1429,8 @@ msgstr "affiche ou définit l'invite du débogueur."
#: debug.c:260
msgid "(un)set or show saving of command history (value=on|off)."
-msgstr "affiche ou (dés)active l'enregistrement de l'historique (valeur=on|off)."
+msgstr ""
+"affiche ou (dés)active l'enregistrement de l'historique (valeur=on|off)."
#: debug.c:262
msgid "(un)set or show saving of options (value=on|off)."
@@ -1382,7 +1466,8 @@ msgstr "impossible de trouver le fichier source nommé « %s » (%s)"
#: debug.c:529
#, c-format
msgid "WARNING: source file `%s' modified since program compilation.\n"
-msgstr "ATTENTION : fichier source « %s » modifié après compilation du programme.\n"
+msgstr ""
+"ATTENTION : fichier source « %s » modifié après compilation du programme.\n"
#: debug.c:551
#, c-format
@@ -1540,7 +1625,8 @@ msgstr "« %s » n'est pas une variable scalaire"
#: debug.c:1258 debug.c:5047
#, c-format
msgid "attempt to use array `%s[\"%.*s\"]' in a scalar context"
-msgstr "tentative d'utilisation du tableau « %s[\"%.*s\"] » en contexte scalaire"
+msgstr ""
+"tentative d'utilisation du tableau « %s[\"%.*s\"] » en contexte scalaire"
#: debug.c:1280 debug.c:5058
#, c-format
@@ -1579,7 +1665,8 @@ msgstr "tentative d'utiliser un scalaire comme tableau"
#: debug.c:1858
#, c-format
msgid "Watchpoint %d deleted because parameter is out of scope.\n"
-msgstr "Point de surveillance %d détruit, car son paramètre est hors contexte.\n"
+msgstr ""
+"Point de surveillance %d détruit, car son paramètre est hors contexte.\n"
#: debug.c:1869
#, c-format
@@ -1613,7 +1700,8 @@ msgstr "Numéro de trame incorrect"
#: debug.c:2202
#, c-format
msgid "Note: breakpoint %d (enabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Note : point d'arrêt %d (activé, ignore %ld occurrences) déjà défini à %s:%d"
+msgstr ""
+"Note : point d'arrêt %d (activé, ignore %ld occurrences) déjà défini à %s:%d"
#: debug.c:2209
#, c-format
@@ -1623,7 +1711,9 @@ msgstr "Note : point d'arrêt %d (activé) déjà défini à %s:%d"
#: debug.c:2216
#, c-format
msgid "Note: breakpoint %d (disabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Note : point d'arrêt %d (désactivé, ignore %ld occurrences) déjà défini à %s:%d"
+msgstr ""
+"Note : point d'arrêt %d (désactivé, ignore %ld occurrences) déjà défini à %s:"
+"%d"
#: debug.c:2223
#, c-format
@@ -1663,7 +1753,9 @@ msgstr "Impossible de définir un point d'arrêt dans la fonction « %s »\n"
#: debug.c:2405
#, c-format
msgid "breakpoint %d set at file `%s', line %d is unconditional\n"
-msgstr "le point d'arrêt %d défini sur le fichier « %s », ligne %d est inconditionnel\n"
+msgstr ""
+"le point d'arrêt %d défini sur le fichier « %s », ligne %d est "
+"inconditionnel\n"
#: debug.c:2510 debug.c:2532
#, c-format
@@ -1705,7 +1797,8 @@ msgstr "S'arrêtera à la prochaine occurrence du point d'arrêt %d.\n"
#: debug.c:2785
#, c-format
msgid "Can only debug programs provided with the `-f' option.\n"
-msgstr "Seuls les programmes fournis via l'option « -f » peuvent être débogués.\n"
+msgstr ""
+"Seuls les programmes fournis via l'option « -f » peuvent être débogués.\n"
#: debug.c:2914
#, c-format
@@ -1974,18 +2067,25 @@ msgstr "load_ext : impossible d'ouvrir la bibliothèque « %s » (%s)\n"
#: ext.c:66
#, c-format
-msgid "load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
-msgstr "load_ext : bibliothèque « %s » : ne définit pas « plugin_is_GPL_compatible » (%s)\n"
+msgid ""
+"load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
+msgstr ""
+"load_ext : bibliothèque « %s » : ne définit pas "
+"« plugin_is_GPL_compatible » (%s)\n"
#: ext.c:72
#, c-format
msgid "load_ext: library `%s': cannot call function `%s' (%s)\n"
-msgstr "load_ext : bibliothèque « %s » : impossible d'appeler la fonction « %s » (%s)\n"
+msgstr ""
+"load_ext : bibliothèque « %s » : impossible d'appeler la fonction "
+"« %s » (%s)\n"
#: ext.c:76
#, c-format
msgid "load_ext: library `%s' initialization routine `%s' failed\n"
-msgstr "load_ext : bibliothèque « %s » : échec de la routine d'initialisation « %s »\n"
+msgstr ""
+"load_ext : bibliothèque « %s » : échec de la routine d'initialisation "
+"« %s »\n"
#: ext.c:110
msgid "make_builtin: missing function name"
@@ -2009,7 +2109,9 @@ msgstr "make_builtin : nom de la fonction « %s » déjà défini"
#: ext.c:130
#, c-format
msgid "make_builtin: can't use gawk built-in `%s' as function name"
-msgstr "make_builtin : impossible d'utiliser la fonction gawk « %s » comme nom de fonction"
+msgstr ""
+"make_builtin : impossible d'utiliser la fonction gawk « %s » comme nom de "
+"fonction"
#: ext.c:133
#, c-format
@@ -2019,12 +2121,16 @@ msgstr "make_builtin : la fonction « %s » a un nombre négatif d'arguments"
#: ext.c:209
#, c-format
msgid "function `%s': argument #%d: attempt to use scalar as an array"
-msgstr "fonction « %s » : argument #%d : tentative d'utilisation d'un scalaire comme tableau"
+msgstr ""
+"fonction « %s » : argument #%d : tentative d'utilisation d'un scalaire comme "
+"tableau"
#: ext.c:213
#, c-format
msgid "function `%s': argument #%d: attempt to use array as a scalar"
-msgstr "fonction « %s » : argument #%d : tentative d'utiliser un tableau comme scalaire"
+msgstr ""
+"fonction « %s » : argument #%d : tentative d'utiliser un tableau comme "
+"scalaire"
#: ext.c:227
msgid "dynamic loading of library not supported"
@@ -2145,12 +2251,15 @@ msgstr "inplace_begin : 2 arguments attendus, appelé avec %d"
#: extension/inplace.c:137
msgid "inplace_begin: cannot retrieve 1st argument as a string filename"
-msgstr "inplace_begin : impossible de récupérer le 1er argument comme nom de fichier"
+msgstr ""
+"inplace_begin : impossible de récupérer le 1er argument comme nom de fichier"
#: extension/inplace.c:145
#, c-format
msgid "inplace_begin: disabling in-place editing for invalid FILENAME `%s'"
-msgstr "inplace_begin : modification sur place annulée pour le fichier incorrect « %s »"
+msgstr ""
+"inplace_begin : modification sur place annulée pour le fichier incorrect "
+"« %s »"
#: extension/inplace.c:152
#, c-format
@@ -2194,7 +2303,8 @@ msgstr "inplace_end : 2 arguments attendus, appelé avec %d"
#: extension/inplace.c:214
msgid "inplace_end: cannot retrieve 1st argument as a string filename"
-msgstr "inplace_end : impossible de récupérer le 1er argument comme nom de fichier"
+msgstr ""
+"inplace_end : impossible de récupérer le 1er argument comme nom de fichier"
#: extension/inplace.c:221
msgid "inplace_end: in-place editing not active"
@@ -2294,7 +2404,8 @@ msgstr "read_array : échec de set_array_element\n"
#: extension/rwarray.c:489
#, c-format
msgid "treating recovered value with unknown type code %d as a string"
-msgstr "valeur récupérée avec un code de type inconnu %d traitée comme une chaîne"
+msgstr ""
+"valeur récupérée avec un code de type inconnu %d traitée comme une chaîne"
#: extension/time.c:141
msgid "gettimeofday: not supported on this platform"
@@ -2338,11 +2449,13 @@ msgstr "split : impossible d'utiliser le même tableau comme 2e et 4e argument"
#: field.c:984
msgid "split: cannot use a subarray of second arg for fourth arg"
-msgstr "split : impossible d'utiliser un sous-tableau du 2e argument en 4e argument"
+msgstr ""
+"split : impossible d'utiliser un sous-tableau du 2e argument en 4e argument"
#: field.c:987
msgid "split: cannot use a subarray of fourth arg for second arg"
-msgstr "split : impossible d'utiliser un sous-tableau du 4e argument en 2e argument"
+msgstr ""
+"split : impossible d'utiliser un sous-tableau du 4e argument en 2e argument"
#: field.c:1021
msgid "split: null string for third arg is a gawk extension"
@@ -2362,15 +2475,20 @@ msgstr "patsplit : le 3e argument n'est pas un tableau"
#: field.c:1076
msgid "patsplit: cannot use the same array for second and fourth args"
-msgstr "patsplit : impossible d'utiliser le même tableau comme 2e et 4e argument"
+msgstr ""
+"patsplit : impossible d'utiliser le même tableau comme 2e et 4e argument"
#: field.c:1081
msgid "patsplit: cannot use a subarray of second arg for fourth arg"
-msgstr "patsplit : impossible d'utiliser un sous-tableau du 2e argument en 4e argument"
+msgstr ""
+"patsplit : impossible d'utiliser un sous-tableau du 2e argument en 4e "
+"argument"
#: field.c:1084
msgid "patsplit: cannot use a subarray of fourth arg for second arg"
-msgstr "patsplit : impossible d'utiliser un sous-tableau du 4e argument en 2e argument"
+msgstr ""
+"patsplit : impossible d'utiliser un sous-tableau du 4e argument en 2e "
+"argument"
#: field.c:1134
msgid "`FIELDWIDTHS' is a gawk extension"
@@ -2391,7 +2509,8 @@ msgstr "utiliser une chaîne vide pour « FS » est une extension gawk"
#: field.c:1301
msgid "old awk does not support regexps as value of `FS'"
-msgstr "l'ancien awk n'accepte pas les expr. rationnelles comme valeur de « FS »"
+msgstr ""
+"l'ancien awk n'accepte pas les expr. rationnelles comme valeur de « FS »"
#: field.c:1436
msgid "`FPAT' is a gawk extension"
@@ -2416,8 +2535,12 @@ msgstr "awk_value_to_node : type numérique incorrect « %d »"
#: gawkapi.c:520
#, c-format
-msgid "node_to_awk_value: detected invalid numeric flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value : utilisation de drapeaux numériques incorrects « %s ». Merci de nous remonter l'erreur."
+msgid ""
+"node_to_awk_value: detected invalid numeric flags combination `%s'; please "
+"file a bug report."
+msgstr ""
+"node_to_awk_value : utilisation de drapeaux numériques incorrects « %s ». "
+"Merci de nous remonter l'erreur."
#: gawkapi.c:548
msgid "node_to_awk_value: received null node"
@@ -2429,8 +2552,12 @@ msgstr "node_to_awk_value : val nul reçu"
#: gawkapi.c:607 gawkapi.c:641 gawkapi.c:668 gawkapi.c:701
#, c-format
-msgid "node_to_awk_value detected invalid flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value : utilisation de drapeaux incorrects « %s ». Merci de nous remonter l'erreur."
+msgid ""
+"node_to_awk_value detected invalid flags combination `%s'; please file a bug "
+"report."
+msgstr ""
+"node_to_awk_value : utilisation de drapeaux incorrects « %s ». Merci de nous "
+"remonter l'erreur."
#: gawkapi.c:1072
msgid "remove_element: received null array"
@@ -2494,8 +2621,11 @@ msgstr "l'expression dans la redirection « %s » donne une chaîne nulle"
#: io.c:796
#, c-format
-msgid "filename `%.*s' for `%s' redirection may be result of logical expression"
-msgstr "le fichier « %.*s » de la redirection « %s » pourrait être le résultat d'une expression booléenne"
+msgid ""
+"filename `%.*s' for `%s' redirection may be result of logical expression"
+msgstr ""
+"le fichier « %.*s » de la redirection « %s » pourrait être le résultat d'une "
+"expression booléenne"
#: io.c:844
#, c-format
@@ -2519,13 +2649,17 @@ msgstr "impossible d'ouvrir le tube « %s » en entrée (%s)"
#: io.c:950
#, c-format
-msgid "get_file socket creation not supported on this platform for `%s' with fd %d"
-msgstr "création d'un connecteur via get_file non disponible sur cette plateforme pour « %s » avec le fd %d"
+msgid ""
+"get_file socket creation not supported on this platform for `%s' with fd %d"
+msgstr ""
+"création d'un connecteur via get_file non disponible sur cette plateforme "
+"pour « %s » avec le fd %d"
#: io.c:961
#, c-format
msgid "can't open two way pipe `%s' for input/output (%s)"
-msgstr "impossible d'ouvrir un tube bidirectionnel « %s » en entrées-sorties (%s)"
+msgstr ""
+"impossible d'ouvrir un tube bidirectionnel « %s » en entrées-sorties (%s)"
#: io.c:1048
#, c-format
@@ -2538,8 +2672,11 @@ msgid "can't redirect to `%s' (%s)"
msgstr "impossible de rediriger vers « %s » (%s)"
#: io.c:1153
-msgid "reached system limit for open files: starting to multiplex file descriptors"
-msgstr "limite système du nombre de fichiers ouverts atteinte : début du multiplexage des descripteurs de fichiers"
+msgid ""
+"reached system limit for open files: starting to multiplex file descriptors"
+msgstr ""
+"limite système du nombre de fichiers ouverts atteinte : début du "
+"multiplexage des descripteurs de fichiers"
#: io.c:1169
#, c-format
@@ -2557,7 +2694,8 @@ msgstr "close : le second argument doit être « to » ou « from »"
#: io.c:1221
#, c-format
msgid "close: `%.*s' is not an open file, pipe or co-process"
-msgstr "close : « %.*s » n'est ni un fichier ouvert, ni un tube ou un co-processus"
+msgstr ""
+"close : « %.*s » n'est ni un fichier ouvert, ni un tube ou un co-processus"
#: io.c:1226
msgid "close of redirection that was never opened"
@@ -2566,7 +2704,9 @@ msgstr "fermeture d'une redirection qui n'a jamais été ouverte"
#: io.c:1325
#, c-format
msgid "close: redirection `%s' not opened with `|&', second argument ignored"
-msgstr "close : la redirection « %s » n'a pas été ouverte avec « |& », second argument ignoré"
+msgstr ""
+"close : la redirection « %s » n'a pas été ouverte avec « |& », second "
+"argument ignoré"
#: io.c:1342
#, c-format
@@ -2633,172 +2773,188 @@ msgstr "échec du vidage du tube vers « %s » par le co-processus (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "échec du vidage vers le fichier « %s » (%s)."
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "port local %s incorrect dans « /inet » : %s"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "port local %s incorrect dans « /inet »"
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "informations sur l'hôte et le port distants (%s, %s) incorrectes : %s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "informations sur l'hôte et le port distants (%s, %s) incorrectes"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "les communications TCP/IP ne sont pas disponibles"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "impossible d'ouvrir « %s », mode « %s »"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "échec de la fermeture du pty maître (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "échec de la fermeture de stdout du processus fils (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
-msgstr "échec du déplacement du pty esclave vers le stdout du processus fils (dup : %s)"
+msgstr ""
+"échec du déplacement du pty esclave vers le stdout du processus fils (dup : "
+"%s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "échec de fermeture du stdin du processus fils (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
-msgstr "échec du déplacement du pty esclave vers le stdin du processus fils (dup : %s)"
+msgstr ""
+"échec du déplacement du pty esclave vers le stdin du processus fils (dup : "
+"%s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "échec de la fermeture du pty esclave (%s)"
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr "impossible de créer un processus fils ou d'ouvrir un pty"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "échec du déplacement du tube vers stdout du processus fils (dup : %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr "échec de déplacement du tube vers stdin du processus fils (dup : %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "échec de la restauration du stdout dans le processus parent\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "échec de la restauration du stdin dans le processus parent\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "échec de la fermeture du tube (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "« |& » non disponible"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "impossible d'ouvrir le tube « %s » (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "impossible de créer le processus fils pour « %s » (fork : %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
-msgstr "getline : tentative de lecture vers un tube bidirectionnel fermé côté lecture"
+msgstr ""
+"getline : tentative de lecture vers un tube bidirectionnel fermé côté lecture"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser : pointeur NULL reçu"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
-msgstr "l'analyseur d'entrée « %s » est en conflit avec l'analyseur « %s » déjà installé"
+msgstr ""
+"l'analyseur d'entrée « %s » est en conflit avec l'analyseur « %s » déjà "
+"installé"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "l'analyseur d'entrée « %s » n'a pu ouvrir « %s »"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper : pointeur NULL reçu"
-#: io.c:3201
+#: io.c:3214
#, c-format
-msgid "output wrapper `%s' conflicts with previously installed output wrapper `%s'"
-msgstr "le filtre de sortie « %s » est en conflit avec le filtre « %s » déjà installé"
+msgid ""
+"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
+msgstr ""
+"le filtre de sortie « %s » est en conflit avec le filtre « %s » déjà installé"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "le filtre de sortie « %s » n'a pu ouvrir « %s »"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor : pointeur NULL reçu"
-#: io.c:3258
+#: io.c:3271
#, c-format
-msgid "two-way processor `%s' conflicts with previously installed two-way processor `%s'"
-msgstr "le gestionnaire bidirectionnel « %s » est en conflit avec le gestionnaire « %s » déjà installé"
+msgid ""
+"two-way processor `%s' conflicts with previously installed two-way processor "
+"`%s'"
+msgstr ""
+"le gestionnaire bidirectionnel « %s » est en conflit avec le gestionnaire "
+"« %s » déjà installé"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "le gestionnaire bidirectionnel « %s » n'a pu ouvrir « %s »"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "le fichier de données « %s » est vide"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "impossible d'allouer plus de mémoire d'entrée"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
-msgstr "l'utilisation d'un « RS » de plusieurs caractères est une extension gawk"
+msgstr ""
+"l'utilisation d'un « RS » de plusieurs caractères est une extension gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "les communications IPv6 ne sont pas disponibles"
#: main.c:333
msgid "environment variable `POSIXLY_CORRECT' set: turning on `--posix'"
-msgstr "variable d'environnement « POSIXLY__CORRECT » définie : activation de « --posix »"
+msgstr ""
+"variable d'environnement « POSIXLY__CORRECT » définie : activation de « --"
+"posix »"
#: main.c:339
msgid "`--posix' overrides `--traditional'"
@@ -2806,12 +2962,14 @@ msgstr "« --posix » prend le pas sur « --traditional »"
#: main.c:350
msgid "`--posix'/`--traditional' overrides `--non-decimal-data'"
-msgstr "« --posix » et « --traditional » prennent le pas sur « --non-decimal-data »"
+msgstr ""
+"« --posix » et « --traditional » prennent le pas sur « --non-decimal-data »"
#: main.c:354
#, c-format
msgid "running %s setuid root may be a security problem"
-msgstr "l'exécution de %s en mode setuid root peut être un problème de sécurité"
+msgstr ""
+"l'exécution de %s en mode setuid root peut être un problème de sécurité"
#: main.c:358
msgid "`--posix' overrides `--characters-as-bytes'"
@@ -2839,12 +2997,14 @@ msgstr "aucun programme !"
#: main.c:574
#, c-format
msgid "Usage: %s [POSIX or GNU style options] -f progfile [--] file ...\n"
-msgstr "Utilisation : %s [options GNU ou POSIX] -f fichier_prog [--] fichier ...\n"
+msgstr ""
+"Utilisation : %s [options GNU ou POSIX] -f fichier_prog [--] fichier ...\n"
#: main.c:576
#, c-format
msgid "Usage: %s [POSIX or GNU style options] [--] %cprogram%c file ...\n"
-msgstr "Utilisation : %s [options GNU ou POSIX] [--] %cprogramme%c fichier ...\n"
+msgstr ""
+"Utilisation : %s [options GNU ou POSIX] [--] %cprogramme%c fichier ...\n"
#: main.c:581
msgid "POSIX options:\t\tGNU long options: (standard)\n"
@@ -3103,38 +3263,38 @@ msgstr "exception du traitement en virgule flottante"
msgid "fatal error: internal error"
msgstr "fatal : erreur interne"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "fatal : erreur interne : erreur de segmentation"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "fatal : erreur interne : débordement de la pile"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "aucun descripteur fd %d pré-ouvert"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "impossible de pré-ouvrir /dev/null pour le descripteur fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "argument vide de l'option « -e / --source » ignoré"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M sans effet : version compilée sans MPFR/GMP"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s : option « -W %s » non reconnue, ignorée\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s : l'option requiert un argument - %c\n"
@@ -3217,8 +3377,12 @@ msgstr "aucun chiffre hexadécimal dans la séquence d'échappement « \\x »
#: node.c:611
#, c-format
-msgid "hex escape \\x%.*s of %d characters probably not interpreted the way you expect"
-msgstr "la séquence d'échappement hexa. \\x%.*s de %d caractères ne sera probablement pas interprétée comme vous l'imaginez"
+msgid ""
+"hex escape \\x%.*s of %d characters probably not interpreted the way you "
+"expect"
+msgstr ""
+"la séquence d'échappement hexa. \\x%.*s de %d caractères ne sera "
+"probablement pas interprétée comme vous l'imaginez"
#: node.c:626
#, c-format
@@ -3226,18 +3390,24 @@ msgid "escape sequence `\\%c' treated as plain `%c'"
msgstr "séquence d'échappement « \\%c » traitée comme un simple « %c »"
#: node.c:762
-msgid "Invalid multibyte data detected. There may be a mismatch between your data and your locale."
-msgstr "Données multioctets incorrectes détectées. Possible incohérence entre données et paramètres régionaux (locale)."
+msgid ""
+"Invalid multibyte data detected. There may be a mismatch between your data "
+"and your locale."
+msgstr ""
+"Données multioctets incorrectes détectées. Possible incohérence entre "
+"données et paramètres régionaux (locale)."
#: posix/gawkmisc.c:177
#, c-format
msgid "%s %s `%s': could not get fd flags: (fcntl F_GETFD: %s)"
-msgstr "%s %s « %s » : impossible d'obtenir les drapeaux du fd : (fcntl F_GETFD: %s)"
+msgstr ""
+"%s %s « %s » : impossible d'obtenir les drapeaux du fd : (fcntl F_GETFD: %s)"
#: posix/gawkmisc.c:189
#, c-format
msgid "%s %s `%s': could not set close-on-exec: (fcntl F_SETFD: %s)"
-msgstr "%s %s « %s »: impossible de positionner close-on-exec: (fcntl F_SETFD: %s)"
+msgstr ""
+"%s %s « %s »: impossible de positionner close-on-exec: (fcntl F_SETFD: %s)"
#: profile.c:97
#, c-format
@@ -3306,7 +3476,9 @@ msgstr "redir2str : type de redirection %d inconnu"
#: re.c:610
#, c-format
msgid "regexp component `%.*s' should probably be `[%.*s]'"
-msgstr "le composant d'expression rationnelle « %.*s » devrait probablement être « [%.*s] »"
+msgstr ""
+"le composant d'expression rationnelle « %.*s » devrait probablement être "
+"« [%.*s] »"
#: support/dfa.c:1005
msgid "unbalanced ["
@@ -3475,7 +3647,8 @@ msgstr "Aucune expression rationnelle précédente"
#: symbol.c:687
#, c-format
msgid "function `%s': can't use function `%s' as a parameter name"
-msgstr "fonction « %s » : impossible d'utiliser la fonction « %s » comme paramètre"
+msgstr ""
+"fonction « %s » : impossible d'utiliser la fonction « %s » comme paramètre"
#: symbol.c:817
msgid "can not pop main context"
@@ -3485,7 +3658,8 @@ msgstr "impossible de rétablir (pop) le contexte principal (main)"
#~ msgstr "« isarray » est obsolète. Utilisez « typeof »"
#~ msgid "attempt to use array `%s[\".*%s\"]' in a scalar context"
-#~ msgstr "tentative d'utilisation du tableau « %s[\".*%s\"] » en contexte scalaire"
+#~ msgstr ""
+#~ "tentative d'utilisation du tableau « %s[\".*%s\"] » en contexte scalaire"
#~ msgid "attempt to use scalar `%s[\".*%s\"]' as array"
#~ msgstr "tentative d'utiliser le scalaire « %s[\".*%s\"] » comme tableau"
diff --git a/po/gawk.pot b/po/gawk.pot
index 9d495be6..52b8b882 100644
--- a/po/gawk.pot
+++ b/po/gawk.pot
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: gawk 4.2.0e\n"
+"Project-Id-Version: gawk 4.2.0f\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -228,11 +228,11 @@ msgstr ""
msgid "invalid subscript expression"
msgstr ""
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr ""
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr ""
@@ -1299,7 +1299,7 @@ msgid ""
"if N < 0) frames."
msgstr ""
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr ""
@@ -2636,169 +2636,169 @@ msgstr ""
msgid "file flush of `%s' failed (%s)."
msgstr ""
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr ""
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr ""
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr ""
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr ""
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr ""
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr ""
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr ""
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr ""
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr ""
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr ""
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr ""
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr ""
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr ""
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr ""
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr ""
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr ""
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr ""
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr ""
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr ""
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr ""
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr ""
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr ""
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
msgstr ""
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr ""
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr ""
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr ""
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr ""
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr ""
@@ -3075,38 +3075,38 @@ msgstr ""
msgid "fatal error: internal error"
msgstr ""
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr ""
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr ""
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr ""
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr ""
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr ""
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr ""
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""
diff --git a/po/id.gmo b/po/id.gmo
index d25547d9..7cf9ed38 100644
--- a/po/id.gmo
+++ b/po/id.gmo
Binary files differ
diff --git a/po/id.po b/po/id.po
index 2a3d91e8..52878a42 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.0b\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2014-08-03 07:30+0700\n"
"Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n"
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
@@ -228,11 +228,11 @@ msgstr "mencoba untuk menggunakan fungsi `%s' sebagai sebuah array"
msgid "invalid subscript expression"
msgstr "ekspresi subscript tidak valid"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "peringatan: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatal: "
@@ -1344,7 +1344,7 @@ msgstr ""
"backtrace [N] - print trace of all or N innermost (outermost if N < 0) "
"frames."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "error: "
@@ -2708,147 +2708,147 @@ msgstr "co-proses flush dari pipe ke `%s' gagal (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "file flush dari `%s' gagal (%s)."
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "lokal port %s tidak valid dalam `/inet'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "lokal port %s tidak valid dalam `/inet'"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "remote host dan informasi port (%s, %s) tidak valid"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "remote host dan informasi port (%s, %s) tidak valid"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "komunikasi TCP/IP tidak didukung"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "tidak dapat membuka `%s', mode `%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "penutupan dari master pty gagal (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "penutupan dari stdout dalam child gagal (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr "memindahkan slave pty ke stdout dalam child gagal (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "penutupan dari stdin dalam anak gagal (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr "memindahkan slave pty ke stdin dalam anak gagal (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "penutupan dari pty budak gagal (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "tidak dapat membuat proses anak untuk `%s' (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "memindahkan pipe ke stdout dalam anak gaal (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr "memindahkan pipe ke stdin dalam anak gagal (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "mengembalikan stdout dalam proses orang tua gagal\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "mengembalikan stdin dalam proses orang tua gagal\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "penutupan dari pipe gagal (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "`|&' tidak didukung"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "tidak dapat membuka pipe `%s' (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "tidak dapat membuat proses anak untuk `%s' (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: received NULL pointer"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
"input parser `%s' conflicts with previously installed input parser `%s'"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "input parser `%s' failed to open `%s'"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: received NULL pointer"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "output wrapper `%s' failed to open `%s'"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: received NULL pointer"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
@@ -2857,25 +2857,25 @@ msgstr ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "two way processor `%s' failed to open `%s'"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "berkas data `%s' kosong"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "tidak dapat mengalokasikan lebih dari masukan memori"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "nilai multi karakter dari `RS' adalah sebuah ekstensi gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6 komunikasi TCP/IP tidak didukung"
@@ -3188,38 +3188,38 @@ msgstr "eksepsi titik pecahan"
msgid "fatal error: internal error"
msgstr "fatal error: internal error"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "fatal error: internal error: segfault"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "fatal error: internal error: stack overflow"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "tidak ada pre-opened fd %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "tidak dapat pre-open /dev/null untuk fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "argumen kosong ke `-e/--source' diabaikan"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: pilihan `-W %s' tidak dikenal, diabaikan\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: pilihan membutuhkan sebuah argumen -- %c\n"
diff --git a/po/it.gmo b/po/it.gmo
index ee92f46f..718730c0 100644
--- a/po/it.gmo
+++ b/po/it.gmo
Binary files differ
diff --git a/po/it.po b/po/it.po
index d448c21f..7670b920 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GNU Awk 4.2.1, API: 2.0\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-30 17:35+0100\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2018-01-30 20:00+0100\n"
"Last-Translator: Antonio Colombo <azc100@gmail.com>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -236,11 +236,11 @@ msgstr "tentativo di usare la non-funzione `%s' in una chiamata di funzione"
msgid "invalid subscript expression"
msgstr "espressione indice invalida"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "attenzione: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatale: "
@@ -492,24 +492,24 @@ msgstr ""
msgid "function `%s': parameter #%d, `%s', duplicates parameter #%d"
msgstr "funzione `%s': parametro #%d, `%s', duplica parametro #%d"
-#: awkgram.y:4948
+#: awkgram.y:4945 awkgram.y:4951
#, c-format
msgid "function `%s' called but never defined"
msgstr "funzione `%s' chiamata ma mai definita"
-#: awkgram.y:4952
+#: awkgram.y:4955
#, c-format
msgid "function `%s' defined but never called directly"
msgstr "funzione `%s' definita ma mai chiamata direttamente"
-#: awkgram.y:4984
+#: awkgram.y:4987
#, c-format
msgid "regexp constant for parameter #%d yields boolean value"
msgstr ""
"espressione regolare di valore costante per parametro #%d genera valore "
"booleano"
-#: awkgram.y:4999
+#: awkgram.y:5002
#, c-format
msgid ""
"function `%s' called with space between name and `(',\n"
@@ -518,23 +518,23 @@ msgstr ""
"funzione `%s' chiamata con spazio tra il nome e `(',\n"
"o usata come variabile o vettore"
-#: awkgram.y:5214
+#: awkgram.y:5217
msgid "division by zero attempted"
msgstr "tentativo di dividere per zero"
-#: awkgram.y:5223
+#: awkgram.y:5226
#, c-format
msgid "division by zero attempted in `%%'"
msgstr "tentativo di dividere per zero in `%%'"
-#: awkgram.y:5549
+#: awkgram.y:5552
msgid ""
"cannot assign a value to the result of a field post-increment expression"
msgstr ""
"impossibile assegnare un valore al risultato di un'espressione di post-"
"incremento di un campo"
-#: awkgram.y:5552
+#: awkgram.y:5555
#, c-format
msgid "invalid target of assignment (opcode %s)"
msgstr "destinazione di assegnazione non valida (codice operativo %s)"
@@ -1366,7 +1366,7 @@ msgstr ""
"dove [N] - (equivalente a backtrace) stampa tracia di tutti gli elementi o "
"degli N pi interni (pi esterni se N <0)"
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "errore: "
@@ -2755,139 +2755,139 @@ msgstr "scaricamento da co-processo di `pipe' a `%s' non riuscito (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "scaricamento di file `%s' non riuscito (%s)."
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "porta locale %s invalida in `/inet: %s'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "porta locale %s invalida in `/inet'"
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "host remoto e informazione di porta (%s, %s) invalidi: %s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "host remoto e informazione di porta (%s, %s) invalidi"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "comunicazioni TCP/IP non supportate"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "non riesco ad aprire `%s', modo `%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "close di `pty' principale non riuscita (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "close di `stdout' nel processo-figlio non riuscita (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"trasferimento di `pty' secondaria a `stdout' nel processo-figlio non "
"riuscita (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "close di `stdin' nel processo-figlio non riuscita (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"trasferimento di 'pty' secondaria a 'stdin' nel processo-figlio non riuscito "
"(dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "close di 'pty' secondaria non riuscita (%s)"
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr "non riesco a creare processo-figlio o ad aprire pty"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"passaggio di `pipe' a `stdout' nel processo-figlio non riuscito (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"passaggio di `pipe' a `stdin' nel processo-figlio non riuscito (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "ripristino di `stdout' nel processo-padre non riuscito\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "ripristino di `stdin' nel processo-padre non riuscito\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "close di `pipe' non riuscita (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "`|&' non supportato"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "non riesco ad aprire `pipe' `%s' (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "non riesco a creare processo-figlio per `%s' (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
"getline: tentativo di elggere dal lato in scrittura, chiuso, di una `pipe' "
"bidirezionale"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: ricevuto puntatore NULL"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
"input parser `%s' in conflitto con l'input parser `%s' installato in "
"precedenza"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "l'input parser `%s' non riuscito ad aprire `%s'"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: ricevuto puntatore NULL"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
@@ -2895,16 +2895,16 @@ msgstr ""
"output wrapper `%s' in conflitto con l'output wrapper `%s' installato in "
"precedenza"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "l'output wrapper `%s' non riuscito ad aprire `%s'"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: ricevuto puntatore NULL"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
@@ -2913,25 +2913,25 @@ msgstr ""
"processore doppio `%s' in conflitto con il processore doppio installato in "
"precedenza `%s'"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "il processore doppio `%s' non riuscito ad aprire `%s'"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "file dati `%s' vuoto"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "non riesco ad allocare ulteriore memoria per l'input"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "valore multicarattere per `RS' un'estensione gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "comunicazioni IPv6 non supportate"
@@ -3239,38 +3239,38 @@ msgstr "eccezione floating point"
msgid "fatal error: internal error"
msgstr "errore fatale: errore interno"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "errore fatale: errore interno: segfault"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "errore fatale: errore interno: stack overflow"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "manca `fd' pre-aperta %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "non riesco a pre-aprire /dev/null per `fd' %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "argomento di `-e/--source' nullo, ignorato"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M ignorato: supporto per MPFR/GMP non generato"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: opzione `-W %s' non riconosciuta, ignorata\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: l'opzione richiede un argomento -- %c\n"
diff --git a/po/ja.gmo b/po/ja.gmo
index 281a6e28..7e65fce5 100644
--- a/po/ja.gmo
+++ b/po/ja.gmo
Binary files differ
diff --git a/po/ja.po b/po/ja.po
index fb31f784..ea576f02 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.0b\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2014-11-07 12:26+0000\n"
"Last-Translator: Yasuaki Taniguchi <yasuakit@gmail.com>\n"
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -230,11 +230,11 @@ msgstr "関数 `%s' を配列として使用する試みです"
msgid "invalid subscript expression"
msgstr "添字の式が無効です"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "警告: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "致命的: "
@@ -1328,7 +1328,7 @@ msgid ""
"if N < 0) frames."
msgstr ""
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "エラー: "
@@ -2698,170 +2698,170 @@ msgstr "`%s' へ接続するパイプを並行プロセスからフラッシュ
msgid "file flush of `%s' failed (%s)."
msgstr "ファイル `%s' をフラッシュできません (%s)。"
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "`/inet' 内のローカルポート %s が無効です"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "`/inet' 内のローカルポート %s が無効です"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "リモートのホストおよびポート情報 (%s, %s) が無効です"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "リモートのホストおよびポート情報 (%s, %s) が無効です"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP 通信はサポートされていません"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "`%s' をモード `%s' で開けません"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "マスター pty を閉じるのに失敗しました (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "子プロセスが標準出力を閉じるのに失敗しました (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr "子プロセスがスレーブ pty を標準出力に移動できません (dup: %s)。"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "子プロセスが標準入力を閉じられません (%s)。"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr "子プロセスがスレーブ pty を標準入力に移動できません (dup: %s)。"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "スレーブ pty を閉じるのに失敗しました (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "`%s' 用の子プロセスを実行できません (fork: %s)。"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "子プロセスがパイプを標準出力に移動できません (dup: %s)。"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr "子プロセスがパイプを標準入力に移動できません (dup: %s)。"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "親プロセスが標準出力を復旧できません。\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "親プロセスが標準入力を復旧できません。\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "パイプを閉じられません (%s)。"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "`|&' は使用できません。"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "パイプ `%s' が開けません (%s)。"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "`%s' 用の子プロセスを実行できません (fork: %s)。"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr ""
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr ""
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr ""
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr ""
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr ""
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
msgstr ""
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr ""
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "データファイル `%s' は空です。"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "入力用メモリーをこれ以上確保できません。"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "複数の文字を `RS' に使用するのは gawk 特有の拡張です。"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6 通信はサポートされていません"
@@ -3181,38 +3181,38 @@ msgstr "浮動小数点例外"
msgid "fatal error: internal error"
msgstr "致命的エラー: 内部エラー"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "致命的エラー: 内部エラー: セグメンテーション違反"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "致命的エラー: 内部エラー: スタックオーバーフロー"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "fd %d が事前に開いていません。"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "事前に fd %d 用に /dev/null を開けません。"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "`-e/--source' への空の引数は無視されました"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: オプション `-W %s' は認識できません。無視されました\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: 引数が必要なオプション -- %c\n"
diff --git a/po/ms.gmo b/po/ms.gmo
index 5ed1d19c..fe021620 100644
--- a/po/ms.gmo
+++ b/po/ms.gmo
Binary files differ
diff --git a/po/ms.po b/po/ms.po
index 50f4cd5b..1f4a72fc 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.0.75\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2013-04-19 10:45+0800\n"
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@gmail.com>\n"
"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
@@ -230,11 +230,11 @@ msgstr ""
msgid "invalid subscript expression"
msgstr ""
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr ""
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr ""
@@ -1301,7 +1301,7 @@ msgid ""
"if N < 0) frames."
msgstr ""
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr ""
@@ -2638,169 +2638,169 @@ msgstr ""
msgid "file flush of `%s' failed (%s)."
msgstr ""
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr ""
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr ""
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr ""
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr ""
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr ""
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr ""
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr ""
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr ""
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr ""
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr ""
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr ""
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr ""
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr ""
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr ""
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr ""
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr ""
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr ""
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr ""
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr ""
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr ""
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr ""
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr ""
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
"`%s'"
msgstr ""
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr ""
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr ""
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr ""
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr ""
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr ""
@@ -3077,38 +3077,38 @@ msgstr ""
msgid "fatal error: internal error"
msgstr ""
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr ""
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr ""
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr ""
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr ""
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr ""
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr ""
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""
diff --git a/po/nl.gmo b/po/nl.gmo
index fde4bf98..de4bb26c 100644
--- a/po/nl.gmo
+++ b/po/nl.gmo
Binary files differ
diff --git a/po/nl.po b/po/nl.po
index adb876dd..a393b807 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.3h\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2016-08-08 09:21+0200\n"
"Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -242,11 +242,11 @@ msgstr "niet-functie '%s' wordt gebruikt in functie-aanroep"
msgid "invalid subscript expression"
msgstr "ongeldige index-expressie"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "waarschuwing: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fataal: "
@@ -1374,7 +1374,7 @@ msgstr ""
"where[N] - (zelfde als backtrace) een trace weergeven van alle of N "
"binnenste frames (of buitenste als N < 0)"
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "fout: "
@@ -2759,152 +2759,152 @@ msgstr "leegmaken door co-proces van pijp naar '%s' is mislukt (%s)"
msgid "file flush of `%s' failed (%s)."
msgstr "leegmaken van bestand '%s' is mislukt (%s)"
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "lokale poort %s is ongeldig in '/inet'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "lokale poort %s is ongeldig in '/inet'"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "host- en poortinformatie (%s, %s) zijn ongeldig"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "host- en poortinformatie (%s, %s) zijn ongeldig"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP-communicatie wordt niet ondersteund"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "kan '%s' niet openen -- modus '%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "kan meester-pty van dochterproces niet sluiten (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "kan standaarduitvoer van dochterproces niet sluiten (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"kan slaaf-pty niet overzetten naar standaarduitvoer van dochterproces (dup: "
"%s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "kan standaardinvoer van dochterproces niet sluiten (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"kan slaaf-pty niet overzetten naar standaardinvoer van dochterproces (dup: "
"%s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "kan slaaf-pty niet sluiten (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "kan voor '%s' geen dochterproces starten (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"kan pijp niet overzetten naar standaarduitvoer van dochterproces (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"kan pijp niet overzetten naar standaardinvoer van dochterproces (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "kan standaarduitvoer van ouderproces niet herstellen\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "kan standaardinvoer van ouderproces niet herstellen\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "kan pijp niet sluiten (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "'|&' wordt niet ondersteund"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "kan pijp '%s' niet openen (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "kan voor '%s' geen dochterproces starten (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr "getline: poging tot lezen uit gesloten leeskant van tweewegpijp"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser(): NULL-pointer gekregen"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr "invoer-parser '%s' botst met eerder geïnstalleerde invoer-parser '%s'"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "invoer-parser '%s' kan '%s' niet openen"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper(): NULL-pointer gekregen"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
"uitvoer-wrapper '%s' botst met eerder geïnstalleerde uitvoer-wrapper '%s'"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "uitvoer-wrapper '%s' kan '%s' niet openen"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor(): NULL-pointer gekregen"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
@@ -2912,25 +2912,25 @@ msgid ""
msgstr ""
"tweeweg-processor '%s' botst met eerder geïnstalleerde tweeweg-processor '%s'"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "tweeweg-processor '%s' kan '%s' niet openen"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "databestand '%s' is leeg"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "kan geen extra invoergeheugen meer toewijzen"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "een 'RS' van meerdere tekens is een gawk-uitbreiding"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6-communicatie wordt niet ondersteund"
@@ -3241,39 +3241,39 @@ msgstr "drijvendekomma-berekeningsfout"
msgid "fatal error: internal error"
msgstr "fatale fout: **interne fout**"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "fatale fout: **interne fout**: segmentatiefout"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "fatale fout: **interne fout**: stack is vol"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "geen reeds-geopende bestandsdescriptor %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "kan /dev/null niet openen voor bestandsdescriptor %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "argument van '-e/--source' is leeg; genegeerd"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
"optie '-M' is genegeerd; ondersteuning voor MPFR/GMP is niet meegecompileerd"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: optie '-W %s' is onbekend; genegeerd\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: optie vereist een argument -- %c\n"
diff --git a/po/pl.gmo b/po/pl.gmo
index eb6f9c9a..a2c3e925 100644
--- a/po/pl.gmo
+++ b/po/pl.gmo
Binary files differ
diff --git a/po/pl.po b/po/pl.po
index f5fe65cb..f609a1c2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.1.0b\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2014-03-22 17:49+0100\n"
"Last-Translator: Wojciech Polak <polak@gnu.org>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -244,11 +244,11 @@ msgstr "próba użycia funkcji `%s' jako tablicy"
msgid "invalid subscript expression"
msgstr "nieprawidłowe wyrażenie indeksowe"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "ostrzeżenie: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatalny błąd: "
@@ -1347,7 +1347,7 @@ msgid ""
"if N < 0) frames."
msgstr ""
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "błąd: "
@@ -2723,159 +2723,159 @@ msgstr ""
msgid "file flush of `%s' failed (%s)."
msgstr "opróżnienie pliku `%s' nie powiodło się (%s)."
-#: io.c:1590
+#: io.c:1603
#, fuzzy, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "nieprawidłowy lokalny port %s w `/inet'"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "nieprawidłowy lokalny port %s w `/inet'"
-#: io.c:1616
+#: io.c:1629
#, fuzzy, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "informacje o zdalnym hoście i porcie są nieprawidłowe (%s, %s)"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "informacje o zdalnym hoście i porcie są nieprawidłowe (%s, %s)"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "Komunikacja TCP/IP nie jest wspierana"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "nie można otworzyć `%s', tryb `%s'"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "zamknięcie nadrzędnego pty nie powiodło się (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr ""
"zamknięcie standardowego wyjścia w procesie potomnym nie powiodło się (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr ""
"przesunięcie podległego pty na standardowe wyjście w procesie potomnym nie "
"powiodło się (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr ""
"zamknięcie standardowego wejścia w procesie potomnym nie powiodło się (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr ""
"przesunięcie podległego pty na standardowe wejście w procesie potomnym nie "
"powiodło się (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "zamknięcie podległego pty nie powiodło się (%s)"
-#: io.c:2245
+#: io.c:2258
#, fuzzy
msgid "could not create child process or open pty"
msgstr "nie można utworzyć procesu potomnego dla `%s' (fork: %s)"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr ""
"przesunięcie potoku na standardowe wyjście w procesie potomnym nie powiodło "
"się (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr ""
"przesunięcie potoku na standardowe wejście w procesie potomnym nie powiodło "
"się (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr ""
"odzyskanie standardowego wyjścia w procesie potomnym nie powiodło się\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr ""
"odzyskanie standardowego wejścia w procesie potomnym nie powiodło się\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "zamknięcie potoku nie powiodło się (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "`|&' nie jest wspierany"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "nie można otworzyć potoku `%s' (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "nie można utworzyć procesu potomnego dla `%s' (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr ""
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: otrzymano wskaźnik NULL"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr ""
"parser wejścia `%s' konfliktuje z poprzednio zainstalowanym parserem `%s'"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "parser wejścia `%s': nie powiodło się otwarcie `%s'"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: otrzymano wskaźnik NULL"
-#: io.c:3201
+#: io.c:3214
#, c-format
msgid ""
"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr ""
"otoczka wyjścia `%s' konfliktuje z poprzednio zainstalowaną otoczką `%s'"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "otoczka wyjścia `%s': nie powiodło się otwarcie `%s'"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: otrzymano wskaźnik NULL"
-#: io.c:3258
+#: io.c:3271
#, c-format
msgid ""
"two-way processor `%s' conflicts with previously installed two-way processor "
@@ -2884,25 +2884,25 @@ msgstr ""
"dwukierunkowy procesor `%s' konfliktuje z poprzednio zainstalowanym "
"procesorem `%s'"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "dwukierunkowy procesor `%s' zawiódł w otwarciu `%s'"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "plik danych `%s' jest pusty"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "nie można zarezerwować więcej pamięci wejściowej"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "wieloznakowa wartość `RS' jest rozszerzeniem gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "Komunikacja IPv6 nie jest wspierana"
@@ -3214,38 +3214,38 @@ msgstr "wyjątek zmiennopozycyjny"
msgid "fatal error: internal error"
msgstr "fatalny błąd: wewnętrzny błąd"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "fatalny błąd: wewnętrzny błąd: błąd segmentacji"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "fatalny błąd: wewnętrzny błąd: przepełnienie stosu"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "brak już otwartego fd %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "nie można otworzyć zawczasu /dev/null dla fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "pusty argument dla opcji `-e/--source' został zignorowany"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr ""
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: opcja `-W %s' nierozpoznana i zignorowana\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: opcja musi mieć argument -- %c\n"
diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo
index c58e37db..f19bb859 100644
--- a/po/pt_BR.gmo
+++ b/po/pt_BR.gmo
Binary files differ
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 33c6ae11..119b42d6 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -8,10 +8,11 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.2.0e\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2018-01-30 09:57-0200\n"
"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
-"Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>\n"
+"Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge."
+"net>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -78,19 +79,23 @@ msgstr "asorti: primeiro argumento não é um vetor"
#: array.c:849
msgid "asort: cannot use a subarray of first arg for second arg"
-msgstr "asort: não é possível usar um subvetor do primeiro arg para o segundo arg"
+msgstr ""
+"asort: não é possível usar um subvetor do primeiro arg para o segundo arg"
#: array.c:850
msgid "asorti: cannot use a subarray of first arg for second arg"
-msgstr "asorti: não é possível usar um subvetor do primeiro arg para o segundo arg"
+msgstr ""
+"asorti: não é possível usar um subvetor do primeiro arg para o segundo arg"
#: array.c:855
msgid "asort: cannot use a subarray of second arg for first arg"
-msgstr "asort: não é possível usar um subvetor do segundo arg para o primeiro arg"
+msgstr ""
+"asort: não é possível usar um subvetor do segundo arg para o primeiro arg"
#: array.c:856
msgid "asorti: cannot use a subarray of second arg for first arg"
-msgstr "asorti: não é possível usar um subvetor do segundo arg para o primeiro arg"
+msgstr ""
+"asorti: não é possível usar um subvetor do segundo arg para o primeiro arg"
#: array.c:1324
#, c-format
@@ -113,7 +118,8 @@ msgstr "cada regra deve ter um padrão ou uma parte de ação"
#: awkgram.y:363 awkgram.y:377
msgid "old awk does not support multiple `BEGIN' or `END' rules"
-msgstr "o velho awk não oferece suporte regras múltiplas de \"BEGIN\" ou \"END\""
+msgstr ""
+"o velho awk não oferece suporte regras múltiplas de \"BEGIN\" ou \"END\""
#: awkgram.y:421
#, c-format
@@ -122,12 +128,14 @@ msgstr "\"%s\" é uma função intrínseca, não pode ser redefinida"
#: awkgram.y:497
msgid "regexp constant `//' looks like a C++ comment, but is not"
-msgstr "a constante de expr. reg. \"//\" parece ser um comentário C++, mas não é"
+msgstr ""
+"a constante de expr. reg. \"//\" parece ser um comentário C++, mas não é"
#: awkgram.y:501
#, c-format
msgid "regexp constant `/%s/' looks like a C comment, but is not"
-msgstr "a constante de expr. reg. \"/%s/\" parece ser um comentário C, mas não é"
+msgstr ""
+"a constante de expr. reg. \"/%s/\" parece ser um comentário C, mas não é"
#: awkgram.y:651
#, c-format
@@ -162,7 +170,9 @@ msgstr "\"return\" usado fora do contexto de função"
#: awkgram.y:1065
msgid "plain `print' in BEGIN or END rule should probably be `print \"\"'"
-msgstr "\"print\" sozinho em regra BEGIN ou END provavelmente deveria ser 'print \"\"'"
+msgstr ""
+"\"print\" sozinho em regra BEGIN ou END provavelmente deveria ser 'print "
+"\"\"'"
#: awkgram.y:1132 awkgram.y:1182
msgid "`delete' is not allowed with SYMTAB"
@@ -190,7 +200,8 @@ msgstr "expressão regular à esquerda de operador \"~\" ou \"!~\""
#: awkgram.y:1514 awkgram.y:1663
msgid "old awk does not support the keyword `in' except after `for'"
-msgstr "o velho awk não oferece suporte à palavra-chave \"in\", exceto após \"for\""
+msgstr ""
+"o velho awk não oferece suporte à palavra-chave \"in\", exceto após \"for\""
#: awkgram.y:1524
msgid "regular expression on right of comparison"
@@ -220,7 +231,9 @@ msgstr "chamadas indiretas de função são uma extensão do gawk"
#: awkgram.y:1854
#, c-format
msgid "can not use special variable `%s' for indirect function call"
-msgstr "não é possível usar a variável especial \"%s\" para chamada indireta de função"
+msgstr ""
+"não é possível usar a variável especial \"%s\" para chamada indireta de "
+"função"
#: awkgram.y:1880
#, c-format
@@ -231,11 +244,11 @@ msgstr "tentativa de usar não função \"%s\" em chamada de função"
msgid "invalid subscript expression"
msgstr "expressão de índice inválida"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "aviso: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "fatal: "
@@ -252,7 +265,8 @@ msgstr "não foi possível abrir arquivo-fonte \"%s\" para leitura (%s)"
#: awkgram.y:2663 awkgram.y:2788
#, c-format
msgid "can't open shared library `%s' for reading (%s)"
-msgstr "não foi possível abrir a biblioteca compartilhada \"%s\" para leitura (%s)"
+msgstr ""
+"não foi possível abrir a biblioteca compartilhada \"%s\" para leitura (%s)"
#: awkgram.y:2665 awkgram.y:2739 awkgram.y:2789 builtin.c:149 debug.c:5259
msgid "reason unknown"
@@ -406,7 +420,8 @@ msgstr "%d é inválido como número de argumentos para %s"
#: awkgram.y:4374
#, c-format
msgid "%s: string literal as last arg of substitute has no effect"
-msgstr "%s: string literal como último argumento de substituição não tem efeito"
+msgstr ""
+"%s: string literal como último argumento de substituição não tem efeito"
#: awkgram.y:4379
#, c-format
@@ -427,7 +442,8 @@ msgstr "uso de dcgettext(_\"...\") é incorreto: remova o sublinhado precedente"
#: awkgram.y:4560
msgid "use of dcngettext(_\"...\") is incorrect: remove leading underscore"
-msgstr "uso de dcngettext(_\"...\") é incorreto: remova o sublinhado precedente"
+msgstr ""
+"uso de dcngettext(_\"...\") é incorreto: remova o sublinhado precedente"
#: awkgram.y:4579
msgid "index: regexp constant as second argument is not allowed"
@@ -468,12 +484,15 @@ msgstr "nome de função \"%s\" definido anteriormente"
#: awkgram.y:4848
#, c-format
msgid "function `%s': can't use function name as parameter name"
-msgstr "função \"%s\": não é possível usar o nome da função como nome de parâmetro"
+msgstr ""
+"função \"%s\": não é possível usar o nome da função como nome de parâmetro"
#: awkgram.y:4851
#, c-format
msgid "function `%s': can't use special variable `%s' as a function parameter"
-msgstr "função \"%s\": não é possível usar a variável especial \"%s\" como um parâmetro de função"
+msgstr ""
+"função \"%s\": não é possível usar a variável especial \"%s\" como um "
+"parâmetro de função"
#: awkgram.y:4859
#, c-format
@@ -514,8 +533,11 @@ msgid "division by zero attempted in `%%'"
msgstr "tentativa de divisão por zero em \"%%\""
#: awkgram.y:5552
-msgid "cannot assign a value to the result of a field post-increment expression"
-msgstr "não é possível atribuir um valor ao resultado de uma expressão de campo pós-incremento"
+msgid ""
+"cannot assign a value to the result of a field post-increment expression"
+msgstr ""
+"não é possível atribuir um valor ao resultado de uma expressão de campo pós-"
+"incremento"
#: awkgram.y:5555
#, c-format
@@ -547,12 +569,15 @@ msgstr "exp: argumento %g está fora da faixa"
#: builtin.c:245
#, c-format
msgid "fflush: cannot flush: pipe `%.*s' opened for reading, not writing"
-msgstr "fflush: erro ao descarregar: pipe \"%.*s\" aberto para leitura, não gravação"
+msgstr ""
+"fflush: erro ao descarregar: pipe \"%.*s\" aberto para leitura, não gravação"
#: builtin.c:248
#, c-format
msgid "fflush: cannot flush: file `%.*s' opened for reading, not writing"
-msgstr "fflush: erro ao descarregar: arquivo \"%.*s\" aberto para leitura, não gravação"
+msgstr ""
+"fflush: erro ao descarregar: arquivo \"%.*s\" aberto para leitura, não "
+"gravação"
#: builtin.c:259
#, c-format
@@ -562,7 +587,8 @@ msgstr "fflush: erro ao descarregar o arquivo \"%.*s\": %s"
#: builtin.c:264
#, c-format
msgid "fflush: cannot flush: two-way pipe `%.*s' has closed write end"
-msgstr "fflush: erro ao descarregar: pipe bidirecional \"%.*s\" fechou a escrita"
+msgstr ""
+"fflush: erro ao descarregar: pipe bidirecional \"%.*s\" fechou a escrita"
#: builtin.c:270
#, c-format
@@ -632,7 +658,8 @@ msgstr "fatal: nº de argumentos com \"$\" deve ser > 0"
#: builtin.c:926
#, c-format
msgid "fatal: arg count %ld greater than total number of supplied arguments"
-msgstr "fatal: nº de argumentos %ld maior que nº total de argumentos fornecidos"
+msgstr ""
+"fatal: nº de argumentos %ld maior que nº total de argumentos fornecidos"
#: builtin.c:930
msgid "fatal: `$' not permitted after period in format"
@@ -640,7 +667,8 @@ msgstr "fatal: \"$\" não é permitido depois de ponto no formato"
#: builtin.c:949
msgid "fatal: no `$' supplied for positional field width or precision"
-msgstr "fatal: nenhum \"$\" fornecido para tamanho ou precisão de campo posicional"
+msgstr ""
+"fatal: nenhum \"$\" fornecido para tamanho ou precisão de campo posicional"
#: builtin.c:1019
msgid "`l' is meaningless in awk formats; ignored"
@@ -684,7 +712,9 @@ msgstr "[s]printf: valor %g está fora da faixa para formato \"%%%c\""
#: builtin.c:1579
#, c-format
msgid "ignoring unknown format specifier character `%c': no argument converted"
-msgstr "ignorando caractere especificador de formato \"%c\" desconhecido: nenhum argumento convertido"
+msgstr ""
+"ignorando caractere especificador de formato \"%c\" desconhecido: nenhum "
+"argumento convertido"
#: builtin.c:1584
msgid "fatal: not enough arguments to satisfy format string"
@@ -712,7 +742,9 @@ msgstr "printf: nenhum argumento"
#: builtin.c:1704
msgid "printf: attempt to write to closed write end of two-way pipe"
-msgstr "printf: tentativa de escrever para lado de escrita fechado de pipe bidirecional"
+msgstr ""
+"printf: tentativa de escrever para lado de escrita fechado de pipe "
+"bidirecional"
#: builtin.c:1745
msgid "sqrt: received non-numeric argument"
@@ -764,12 +796,16 @@ msgstr "substr: posição inicial %g está além do fim da string"
#: builtin.c:1863
#, c-format
-msgid "substr: length %g at start index %g exceeds length of first argument (%lu)"
-msgstr "substr: comprimento %g a partir da posição inicial %g excede tamanho do 1º argumento (%lu)"
+msgid ""
+"substr: length %g at start index %g exceeds length of first argument (%lu)"
+msgstr ""
+"substr: comprimento %g a partir da posição inicial %g excede tamanho do 1º "
+"argumento (%lu)"
#: builtin.c:1936
msgid "strftime: format value in PROCINFO[\"strftime\"] has numeric type"
-msgstr "strftime: valor de formato em PROCINFO[\"strftime\"] possui tipo numérico"
+msgstr ""
+"strftime: valor de formato em PROCINFO[\"strftime\"] possui tipo numérico"
#: builtin.c:1956
msgid "strftime: received non-numeric second argument"
@@ -824,7 +860,9 @@ msgstr "system: recebeu argumento não string"
#: builtin.c:2227 builtin.c:2300
msgid "print: attempt to write to closed write end of two-way pipe"
-msgstr "print: tentativa de escrever para lado de escrita fechado de pipe bidirecional"
+msgstr ""
+"print: tentativa de escrever para lado de escrita fechado de pipe "
+"bidirecional"
#: builtin.c:2323
#, c-format
@@ -1003,8 +1041,11 @@ msgstr "intdiv: tentativa de divisão por zero"
#: builtin.c:4080
#, c-format
-msgid "typeof detected invalid flags combination `%s'; please file a bug report."
-msgstr "typeof detectou combinação inválida de flags \"%s\"; por favor, faça um relato de erro."
+msgid ""
+"typeof detected invalid flags combination `%s'; please file a bug report."
+msgstr ""
+"typeof detectou combinação inválida de flags \"%s\"; por favor, faça um "
+"relato de erro."
#: builtin.c:4095
#, c-format
@@ -1043,7 +1084,9 @@ msgstr "save \"%s\": comando não permitido."
#: command.y:341
msgid "Can't use command `commands' for breakpoint/watchpoint commands"
-msgstr "Não foi possível usar o comando \"commands\" para comandos de breakpoint/watchpoint"
+msgstr ""
+"Não foi possível usar o comando \"commands\" para comandos de breakpoint/"
+"watchpoint"
#: command.y:343
msgid "no breakpoint/watchpoint has been set yet"
@@ -1117,24 +1160,36 @@ msgid "non-zero integer value"
msgstr "valor inteiro não zero"
#: command.y:819
-msgid "backtrace [N] - print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "backtrace [N] - exibe rastro de todos quadros ou os N mais internos (mais externos, se N < 0)."
+msgid ""
+"backtrace [N] - print trace of all or N innermost (outermost if N < 0) "
+"frames."
+msgstr ""
+"backtrace [N] - exibe rastro de todos quadros ou os N mais internos (mais "
+"externos, se N < 0)."
#: command.y:821
-msgid "break [[filename:]N|function] - set breakpoint at the specified location."
-msgstr "break [[arquivo:]N|função] - define o breakpoint na localização especificada."
+msgid ""
+"break [[filename:]N|function] - set breakpoint at the specified location."
+msgstr ""
+"break [[arquivo:]N|função] - define o breakpoint na localização especificada."
#: command.y:823
msgid "clear [[filename:]N|function] - delete breakpoints previously set."
-msgstr "clear [[arquivo:]N|função] - exclui breakpoints definidos anteriormente."
+msgstr ""
+"clear [[arquivo:]N|função] - exclui breakpoints definidos anteriormente."
#: command.y:825
-msgid "commands [num] - starts a list of commands to be executed at a breakpoint(watchpoint) hit."
-msgstr "commands [núm] - inicia uma lista de comandos para serem executados em um breakpoint(watchpoint) atingido."
+msgid ""
+"commands [num] - starts a list of commands to be executed at a "
+"breakpoint(watchpoint) hit."
+msgstr ""
+"commands [núm] - inicia uma lista de comandos para serem executados em um "
+"breakpoint(watchpoint) atingido."
#: command.y:827
msgid "condition num [expr] - set or clear breakpoint or watchpoint condition."
-msgstr "condition núm [expr] - deinfe ou limpa condição de breakpoint ou watchpoint."
+msgstr ""
+"condition núm [expr] - deinfe ou limpa condição de breakpoint ou watchpoint."
#: command.y:829
msgid "continue [COUNT] - continue program being debugged."
@@ -1142,15 +1197,19 @@ msgstr "continue [QTDE] - continua o programa sendo depurado."
#: command.y:831
msgid "delete [breakpoints] [range] - delete specified breakpoints."
-msgstr "delete [breakpoints] [intervalo] - exclui os breakpoints especificados."
+msgstr ""
+"delete [breakpoints] [intervalo] - exclui os breakpoints especificados."
#: command.y:833
msgid "disable [breakpoints] [range] - disable specified breakpoints."
-msgstr "disable [breakpoints] [intervalo] - desabilita os breakpoints especificados."
+msgstr ""
+"disable [breakpoints] [intervalo] - desabilita os breakpoints especificados."
#: command.y:835
msgid "display [var] - print value of variable each time the program stops."
-msgstr "display [var] - exibe o valor da variável toda vez em que o programa é interrompido."
+msgstr ""
+"display [var] - exibe o valor da variável toda vez em que o programa é "
+"interrompido."
#: command.y:837
msgid "down [N] - move N frames down the stack."
@@ -1158,11 +1217,14 @@ msgstr "down [N] - move N quadros para baixo na pilha."
#: command.y:839
msgid "dump [filename] - dump instructions to file or stdout."
-msgstr "dump [arquivo] - despeja instruções para arquivo ou saída padrão (stdout)."
+msgstr ""
+"dump [arquivo] - despeja instruções para arquivo ou saída padrão (stdout)."
#: command.y:841
msgid "enable [once|del] [breakpoints] [range] - enable specified breakpoints."
-msgstr "enable [once|del] [breakpoints] [intervalo] - habilita breakpoints especificados."
+msgstr ""
+"enable [once|del] [breakpoints] [intervalo] - habilita breakpoints "
+"especificados."
#: command.y:843
msgid "end - end a list of commands or awk statements."
@@ -1186,27 +1248,38 @@ msgstr "frame [N] - seleciona ou exibe o quadro número N."
#: command.y:853
msgid "help [command] - print list of commands or explanation of command."
-msgstr "help [comando] - exibe a lista de comandos ou explicação de um comando."
+msgstr ""
+"help [comando] - exibe a lista de comandos ou explicação de um comando."
#: command.y:855
msgid "ignore N COUNT - set ignore-count of breakpoint number N to COUNT."
-msgstr "ignore N QTDE - define quantidade a ser ignorada do breakpoint número N para QTDE."
+msgstr ""
+"ignore N QTDE - define quantidade a ser ignorada do breakpoint número N para "
+"QTDE."
#: command.y:857
-msgid "info topic - source|sources|variables|functions|break|frame|args|locals|display|watch."
-msgstr "info topic - source|sources|variables|functions|break|frame|args|locals|display|watch."
+msgid ""
+"info topic - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
+msgstr ""
+"info topic - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
#: command.y:859
msgid "list [-|+|[filename:]lineno|function|range] - list specified line(s)."
-msgstr "list [-|+|[arquivo:]nº linha|função|intervalo] - lista de linha(s) especificada."
+msgstr ""
+"list [-|+|[arquivo:]nº linha|função|intervalo] - lista de linha(s) "
+"especificada."
#: command.y:861
msgid "next [COUNT] - step program, proceeding through subroutine calls."
msgstr "next [QTDE] - avança programa, seguindo pelas chamadas de sub-rotinas."
#: command.y:863
-msgid "nexti [COUNT] - step one instruction, but proceed through subroutine calls."
-msgstr "nexti [QTDE] - avança uma instrução, mas segue pelas chamadas de sub-rotinas."
+msgid ""
+"nexti [COUNT] - step one instruction, but proceed through subroutine calls."
+msgstr ""
+"nexti [QTDE] - avança uma instrução, mas segue pelas chamadas de sub-rotinas."
#: command.y:865
msgid "option [name[=value]] - set or display debugger option(s)."
@@ -1226,7 +1299,8 @@ msgstr "quit - sai do depurador."
#: command.y:873
msgid "return [value] - make selected stack frame return to its caller."
-msgstr "return [valor] - faz o quadro da pilha selecionado retornar seu chamador."
+msgstr ""
+"return [valor] - faz o quadro da pilha selecionado retornar seu chamador."
#: command.y:875
msgid "run - start or restart executing program."
@@ -1241,8 +1315,11 @@ msgid "set var = value - assign value to a scalar variable."
msgstr "set var = valor - atribui valor para uma variável escalar."
#: command.y:883
-msgid "silent - suspends usual message when stopped at a breakpoint/watchpoint."
-msgstr "silent - suspende mensagem usual quando interrompido em um breakpoint/watchpoint."
+msgid ""
+"silent - suspends usual message when stopped at a breakpoint/watchpoint."
+msgstr ""
+"silent - suspende mensagem usual quando interrompido em um breakpoint/"
+"watchpoint."
#: command.y:885
msgid "source file - execute commands from file."
@@ -1250,7 +1327,8 @@ msgstr "source arquivo - executa comandos a partir do arquivo."
#: command.y:887
msgid "step [COUNT] - step program until it reaches a different source line."
-msgstr "step [QTDE] - avança programa até ele atingir uma linha fonte diferente."
+msgstr ""
+"step [QTDE] - avança programa até ele atingir uma linha fonte diferente."
#: command.y:889
msgid "stepi [COUNT] - step one instruction exactly."
@@ -1266,11 +1344,16 @@ msgstr "trace on|off - exibe instrução antes da execução."
#: command.y:895
msgid "undisplay [N] - remove variable(s) from automatic display list."
-msgstr "undisplay [N] - remove variáveis a partir da lista automática de exibição."
+msgstr ""
+"undisplay [N] - remove variáveis a partir da lista automática de exibição."
#: command.y:897
-msgid "until [[filename:]N|function] - execute until program reaches a different line or line N within current frame."
-msgstr "until [[arquivo:]N|função] - executa até o programa atingir uma linha diferente ou linha N dentro do quadro atual."
+msgid ""
+"until [[filename:]N|function] - execute until program reaches a different "
+"line or line N within current frame."
+msgstr ""
+"until [[arquivo:]N|função] - executa até o programa atingir uma linha "
+"diferente ou linha N dentro do quadro atual."
#: command.y:899
msgid "unwatch [N] - remove variable(s) from watch list."
@@ -1285,10 +1368,14 @@ msgid "watch var - set a watchpoint for a variable."
msgstr "watch var - define um watchpoint para uma variável."
#: command.y:905
-msgid "where [N] - (same as backtrace) print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "where [N] - (igual a \"backtrace\") exibe rastro de todos quadros ou os N mais internos (mais externos, se N < 0)."
+msgid ""
+"where [N] - (same as backtrace) print trace of all or N innermost (outermost "
+"if N < 0) frames."
+msgstr ""
+"where [N] - (igual a \"backtrace\") exibe rastro de todos quadros ou os N "
+"mais internos (mais externos, se N < 0)."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "erro: "
@@ -1328,7 +1415,8 @@ msgstr "comando indefinido: %s\n"
#: debug.c:252
msgid "set or show the number of lines to keep in history file."
-msgstr "define ou mostra o número de linhas para manter no arquivo de histórico."
+msgstr ""
+"define ou mostra o número de linhas para manter no arquivo de histórico."
#: debug.c:254
msgid "set or show the list command window size."
@@ -1344,15 +1432,19 @@ msgstr "define ou mostra o prompt de depuração."
#: debug.c:260
msgid "(un)set or show saving of command history (value=on|off)."
-msgstr "define/remove definição ou mostra o salvamento do comando \"history\" (valor=on|off)."
+msgstr ""
+"define/remove definição ou mostra o salvamento do comando \"history"
+"\" (valor=on|off)."
#: debug.c:262
msgid "(un)set or show saving of options (value=on|off)."
-msgstr "define/remove definição ou mostra o salvamento de opções (valor=on|off)."
+msgstr ""
+"define/remove definição ou mostra o salvamento de opções (valor=on|off)."
#: debug.c:264
msgid "(un)set or show instruction tracing (value=on|off)."
-msgstr "define/remove definição ou mostra o rastreamento de instrução (valor=on|off)."
+msgstr ""
+"define/remove definição ou mostra o rastreamento de instrução (valor=on|off)."
#: debug.c:345
msgid "program not running."
@@ -1380,7 +1472,8 @@ msgstr "não foi possível localizar o arquivo-fonte \"%s\" (%s)"
#: debug.c:529
#, c-format
msgid "WARNING: source file `%s' modified since program compilation.\n"
-msgstr "AVISO: o arquivo-fonte \"%s\" foi modificado após a compilação do programa.\n"
+msgstr ""
+"AVISO: o arquivo-fonte \"%s\" foi modificado após a compilação do programa.\n"
#: debug.c:551
#, c-format
@@ -1395,7 +1488,8 @@ msgstr "fim de arquivo inesperado enquanto lia o arquivo \"%s\", linha %d"
#: debug.c:620
#, c-format
msgid "source file `%s' modified since start of program execution"
-msgstr "o arquivo fonte \"%s\" foi modificado após o início da execução do programa"
+msgstr ""
+"o arquivo fonte \"%s\" foi modificado após o início da execução do programa"
#: debug.c:732
#, c-format
@@ -1610,7 +1704,9 @@ msgstr "número de quadro inválido"
#: debug.c:2202
#, c-format
msgid "Note: breakpoint %d (enabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Nota: breakpoint %d (habilitado, ignora próximos %ld acertos), também definido em %s:%d"
+msgstr ""
+"Nota: breakpoint %d (habilitado, ignora próximos %ld acertos), também "
+"definido em %s:%d"
#: debug.c:2209
#, c-format
@@ -1620,7 +1716,9 @@ msgstr "Nota: breakpoint %d (habilitado), também definido em %s:%d"
#: debug.c:2216
#, c-format
msgid "Note: breakpoint %d (disabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Nota: breakpoint %d (desabilitado, ignora próximos %ld acertos), também definido em %s:%d"
+msgstr ""
+"Nota: breakpoint %d (desabilitado, ignora próximos %ld acertos), também "
+"definido em %s:%d"
#: debug.c:2223
#, c-format
@@ -1729,7 +1827,8 @@ msgstr "erro: não foi possível reiniciar, operação não permitida\n"
#: debug.c:2948
#, c-format
msgid "error (%s): cannot restart, ignoring rest of the commands\n"
-msgstr "erro (%s): não foi possível reiniciar, ignorando o resto dos comandos\n"
+msgstr ""
+"erro (%s): não foi possível reiniciar, ignorando o resto dos comandos\n"
#: debug.c:2956
#, c-format
@@ -1784,7 +1883,8 @@ msgstr "\"return\" não tem sentido no arquivo mais externo do main()\n"
#: debug.c:3375
#, c-format
msgid "Can't find specified location in function `%s'\n"
-msgstr "Não foi possível encontrar a localização especificada na função \"%s\"\n"
+msgstr ""
+"Não foi possível encontrar a localização especificada na função \"%s\"\n"
#: debug.c:3383
#, c-format
@@ -1794,7 +1894,8 @@ msgstr "linha fonte inválida %d no arquivo \"%s\""
#: debug.c:3398
#, c-format
msgid "Can't find specified location %d in file `%s'\n"
-msgstr "Não foi possível encontrar a localização %d especificada no arquivo \"%s\"\n"
+msgstr ""
+"Não foi possível encontrar a localização %d especificada no arquivo \"%s\"\n"
#: debug.c:3430
#, c-format
@@ -1977,13 +2078,16 @@ msgstr "load_ext: não foi possível abrir a biblioteca \"%s\" (%s)\n"
#: ext.c:66
#, c-format
-msgid "load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
-msgstr "load_ext: biblioteca \"%s\": não define \"plugin_is_GPL_compatible\" (%s)\n"
+msgid ""
+"load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
+msgstr ""
+"load_ext: biblioteca \"%s\": não define \"plugin_is_GPL_compatible\" (%s)\n"
#: ext.c:72
#, c-format
msgid "load_ext: library `%s': cannot call function `%s' (%s)\n"
-msgstr "load_ext: biblioteca \"%s\": não foi possível chamar a função \"%s\" (%s)\n"
+msgstr ""
+"load_ext: biblioteca \"%s\": não foi possível chamar a função \"%s\" (%s)\n"
#: ext.c:76
#, c-format
@@ -2012,7 +2116,9 @@ msgstr "make_builtin: nome da função \"%s\" definido anteriormente"
#: ext.c:130
#, c-format
msgid "make_builtin: can't use gawk built-in `%s' as function name"
-msgstr "make_builtin: não é possível usar \"%s\" intrínseco do gawk como nome de função"
+msgstr ""
+"make_builtin: não é possível usar \"%s\" intrínseco do gawk como nome de "
+"função"
#: ext.c:133
#, c-format
@@ -2022,7 +2128,8 @@ msgstr "make_builtin: quantidade negativa de argumentos para função \"%s\""
#: ext.c:209
#, c-format
msgid "function `%s': argument #%d: attempt to use scalar as an array"
-msgstr "função \"%s\": argumento nº %d: tentativa de usar escalar como um vetor"
+msgstr ""
+"função \"%s\": argumento nº %d: tentativa de usar escalar como um vetor"
#: ext.c:213
#, c-format
@@ -2149,12 +2256,15 @@ msgstr "inplace_begin: esperava 2 argumentos, mas foi chamado com %d"
#: extension/inplace.c:137
msgid "inplace_begin: cannot retrieve 1st argument as a string filename"
-msgstr "inplace_begin: não foi possível obter 1º argumento como uma string de nome de arquivo"
+msgstr ""
+"inplace_begin: não foi possível obter 1º argumento como uma string de nome "
+"de arquivo"
#: extension/inplace.c:145
#, c-format
msgid "inplace_begin: disabling in-place editing for invalid FILENAME `%s'"
-msgstr "inplace_begin: desabilitando edição in-loco para FILENAME inválido \"%s\""
+msgstr ""
+"inplace_begin: desabilitando edição in-loco para FILENAME inválido \"%s\""
# Iniciei a mensagem de erro com letra minúscula para combinar com as demais -- Rafael
#: extension/inplace.c:152
@@ -2199,7 +2309,9 @@ msgstr "inplace_end: esperava 2 argumentos, mas foi chamado com %d"
#: extension/inplace.c:214
msgid "inplace_end: cannot retrieve 1st argument as a string filename"
-msgstr "inplace_end: não foi possível obter 1º argumento como uma string de nome de arquivo"
+msgstr ""
+"inplace_end: não foi possível obter 1º argumento como uma string de nome de "
+"arquivo"
#: extension/inplace.c:221
msgid "inplace_end: in-place editing not active"
@@ -2299,7 +2411,8 @@ msgstr "read_array: set_array_element falhou\n"
#: extension/rwarray.c:489
#, c-format
msgid "treating recovered value with unknown type code %d as a string"
-msgstr "tratando valor recuperado com código de tipo desconhecido %d como uma string"
+msgstr ""
+"tratando valor recuperado com código de tipo desconhecido %d como uma string"
#: extension/time.c:141
msgid "gettimeofday: not supported on this platform"
@@ -2343,11 +2456,13 @@ msgstr "split: não é possível usar o mesmo vetor para segundo e quarto args"
#: field.c:984
msgid "split: cannot use a subarray of second arg for fourth arg"
-msgstr "split: não é possível usar um subvetor do segundo arg para o quarto arg"
+msgstr ""
+"split: não é possível usar um subvetor do segundo arg para o quarto arg"
#: field.c:987
msgid "split: cannot use a subarray of fourth arg for second arg"
-msgstr "split: não é possível usar um subvetor do quarto arg para o segundo arg"
+msgstr ""
+"split: não é possível usar um subvetor do quarto arg para o segundo arg"
#: field.c:1021
msgid "split: null string for third arg is a gawk extension"
@@ -2367,15 +2482,18 @@ msgstr "patsplit: terceiro argumento não é um vetor"
#: field.c:1076
msgid "patsplit: cannot use the same array for second and fourth args"
-msgstr "patsplit: não é possível usar o mesmo vetor para segundo e quarto argumentos"
+msgstr ""
+"patsplit: não é possível usar o mesmo vetor para segundo e quarto argumentos"
#: field.c:1081
msgid "patsplit: cannot use a subarray of second arg for fourth arg"
-msgstr "patsplit: não é possível usar um subvetor do segundo arg para o quarto arg"
+msgstr ""
+"patsplit: não é possível usar um subvetor do segundo arg para o quarto arg"
#: field.c:1084
msgid "patsplit: cannot use a subarray of fourth arg for second arg"
-msgstr "patsplit: não é possível usar um subvetor do quarto arg para o segundo arg"
+msgstr ""
+"patsplit: não é possível usar um subvetor do quarto arg para o segundo arg"
#: field.c:1134
msgid "`FIELDWIDTHS' is a gawk extension"
@@ -2421,8 +2539,12 @@ msgstr "awk_value_to_node: tipo de número inválido \"%d\""
#: gawkapi.c:520
#, c-format
-msgid "node_to_awk_value: detected invalid numeric flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value: detectada combinação inválida de flags numéricas \"%s\"; por favor, faça um relato de erro."
+msgid ""
+"node_to_awk_value: detected invalid numeric flags combination `%s'; please "
+"file a bug report."
+msgstr ""
+"node_to_awk_value: detectada combinação inválida de flags numéricas \"%s\"; "
+"por favor, faça um relato de erro."
#: gawkapi.c:548
msgid "node_to_awk_value: received null node"
@@ -2434,8 +2556,12 @@ msgstr "node_to_awk_value: recebeu valor nulo"
#: gawkapi.c:607 gawkapi.c:641 gawkapi.c:668 gawkapi.c:701
#, c-format
-msgid "node_to_awk_value detected invalid flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value detectou combinação inválida de flags \"%s\"; por favor, faça um relato de erro."
+msgid ""
+"node_to_awk_value detected invalid flags combination `%s'; please file a bug "
+"report."
+msgstr ""
+"node_to_awk_value detectou combinação inválida de flags \"%s\"; por favor, "
+"faça um relato de erro."
#: gawkapi.c:1072
msgid "remove_element: received null array"
@@ -2448,12 +2574,14 @@ msgstr "remove_element: recebeu índice nulo"
#: gawkapi.c:1207
#, c-format
msgid "api_flatten_array_typed: could not convert index %d to %s\n"
-msgstr "api_flatten_array_typed: não foi possível converter o índice %d para %s\n"
+msgstr ""
+"api_flatten_array_typed: não foi possível converter o índice %d para %s\n"
#: gawkapi.c:1212
#, c-format
msgid "api_flatten_array_typed: could not convert value %d to %s\n"
-msgstr "api_flatten_array_typed: não foi possível converter o valor %d para %s\n"
+msgstr ""
+"api_flatten_array_typed: não foi possível converter o valor %d para %s\n"
#: gawkapi.c:1308 gawkapi.c:1324
msgid "api_get_mpfr: MPFR not supported"
@@ -2466,7 +2594,8 @@ msgstr "não foi possível localizar o fim da regra BEGINFILE"
#: gawkapi.c:1409
#, c-format
msgid "cannot open unrecognized file type `%s' for `%s'"
-msgstr "não foi possível abrir tipo de arquivo não reconhecido \"%s\" para \"%s\""
+msgstr ""
+"não foi possível abrir tipo de arquivo não reconhecido \"%s\" para \"%s\""
#: io.c:426
#, c-format
@@ -2499,8 +2628,11 @@ msgstr "expressão para o redirecionamento \"%s\" tem valor nulo na string"
#: io.c:796
#, c-format
-msgid "filename `%.*s' for `%s' redirection may be result of logical expression"
-msgstr "nome de arquivo \"%.*s\" para redirecionamento \"%s\" pode ser resultado de expressão lógica"
+msgid ""
+"filename `%.*s' for `%s' redirection may be result of logical expression"
+msgstr ""
+"nome de arquivo \"%.*s\" para redirecionamento \"%s\" pode ser resultado de "
+"expressão lógica"
#: io.c:844
#, c-format
@@ -2524,13 +2656,17 @@ msgstr "não foi possível abrir pipe \"%s\" para entrada (%s)"
#: io.c:950
#, c-format
-msgid "get_file socket creation not supported on this platform for `%s' with fd %d"
-msgstr "sem suporte à criação de soquete de get_file nesta de plataforma para \"%s\" com fd %d"
+msgid ""
+"get_file socket creation not supported on this platform for `%s' with fd %d"
+msgstr ""
+"sem suporte à criação de soquete de get_file nesta de plataforma para \"%s\" "
+"com fd %d"
#: io.c:961
#, c-format
msgid "can't open two way pipe `%s' for input/output (%s)"
-msgstr "não foi possível abrir pipe bidirecional \"%s\" para entrada/saída (%s)"
+msgstr ""
+"não foi possível abrir pipe bidirecional \"%s\" para entrada/saída (%s)"
#: io.c:1048
#, c-format
@@ -2543,8 +2679,11 @@ msgid "can't redirect to `%s' (%s)"
msgstr "não foi possível redirecionar para \"%s\" (%s)"
#: io.c:1153
-msgid "reached system limit for open files: starting to multiplex file descriptors"
-msgstr "alcançado limite do sistema para arquivos abertos; começando a multiplexar descritores de arquivos"
+msgid ""
+"reached system limit for open files: starting to multiplex file descriptors"
+msgstr ""
+"alcançado limite do sistema para arquivos abertos; começando a multiplexar "
+"descritores de arquivos"
#: io.c:1169
#, c-format
@@ -2571,7 +2710,9 @@ msgstr "fechamento de redirecionamento que nunca foi aberto"
#: io.c:1325
#, c-format
msgid "close: redirection `%s' not opened with `|&', second argument ignored"
-msgstr "close: redirecionamento \"%s\" não foi aberto com \"|&\", segundo argumento ignorado"
+msgstr ""
+"close: redirecionamento \"%s\" não foi aberto com \"|&\", segundo argumento "
+"ignorado"
#: io.c:1342
#, c-format
@@ -2638,166 +2779,176 @@ msgstr "descarga de coprocesso de pipe para \"%s\" falhou (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "descarga de arquivo de \"%s\" falhou (%s)."
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "porta local %s inválida em \"/inet\": %s"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "porta local %s inválida em \"/inet\""
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "informação de host e porta remotos (%s, %s) inválida: %s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "informação de host e porta remotos (%s, %s) inválida"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "Não há suporte a comunicações TCP/IP"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "não foi possível abrir \"%s\", modo \"%s\""
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "falha ao fechar pty mestre (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "falha ao fechar stdout em filho (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr "falha ao mover pty escrava para stdout em filho (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "falha ao fechar stdin em filho (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr "falha ao mover pty escrava para stdin em filho (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "falha ao fechar pty escrava (%s)"
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr "não foi possível criar processo filho ou abrir pty"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "falha ao mover pipe para stdout em filho (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr "falha ao mover pipe para stdin em filho (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "falha ao restaurar stdout em processo pai\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "falha ao restaurar stdin em processo pai\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "falha ao fechar pipe (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "sem suporte a \"|&\""
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "não foi possível abrir pipe \"%s\" (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "não foi possível criar processo filho para \"%s\" (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
-msgstr "getline: tentativa de ler de lado de leitura fechado de pipe bidirecional"
+msgstr ""
+"getline: tentativa de ler de lado de leitura fechado de pipe bidirecional"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: recebido ponteiro NULL"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
-msgstr "o analisador de entrada \"%s\" conflita com outro analisador de entrada previamente instalado \"%s\""
+msgstr ""
+"o analisador de entrada \"%s\" conflita com outro analisador de entrada "
+"previamente instalado \"%s\""
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "analisador de entrada \"%s\": falha ao abrir \"%s\""
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: recebido ponteiro NULL"
-#: io.c:3201
+#: io.c:3214
#, c-format
-msgid "output wrapper `%s' conflicts with previously installed output wrapper `%s'"
-msgstr "wrapper de saída \"%s\" conflita com outro wrapper previamente instalado \"%s\""
+msgid ""
+"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
+msgstr ""
+"wrapper de saída \"%s\" conflita com outro wrapper previamente instalado \"%s"
+"\""
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "wrapper de saída \"%s\": falha ao abrir \"%s\""
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: recebido ponteiro NULL"
-#: io.c:3258
+#: io.c:3271
#, c-format
-msgid "two-way processor `%s' conflicts with previously installed two-way processor `%s'"
-msgstr "processador bidirecional \"%s\" conflita com processador bidirecional previamente instalado \"%s\""
+msgid ""
+"two-way processor `%s' conflicts with previously installed two-way processor "
+"`%s'"
+msgstr ""
+"processador bidirecional \"%s\" conflita com processador bidirecional "
+"previamente instalado \"%s\""
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "processador bidirecional \"%s\" falhou ao abrir \"%s\""
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "arquivo de dados \"%s\" está vazio"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "não foi possível alocar mais memória de entrada"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "valor de múltiplos caracteres para \"RS\" é uma extensão do gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "Não há suporte a comunicação IPv6"
@@ -3104,38 +3255,38 @@ msgstr "exceção de ponto flutuante"
msgid "fatal error: internal error"
msgstr "erro fatal: erro interno"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "erro fatal: erro interno: falha de segmentação"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "erro fatal: erro interno: estouro de pilha"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "nenhum descritor pré-aberto %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "não foi possível pré-abrir /dev/null para descritor %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "argumento vazio para \"-e/--source\" ignorado"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M ignorado: suporte a MPFR/GMP não compilado"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: opção desconhecida \"-W %s\", ignorada\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: a opção exige um argumento -- %c\n"
@@ -3218,8 +3369,12 @@ msgstr "nenhum dígito hexa na sequência de escape \"\\x\""
#: node.c:611
#, c-format
-msgid "hex escape \\x%.*s of %d characters probably not interpreted the way you expect"
-msgstr "escape hexa \\x%.*s de %d caracteres provavelmente não interpretado na forma que você esperava"
+msgid ""
+"hex escape \\x%.*s of %d characters probably not interpreted the way you "
+"expect"
+msgstr ""
+"escape hexa \\x%.*s de %d caracteres provavelmente não interpretado na forma "
+"que você esperava"
#: node.c:626
#, c-format
@@ -3227,18 +3382,25 @@ msgid "escape sequence `\\%c' treated as plain `%c'"
msgstr "sequência de escape \"\\%c\" tratada como \"%c\" normal"
#: node.c:762
-msgid "Invalid multibyte data detected. There may be a mismatch between your data and your locale."
-msgstr "Dados com múltiplos bytes inválidos detectados. Pode haver uma incompatibilidade entre seus dados e seu \"locale\"."
+msgid ""
+"Invalid multibyte data detected. There may be a mismatch between your data "
+"and your locale."
+msgstr ""
+"Dados com múltiplos bytes inválidos detectados. Pode haver uma "
+"incompatibilidade entre seus dados e seu \"locale\"."
#: posix/gawkmisc.c:177
#, c-format
msgid "%s %s `%s': could not get fd flags: (fcntl F_GETFD: %s)"
-msgstr "%s %s \"%s\": não foi possível obter flags do descritor: (fcntl F_GETFD: %s)"
+msgstr ""
+"%s %s \"%s\": não foi possível obter flags do descritor: (fcntl F_GETFD: %s)"
#: posix/gawkmisc.c:189
#, c-format
msgid "%s %s `%s': could not set close-on-exec: (fcntl F_SETFD: %s)"
-msgstr "%s %s \"%s\": não foi possível definir fechar-ao-executar: (fcntl F_SETFD: %s)"
+msgstr ""
+"%s %s \"%s\": não foi possível definir fechar-ao-executar: (fcntl F_SETFD: "
+"%s)"
#: profile.c:97
#, c-format
@@ -3476,7 +3638,8 @@ msgstr "Nenhuma expressão regular anterior"
#: symbol.c:687
#, c-format
msgid "function `%s': can't use function `%s' as a parameter name"
-msgstr "função \"%s\": não é possível usar a função \"%s\" como um nome de parâmetro"
+msgstr ""
+"função \"%s\": não é possível usar a função \"%s\" como um nome de parâmetro"
#: symbol.c:817
msgid "can not pop main context"
@@ -3503,11 +3666,14 @@ msgstr "não foi possível trazer contexto principal"
#~ msgid "extension: cannot open library `%s' (%s)"
#~ msgstr "extension: não foi possível abrir a biblioteca \"%s\" (%s)"
-#~ msgid "extension: library `%s': does not define `plugin_is_GPL_compatible' (%s)"
-#~ msgstr "extension: biblioteca \"%s\": não define \"plugin_is_GPL_compatible\" (%s)"
+#~ msgid ""
+#~ "extension: library `%s': does not define `plugin_is_GPL_compatible' (%s)"
+#~ msgstr ""
+#~ "extension: biblioteca \"%s\": não define \"plugin_is_GPL_compatible\" (%s)"
#~ msgid "extension: library `%s': cannot call function `%s' (%s)"
-#~ msgstr "extension: biblioteca \"%s\": não foi possível chamar a função \"%s\" (%s)"
+#~ msgstr ""
+#~ "extension: biblioteca \"%s\": não foi possível chamar a função \"%s\" (%s)"
#~ msgid "extension: missing function name"
#~ msgstr "extension: faltando nome de função"
@@ -3525,7 +3691,9 @@ msgstr "não foi possível trazer contexto principal"
#~ msgstr "extension: nome da função \"%s\" definido anteriormente"
#~ msgid "extension: can't use gawk built-in `%s' as function name"
-#~ msgstr "extension: não é possível usar \"%s\" intrínseco do gawk como nome de função"
+#~ msgstr ""
+#~ "extension: não é possível usar \"%s\" intrínseco do gawk como nome de "
+#~ "função"
#~ msgid "chdir: called with incorrect number of arguments, expecting 1"
#~ msgstr "chdir: chamada com número incorreto de argumentos, esperava 1"
@@ -3635,8 +3803,10 @@ msgstr "não foi possível trazer contexto principal"
#~ msgid "xor(%lf, %lf): fractional values will be truncated"
#~ msgstr "xor(%lf, %lf): valores fracionários serão truncados"
-#~ msgid "for loop: array `%s' changed size from %ld to %ld during loop execution"
-#~ msgstr "loop for: vetor `%s' mudou de tamanho de %ld para %ld durante a execução"
+#~ msgid ""
+#~ "for loop: array `%s' changed size from %ld to %ld during loop execution"
+#~ msgstr ""
+#~ "loop for: vetor `%s' mudou de tamanho de %ld para %ld durante a execução"
#~ msgid "`break' outside a loop is not portable"
#~ msgstr "`break' fora de um loop não é portável"
@@ -3656,8 +3826,12 @@ msgstr "não foi possível trazer contexto principal"
#~ msgid "statement has no effect"
#~ msgstr "declaração não tem efeito"
-#~ msgid "concatenation: side effects in one expression have changed the length of another!"
-#~ msgstr "concatenação: efeitos colaterais em um contexto mudaram o comprimento de outro!"
+#~ msgid ""
+#~ "concatenation: side effects in one expression have changed the length of "
+#~ "another!"
+#~ msgstr ""
+#~ "concatenação: efeitos colaterais em um contexto mudaram o comprimento de "
+#~ "outro!"
#~ msgid "assignment used in conditional context"
#~ msgstr "atribuição usada em contexto condicional"
@@ -3699,7 +3873,8 @@ msgstr "não foi possível trazer contexto principal"
#~ msgstr "infelizmente, o servidor de /inet/raw não está concluído"
#~ msgid "no (known) protocol supplied in special filename `%s'"
-#~ msgstr "nenhum protocolo (conhecido) fornecido em nome de arquivo especial `%s'"
+#~ msgstr ""
+#~ "nenhum protocolo (conhecido) fornecido em nome de arquivo especial `%s'"
#~ msgid "special file name `%s' is incomplete"
#~ msgstr "nome de arquivo especial `%s' está incompleto"
@@ -3767,7 +3942,9 @@ msgstr "não foi possível trazer contexto principal"
#~ msgstr "tipo inesperado %s em prec_level"
#~ msgid "regex match failed, not enough memory to match string \"%.*s%s\""
-#~ msgstr "busca por exp. reg. falhou, memória insuficiente para testar string \"%.*s%s\""
+#~ msgstr ""
+#~ "busca por exp. reg. falhou, memória insuficiente para testar string \"%.*s"
+#~ "%s\""
#~ msgid "delete: illegal use of variable `%s' as array"
#~ msgstr "delete: uso ilegal da variável `%s' como vetor"
diff --git a/po/sv.gmo b/po/sv.gmo
index b6574ae4..a7aa8d20 100644
--- a/po/sv.gmo
+++ b/po/sv.gmo
Binary files differ
diff --git a/po/sv.po b/po/sv.po
index 679b5308..8447a0a5 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.2.0e\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2018-01-30 10:02+0100\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -79,19 +79,27 @@ msgstr "asorti: första argumentet är inte en vektor"
#: array.c:849
msgid "asort: cannot use a subarray of first arg for second arg"
-msgstr "asort: det går inte att använda en delvektor av första argumentet som andra argument"
+msgstr ""
+"asort: det går inte att använda en delvektor av första argumentet som andra "
+"argument"
#: array.c:850
msgid "asorti: cannot use a subarray of first arg for second arg"
-msgstr "asorti: det går inte att använda en delvektor av första argumentet som andra argument"
+msgstr ""
+"asorti: det går inte att använda en delvektor av första argumentet som andra "
+"argument"
#: array.c:855
msgid "asort: cannot use a subarray of second arg for first arg"
-msgstr "asort: det går inte att använda en delvektor av andra argumentet som första argument"
+msgstr ""
+"asort: det går inte att använda en delvektor av andra argumentet som första "
+"argument"
#: array.c:856
msgid "asorti: cannot use a subarray of second arg for first arg"
-msgstr "asorti: det går inte att använda en delvektor av andra argumentet som första argument"
+msgstr ""
+"asorti: det går inte att använda en delvektor av andra argumentet som första "
+"argument"
#: array.c:1324
#, c-format
@@ -221,7 +229,8 @@ msgstr "indirekta funktionsanrop är en gawk-utökning"
#: awkgram.y:1854
#, c-format
msgid "can not use special variable `%s' for indirect function call"
-msgstr "det går inte att använda specialvariabeln ”%s” för indirekta fuktionsanrop"
+msgstr ""
+"det går inte att använda specialvariabeln ”%s” för indirekta fuktionsanrop"
#: awkgram.y:1880
#, c-format
@@ -232,11 +241,11 @@ msgstr "försök att använda en icke-funktion ”%s” i ett funktionsanrop"
msgid "invalid subscript expression"
msgstr "ogiltig indexuttryck"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "varning: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "ödesdigert: "
@@ -320,7 +329,8 @@ msgstr "oavslutat reguljärt uttryck slutar med ”\\” i slutet av filen"
#: awkgram.y:3516
#, c-format
msgid "%s: %d: tawk regex modifier `/.../%c' doesn't work in gawk"
-msgstr "%s: %d: tawk-modifierare för reguljära uttryck ”/.../%c” fungerar inte i gawk"
+msgstr ""
+"%s: %d: tawk-modifierare för reguljära uttryck ”/.../%c” fungerar inte i gawk"
#: awkgram.y:3520
#, c-format
@@ -407,7 +417,8 @@ msgstr "%d är ett ogiltigt antal argument för %s"
#: awkgram.y:4374
#, c-format
msgid "%s: string literal as last arg of substitute has no effect"
-msgstr "%s: bokstavlig sträng som sista argument till ersättning har ingen effekt"
+msgstr ""
+"%s: bokstavlig sträng som sista argument till ersättning har ingen effekt"
#: awkgram.y:4379
#, c-format
@@ -424,11 +435,15 @@ msgstr "close: andra argumentet är en gawk-utökning"
#: awkgram.y:4545
msgid "use of dcgettext(_\"...\") is incorrect: remove leading underscore"
-msgstr "användandet av dcgettext(_\"...\") är felaktigt: ta bort det inledande understrykningstecknet"
+msgstr ""
+"användandet av dcgettext(_\"...\") är felaktigt: ta bort det inledande "
+"understrykningstecknet"
#: awkgram.y:4560
msgid "use of dcngettext(_\"...\") is incorrect: remove leading underscore"
-msgstr "användandet av dcngettext(_\"...\") är felaktigt: ta bort det inledande understrykningstecknet"
+msgstr ""
+"användandet av dcngettext(_\"...\") är felaktigt: ta bort det inledande "
+"understrykningstecknet"
#: awkgram.y:4579
msgid "index: regexp constant as second argument is not allowed"
@@ -474,7 +489,9 @@ msgstr "funktionen ”%s”: kan inte använda funktionsnamn som parameternamn"
#: awkgram.y:4851
#, c-format
msgid "function `%s': can't use special variable `%s' as a function parameter"
-msgstr "funktionen ”%s”: det går inte att använda specialvariabeln ”%s” som en funktionsparameter"
+msgstr ""
+"funktionen ”%s”: det går inte att använda specialvariabeln ”%s” som en "
+"funktionsparameter"
#: awkgram.y:4859
#, c-format
@@ -515,8 +532,11 @@ msgid "division by zero attempted in `%%'"
msgstr "försökte dividera med noll i ”%%”"
#: awkgram.y:5552
-msgid "cannot assign a value to the result of a field post-increment expression"
-msgstr "kan inte tilldela ett värde till uttryck som är en efterinkrementering av ett fält"
+msgid ""
+"cannot assign a value to the result of a field post-increment expression"
+msgstr ""
+"kan inte tilldela ett värde till uttryck som är en efterinkrementering av "
+"ett fält"
#: awkgram.y:5555
#, c-format
@@ -548,12 +568,14 @@ msgstr "exp: argumentet %g är inte inom tillåten gräns"
#: builtin.c:245
#, c-format
msgid "fflush: cannot flush: pipe `%.*s' opened for reading, not writing"
-msgstr "fflush: kan inte spola: röret ”%.*s” är öppnat för läsning, inte skrivning"
+msgstr ""
+"fflush: kan inte spola: röret ”%.*s” är öppnat för läsning, inte skrivning"
#: builtin.c:248
#, c-format
msgid "fflush: cannot flush: file `%.*s' opened for reading, not writing"
-msgstr "fflush: kan inte spola: filen ”%.*s” är öppnad för läsning, inte skrivning"
+msgstr ""
+"fflush: kan inte spola: filen ”%.*s” är öppnad för läsning, inte skrivning"
#: builtin.c:259
#, c-format
@@ -641,7 +663,8 @@ msgstr "ödesdigert: ”$” tillåts inte efter en punkt i formatet"
#: builtin.c:949
msgid "fatal: no `$' supplied for positional field width or precision"
-msgstr "ödesdigert: inget ”$” bifogat för positionsangiven fältbredd eller precision"
+msgstr ""
+"ödesdigert: inget ”$” bifogat för positionsangiven fältbredd eller precision"
#: builtin.c:1019
msgid "`l' is meaningless in awk formats; ignored"
@@ -685,7 +708,8 @@ msgstr "[s]printf: värdet %g är utanför ”%%%c”-formatets giltiga interval
#: builtin.c:1579
#, c-format
msgid "ignoring unknown format specifier character `%c': no argument converted"
-msgstr "ignorerar okänt formatspecifikationstecken ”%c”: inget argument konverterat"
+msgstr ""
+"ignorerar okänt formatspecifikationstecken ”%c”: inget argument konverterat"
#: builtin.c:1584
msgid "fatal: not enough arguments to satisfy format string"
@@ -765,8 +789,11 @@ msgstr "substr: startindex %g är bortom strängens slut"
#: builtin.c:1863
#, c-format
-msgid "substr: length %g at start index %g exceeds length of first argument (%lu)"
-msgstr "substr: längden %g vid startindex %g överskrider det första argumentets längd (%lu)"
+msgid ""
+"substr: length %g at start index %g exceeds length of first argument (%lu)"
+msgstr ""
+"substr: längden %g vid startindex %g överskrider det första argumentets "
+"längd (%lu)"
#: builtin.c:1936
msgid "strftime: format value in PROCINFO[\"strftime\"] has numeric type"
@@ -1004,8 +1031,11 @@ msgstr "intdiv: försökte dividera med noll"
#: builtin.c:4080
#, c-format
-msgid "typeof detected invalid flags combination `%s'; please file a bug report."
-msgstr "typeof upptäckte en ogiltig flaggkompination ”%s”, skicka gärna en felrapport."
+msgid ""
+"typeof detected invalid flags combination `%s'; please file a bug report."
+msgstr ""
+"typeof upptäckte en ogiltig flaggkompination ”%s”, skicka gärna en "
+"felrapport."
#: builtin.c:4095
#, c-format
@@ -1044,7 +1074,9 @@ msgstr "save \"%s\": kommandot inte tillåtet."
#: command.y:341
msgid "Can't use command `commands' for breakpoint/watchpoint commands"
-msgstr "Det går inte att använda kommandot ”commands” i brytpunkts-/observationspunktskommandon"
+msgstr ""
+"Det går inte att använda kommandot ”commands” i brytpunkts-/"
+"observationspunktskommandon"
#: command.y:343
msgid "no breakpoint/watchpoint has been set yet"
@@ -1118,11 +1150,16 @@ msgid "non-zero integer value"
msgstr "heltalsvärde som inte är noll"
#: command.y:819
-msgid "backtrace [N] - print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "backtrace [N] — skriv ett spår över alla eller N innersta (yttersta om N < 0) ramar."
+msgid ""
+"backtrace [N] - print trace of all or N innermost (outermost if N < 0) "
+"frames."
+msgstr ""
+"backtrace [N] — skriv ett spår över alla eller N innersta (yttersta om N < "
+"0) ramar."
#: command.y:821
-msgid "break [[filename:]N|function] - set breakpoint at the specified location."
+msgid ""
+"break [[filename:]N|function] - set breakpoint at the specified location."
msgstr "break [[filename:]N|function] — sätt brytpunkt på den angivna platsen."
#: command.y:823
@@ -1130,12 +1167,18 @@ msgid "clear [[filename:]N|function] - delete breakpoints previously set."
msgstr "clear [[filnamn:]N|funktion] — radera tidigare satta brytpunkter."
#: command.y:825
-msgid "commands [num] - starts a list of commands to be executed at a breakpoint(watchpoint) hit."
-msgstr "commands [num] — startar en lista av kommandon att köra när en brytpunkt(observationspunkt) träffas."
+msgid ""
+"commands [num] - starts a list of commands to be executed at a "
+"breakpoint(watchpoint) hit."
+msgstr ""
+"commands [num] — startar en lista av kommandon att köra när en "
+"brytpunkt(observationspunkt) träffas."
#: command.y:827
msgid "condition num [expr] - set or clear breakpoint or watchpoint condition."
-msgstr "condition num [uttr] — sätt eller töm en brytpunkts eller observationspunkts villkor."
+msgstr ""
+"condition num [uttr] — sätt eller töm en brytpunkts eller observationspunkts "
+"villkor."
#: command.y:829
msgid "continue [COUNT] - continue program being debugged."
@@ -1151,7 +1194,8 @@ msgstr "disable [brytpunkter] [intervall] — avaktivera angivna brytpunkter."
#: command.y:835
msgid "display [var] - print value of variable each time the program stops."
-msgstr "display [var] — skriv ut värdet på variabeln varje gång programmet stoppar."
+msgstr ""
+"display [var] — skriv ut värdet på variabeln varje gång programmet stoppar."
#: command.y:837
msgid "down [N] - move N frames down the stack."
@@ -1163,7 +1207,8 @@ msgstr "dump [filnamn] — skriv instruktioner till filen eller standard ut."
#: command.y:841
msgid "enable [once|del] [breakpoints] [range] - enable specified breakpoints."
-msgstr "enable [once|del] [brytpunkter] [intervall] — aktivera angivna brytpunkter."
+msgstr ""
+"enable [once|del] [brytpunkter] [intervall] — aktivera angivna brytpunkter."
#: command.y:843
msgid "end - end a list of commands or awk statements."
@@ -1187,15 +1232,21 @@ msgstr "frame [N] — välj och skriv ut stackram nummer N."
#: command.y:853
msgid "help [command] - print list of commands or explanation of command."
-msgstr "help [kommando] — skriv listan av kommandon eller en förklaring av kommando."
+msgstr ""
+"help [kommando] — skriv listan av kommandon eller en förklaring av kommando."
#: command.y:855
msgid "ignore N COUNT - set ignore-count of breakpoint number N to COUNT."
-msgstr "ignore N ANTAL — sätt ignoreringsantal på brytpunkt nummer N till ANTAL."
+msgstr ""
+"ignore N ANTAL — sätt ignoreringsantal på brytpunkt nummer N till ANTAL."
#: command.y:857
-msgid "info topic - source|sources|variables|functions|break|frame|args|locals|display|watch."
-msgstr "info topic — source|sources|variables|functions|break|frame|args|locals|display|watch."
+msgid ""
+"info topic - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
+msgstr ""
+"info topic — source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
#: command.y:859
msgid "list [-|+|[filename:]lineno|function|range] - list specified line(s)."
@@ -1206,7 +1257,8 @@ msgid "next [COUNT] - step program, proceeding through subroutine calls."
msgstr "next [ANTAL] — stega programmet, passera genom subrutinanrop."
#: command.y:863
-msgid "nexti [COUNT] - step one instruction, but proceed through subroutine calls."
+msgid ""
+"nexti [COUNT] - step one instruction, but proceed through subroutine calls."
msgstr "nexti [ANTAL] — stega en instruktion, men passera genom subrutinanrop."
#: command.y:865
@@ -1242,8 +1294,11 @@ msgid "set var = value - assign value to a scalar variable."
msgstr "set var = värde — tilldela värde till en skalär variabel."
#: command.y:883
-msgid "silent - suspends usual message when stopped at a breakpoint/watchpoint."
-msgstr "silent — undertrycker normala meddelanden vid stopp på en brytpunkt/observationspunkt. "
+msgid ""
+"silent - suspends usual message when stopped at a breakpoint/watchpoint."
+msgstr ""
+"silent — undertrycker normala meddelanden vid stopp på en brytpunkt/"
+"observationspunkt. "
#: command.y:885
msgid "source file - execute commands from file."
@@ -1270,8 +1325,12 @@ msgid "undisplay [N] - remove variable(s) from automatic display list."
msgstr "undisplay [N] — ta bort variabler från listan över automatiskt visade."
#: command.y:897
-msgid "until [[filename:]N|function] - execute until program reaches a different line or line N within current frame."
-msgstr "until [[filenamn:]N|funktion] — kör tills programmet når en annan rad eller rad N inom aktuell ram."
+msgid ""
+"until [[filename:]N|function] - execute until program reaches a different "
+"line or line N within current frame."
+msgstr ""
+"until [[filenamn:]N|funktion] — kör tills programmet når en annan rad eller "
+"rad N inom aktuell ram."
#: command.y:899
msgid "unwatch [N] - remove variable(s) from watch list."
@@ -1286,10 +1345,14 @@ msgid "watch var - set a watchpoint for a variable."
msgstr "watch var — sätt en observationspunkt för en variabel."
#: command.y:905
-msgid "where [N] - (same as backtrace) print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "where [N] — (samma som backtrace) skriv ett spår över alla eller N innersta (yttersta om N < 0) ramar."
+msgid ""
+"where [N] - (same as backtrace) print trace of all or N innermost (outermost "
+"if N < 0) frames."
+msgstr ""
+"where [N] — (samma som backtrace) skriv ett spår över alla eller N innersta "
+"(yttersta om N < 0) ramar."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "fel: "
@@ -1577,7 +1640,8 @@ msgstr "försök att använda ett skalärt värde som vektor"
#: debug.c:1858
#, c-format
msgid "Watchpoint %d deleted because parameter is out of scope.\n"
-msgstr "Observationspunkt %d raderad för att parametern är utanför sin räckvidd.\n"
+msgstr ""
+"Observationspunkt %d raderad för att parametern är utanför sin räckvidd.\n"
#: debug.c:1869
#, c-format
@@ -1611,7 +1675,9 @@ msgstr "Ogiltigt ramnummer"
#: debug.c:2202
#, c-format
msgid "Note: breakpoint %d (enabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Observera: brytpunkt %d (aktiverad, ignorera följande %ld träffar), är också satt vid %s:%d"
+msgstr ""
+"Observera: brytpunkt %d (aktiverad, ignorera följande %ld träffar), är också "
+"satt vid %s:%d"
#: debug.c:2209
#, c-format
@@ -1621,7 +1687,9 @@ msgstr "Observera: brytpunkt %d (aktiverad), är också satt vid %s:%d"
#: debug.c:2216
#, c-format
msgid "Note: breakpoint %d (disabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Observera: brytpunkt %d (avaktiverad, ignorera följande %ld träffar), är också satt vid %s:%d"
+msgstr ""
+"Observera: brytpunkt %d (avaktiverad, ignorera följande %ld träffar), är "
+"också satt vid %s:%d"
#: debug.c:2223
#, c-format
@@ -1820,7 +1888,8 @@ msgstr "”until” är inte meningsfullt med icke lokalt hopp ”%s”\n"
#: debug.c:4237
msgid "\t------[Enter] to continue or q [Enter] to quit------"
-msgstr "\t------[Retur] för att fortsätta eller a [Retur] för att avsluta------"
+msgstr ""
+"\t------[Retur] för att fortsätta eller a [Retur] för att avsluta------"
#: debug.c:4238
msgid "q"
@@ -1847,7 +1916,8 @@ msgstr "”%s” är inte tillåtet i det aktuella sammanhanget; satsen ignorera
#: debug.c:5442
msgid "`return' not allowed in current context; statement ignored"
-msgstr "”return” är inte tillåtet i det aktuella sammanhanget; satsen ignoreras"
+msgstr ""
+"”return” är inte tillåtet i det aktuella sammanhanget; satsen ignoreras"
#: debug.c:5657
#, c-format
@@ -1972,8 +2042,10 @@ msgstr "load_ext: kan inte öppna biblioteket ”%s” (%s)\n"
#: ext.c:66
#, c-format
-msgid "load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
-msgstr "load_ext: biblioteket ”%s”: definierar inte ”plugin_is_GPL_compatible” (%s)\n"
+msgid ""
+"load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
+msgstr ""
+"load_ext: biblioteket ”%s”: definierar inte ”plugin_is_GPL_compatible” (%s)\n"
#: ext.c:72
#, c-format
@@ -1983,7 +2055,8 @@ msgstr "load_ext: biblioteket ”%s”: kan inte anropa funktionen ”%s” (%s)
#: ext.c:76
#, c-format
msgid "load_ext: library `%s' initialization routine `%s' failed\n"
-msgstr "load_ext: initieringsrutinen ”%2$s” i biblioteket ”%1$s” misslyckades\n"
+msgstr ""
+"load_ext: initieringsrutinen ”%2$s” i biblioteket ”%1$s” misslyckades\n"
#: ext.c:110
msgid "make_builtin: missing function name"
@@ -2007,7 +2080,8 @@ msgstr "make_builtin: funktionsnamnet ”%s” är definierat sedan tidigare"
#: ext.c:130
#, c-format
msgid "make_builtin: can't use gawk built-in `%s' as function name"
-msgstr "make_builtin: kan inte använda gawks inbyggda ”%s” som ett funktionsnamn"
+msgstr ""
+"make_builtin: kan inte använda gawks inbyggda ”%s” som ett funktionsnamn"
#: ext.c:133
#, c-format
@@ -2148,7 +2222,8 @@ msgstr "inplace_begin: kan inte hämta 1:a argumentet som en filnamnssträng"
#: extension/inplace.c:145
#, c-format
msgid "inplace_begin: disabling in-place editing for invalid FILENAME `%s'"
-msgstr "inplace_begin: avaktiverar redigering på plats för ogiltigt FILNAMN ”%s”"
+msgstr ""
+"inplace_begin: avaktiverar redigering på plats för ogiltigt FILNAMN ”%s”"
#: extension/inplace.c:152
#, c-format
@@ -2332,15 +2407,20 @@ msgstr "split: andra argumentet är inte en vektor"
#: field.c:979
msgid "split: cannot use the same array for second and fourth args"
-msgstr "split: det går inte att använda samma vektor som andra och fjärde argument"
+msgstr ""
+"split: det går inte att använda samma vektor som andra och fjärde argument"
#: field.c:984
msgid "split: cannot use a subarray of second arg for fourth arg"
-msgstr "split: det går inte att använda en delvektor av andra argumentet som fjärde argument"
+msgstr ""
+"split: det går inte att använda en delvektor av andra argumentet som fjärde "
+"argument"
#: field.c:987
msgid "split: cannot use a subarray of fourth arg for second arg"
-msgstr "split: det går inte att använda en delvektor av fjärde argumentet som andra argument"
+msgstr ""
+"split: det går inte att använda en delvektor av fjärde argumentet som andra "
+"argument"
#: field.c:1021
msgid "split: null string for third arg is a gawk extension"
@@ -2360,15 +2440,20 @@ msgstr "patsplit: tredje argumentet får inte vara tomt"
#: field.c:1076
msgid "patsplit: cannot use the same array for second and fourth args"
-msgstr "patsplit: det går inte att använda samma vektor som andra och fjärde argument"
+msgstr ""
+"patsplit: det går inte att använda samma vektor som andra och fjärde argument"
#: field.c:1081
msgid "patsplit: cannot use a subarray of second arg for fourth arg"
-msgstr "patsplit: det går inte att använda en delvektor av andra argumentet som fjärde argument"
+msgstr ""
+"patsplit: det går inte att använda en delvektor av andra argumentet som "
+"fjärde argument"
#: field.c:1084
msgid "patsplit: cannot use a subarray of fourth arg for second arg"
-msgstr "patsplit: det går inte att använda en delvektor av fjärde argumentet som andra argument"
+msgstr ""
+"patsplit: det går inte att använda en delvektor av fjärde argumentet som "
+"andra argument"
#: field.c:1134
msgid "`FIELDWIDTHS' is a gawk extension"
@@ -2414,8 +2499,12 @@ msgstr "awk_value_to_node: felaktig numerisk typ ”%d”"
#: gawkapi.c:520
#, c-format
-msgid "node_to_awk_value: detected invalid numeric flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value: upptäckte felaktig kombination av numeriska flaggor ”%s”, vänligen skicka en felrapport."
+msgid ""
+"node_to_awk_value: detected invalid numeric flags combination `%s'; please "
+"file a bug report."
+msgstr ""
+"node_to_awk_value: upptäckte felaktig kombination av numeriska flaggor ”%s”, "
+"vänligen skicka en felrapport."
#: gawkapi.c:548
msgid "node_to_awk_value: received null node"
@@ -2427,8 +2516,12 @@ msgstr "node_to_awk_value: mottog null-värde"
#: gawkapi.c:607 gawkapi.c:641 gawkapi.c:668 gawkapi.c:701
#, c-format
-msgid "node_to_awk_value detected invalid flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value upptäckte felaktig kombination av numeriska flaggor ”%s”, vänligen skicka en felrapport."
+msgid ""
+"node_to_awk_value detected invalid flags combination `%s'; please file a bug "
+"report."
+msgstr ""
+"node_to_awk_value upptäckte felaktig kombination av numeriska flaggor ”%s”, "
+"vänligen skicka en felrapport."
#: gawkapi.c:1072
msgid "remove_element: received null array"
@@ -2492,8 +2585,11 @@ msgstr "uttrycket för ”%s”-omdirigering har en tom sträng som värde"
#: io.c:796
#, c-format
-msgid "filename `%.*s' for `%s' redirection may be result of logical expression"
-msgstr "filnamnet ”%.*s” för ”%s”-omdirigering kan vara resultatet av ett logiskt uttryck"
+msgid ""
+"filename `%.*s' for `%s' redirection may be result of logical expression"
+msgstr ""
+"filnamnet ”%.*s” för ”%s”-omdirigering kan vara resultatet av ett logiskt "
+"uttryck"
#: io.c:844
#, c-format
@@ -2517,8 +2613,11 @@ msgstr "kan inte öppna röret ”%s” för inmatning (%s)"
#: io.c:950
#, c-format
-msgid "get_file socket creation not supported on this platform for `%s' with fd %d"
-msgstr "att get_file skapar ett uttag stödjs inte på denna plattform för ”%s” med fd %d"
+msgid ""
+"get_file socket creation not supported on this platform for `%s' with fd %d"
+msgstr ""
+"att get_file skapar ett uttag stödjs inte på denna plattform för ”%s” med fd "
+"%d"
#: io.c:961
#, c-format
@@ -2536,8 +2635,10 @@ msgid "can't redirect to `%s' (%s)"
msgstr "kan inte dirigera om till ”%s” (%s)"
#: io.c:1153
-msgid "reached system limit for open files: starting to multiplex file descriptors"
-msgstr "nådde systembegränsningen för öppna filer: börjar multiplexa fildeskriptorer"
+msgid ""
+"reached system limit for open files: starting to multiplex file descriptors"
+msgstr ""
+"nådde systembegränsningen för öppna filer: börjar multiplexa fildeskriptorer"
#: io.c:1169
#, c-format
@@ -2564,7 +2665,8 @@ msgstr "stängning av omdirigering som aldrig öppnades"
#: io.c:1325
#, c-format
msgid "close: redirection `%s' not opened with `|&', second argument ignored"
-msgstr "close: omdirigeringen ”%s” öppnades inte med ”|&”, andra argumentet ignorerat"
+msgstr ""
+"close: omdirigeringen ”%s” öppnades inte med ”|&”, andra argumentet ignorerat"
#: io.c:1342
#, c-format
@@ -2631,166 +2733,175 @@ msgstr "koprocesspolning av röret till ”%s” misslyckades (%s)."
msgid "file flush of `%s' failed (%s)."
msgstr "filspolning av ”%s” misslyckades (%s)."
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "lokal port %s ogiltig i ”/inet“: %s"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "lokal port %s ogiltig i ”/inet”"
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "ogiltig information (%s, %s) för fjärrvärd och fjärrport: %s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "ogiltig information (%s, %s) för fjärrvärd och fjärrport"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP-kommunikation stöds inte"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "kunde inte öppna ”%s”, läge ”%s”"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "stängning av huvudpty misslyckades (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "stängning av standard ut i barnet misslyckades (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr "flyttandet av slavpty till standard ut i barnet misslyckades (dup: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "stängning av standard in i barnet misslyckades (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr "flyttandet av slavpty till standard in i barnet misslyckades (dup: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "stängning av slavpty misslyckades (%s)"
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr "kan inte skapa barnprocess eller öppna en pty"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "flyttande av rör till standard ut i barnet misslyckades (dup: %s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr "flyttande av rör till standard in i barnet misslyckades (dup: %s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "återställande av standard ut i föräldraprocessen misslyckades\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "återställande av standard in i föräldraprocessen misslyckades\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "stängning av röret misslyckades (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "”|&” stöds inte"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "kan inte öppna röret ”%s” (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "kan inte skapa barnprocess för ”%s” (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr "getline: försök att läsa från stängd läsände av ett tvåvägsrör"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: mottog NULL-pekare"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
-msgstr "inmatningstolken ”%s” står i konflikt med tidigare installerad inmatningstolk ”%s”"
+msgstr ""
+"inmatningstolken ”%s” står i konflikt med tidigare installerad "
+"inmatningstolk ”%s”"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "inmatningstolken ”%s” misslyckades att öppna ”%s”"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: mottog NULL-pekare"
-#: io.c:3201
+#: io.c:3214
#, c-format
-msgid "output wrapper `%s' conflicts with previously installed output wrapper `%s'"
-msgstr "utmatningsomslag ”%s” står i konflikt med tidigare installerat utmatningsomslag ”%s”"
+msgid ""
+"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
+msgstr ""
+"utmatningsomslag ”%s” står i konflikt med tidigare installerat "
+"utmatningsomslag ”%s”"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "utmatningsomslag ”%s” misslyckades att öppna ”%s”"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: mottog NULL-pekare"
-#: io.c:3258
+#: io.c:3271
#, c-format
-msgid "two-way processor `%s' conflicts with previously installed two-way processor `%s'"
-msgstr "tvåvägsprocessorn ”%s” står i konflikt med tidigare installerad tvåvägsprocessor ”%s”"
+msgid ""
+"two-way processor `%s' conflicts with previously installed two-way processor "
+"`%s'"
+msgstr ""
+"tvåvägsprocessorn ”%s” står i konflikt med tidigare installerad "
+"tvåvägsprocessor ”%s”"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "tvåvägsprocessorn ”%s” misslyckades att öppna ”%s”"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "datafilen ”%s” är tom"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "kunde inte allokera mer indataminne"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "flerteckensvärdet av ”RS” är en gawk-utökning"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "IPv6-kommunikation stöds inte"
@@ -2837,7 +2948,8 @@ msgstr "ingen programtext alls!"
#: main.c:574
#, c-format
msgid "Usage: %s [POSIX or GNU style options] -f progfile [--] file ...\n"
-msgstr "Användning: %s [POSIX- eller GNU-stilsflaggor] -f progfil [--] fil ...\n"
+msgstr ""
+"Användning: %s [POSIX- eller GNU-stilsflaggor] -f progfil [--] fil ...\n"
#: main.c:576
#, c-format
@@ -3095,38 +3207,38 @@ msgstr "flyttalsundantag"
msgid "fatal error: internal error"
msgstr "ödesdigert fel: internt fel"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "ödesdigert fel: internt fel: segmenteringsfel"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "ödesdigert fel: internt fel: stackspill"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "ingen föröppnad fd %d"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "kunde inte föröppna /dev/null för fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "tomt argument till ”-e/--source” ignorerat"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M ignoreras: MPFR/GMP-stöd är inte inkompilerat"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: flaggan ”-W %s” okänd, ignorerad\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: flaggan kräver ett argument -- %c\n"
@@ -3209,8 +3321,12 @@ msgstr "inga hexadecimala siffror i ”\\x”-kontrollsekvenser"
#: node.c:611
#, c-format
-msgid "hex escape \\x%.*s of %d characters probably not interpreted the way you expect"
-msgstr "hexkod \\x%.*s med %d tecken tolkas förmodligen inte på det sätt du förväntar dig"
+msgid ""
+"hex escape \\x%.*s of %d characters probably not interpreted the way you "
+"expect"
+msgstr ""
+"hexkod \\x%.*s med %d tecken tolkas förmodligen inte på det sätt du "
+"förväntar dig"
#: node.c:626
#, c-format
@@ -3218,8 +3334,12 @@ msgid "escape sequence `\\%c' treated as plain `%c'"
msgstr "kontrollsekvensen ”\\%c” behandlad som bara ”%c”"
#: node.c:762
-msgid "Invalid multibyte data detected. There may be a mismatch between your data and your locale."
-msgstr "Ogiltig multibytedata upptäckt. Dina data och din lokal stämmer kanske inte överens."
+msgid ""
+"Invalid multibyte data detected. There may be a mismatch between your data "
+"and your locale."
+msgstr ""
+"Ogiltig multibytedata upptäckt. Dina data och din lokal stämmer kanske inte "
+"överens."
#: posix/gawkmisc.c:177
#, c-format
@@ -3467,7 +3587,8 @@ msgstr "Inget föregående reguljärt uttryck"
#: symbol.c:687
#, c-format
msgid "function `%s': can't use function `%s' as a parameter name"
-msgstr "funktionen ”%s”: kan inte använda funktionen ”%s” som ett parameternamn"
+msgstr ""
+"funktionen ”%s”: kan inte använda funktionen ”%s” som ett parameternamn"
#: symbol.c:817
msgid "can not pop main context"
diff --git a/po/vi.gmo b/po/vi.gmo
index dc41cd78..3c52750e 100644
--- a/po/vi.gmo
+++ b/po/vi.gmo
Binary files differ
diff --git a/po/vi.po b/po/vi.po
index 257d6c4e..138d8b5d 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.2.0e\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2018-01-30 08:07+0700\n"
"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
@@ -79,19 +79,27 @@ msgstr "asorti: đối số thứ nhất không phải là một mảng"
#: array.c:849
msgid "asort: cannot use a subarray of first arg for second arg"
-msgstr "asort (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của tham số thứ nhất cho tham số thứ hai"
+msgstr ""
+"asort (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của tham "
+"số thứ nhất cho tham số thứ hai"
#: array.c:850
msgid "asorti: cannot use a subarray of first arg for second arg"
-msgstr "asorti (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của tham số thứ nhất cho tham số thứ hai"
+msgstr ""
+"asorti (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của "
+"tham số thứ nhất cho tham số thứ hai"
#: array.c:855
msgid "asort: cannot use a subarray of second arg for first arg"
-msgstr "asort (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của tham số thứ hai cho tham số thứ nhất"
+msgstr ""
+"asort (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của tham "
+"số thứ hai cho tham số thứ nhất"
#: array.c:856
msgid "asorti: cannot use a subarray of second arg for first arg"
-msgstr "asorti (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của tham số thứ hai cho tham số thứ nhất"
+msgstr ""
+"asorti (một chương trình xắp xếp thứ tự): không thể sử dụng mảng con của "
+"tham số thứ hai cho tham số thứ nhất"
#: array.c:1324
#, c-format
@@ -114,7 +122,8 @@ msgstr "Mọi quy tắc phải có một mẫu hay phần kiểu hành động"
#: awkgram.y:363 awkgram.y:377
msgid "old awk does not support multiple `BEGIN' or `END' rules"
-msgstr "awk cũ không hỗ trợ nhiều quy tắc kiểu “BEGIN” (bắt đầu) hay “END” (kết thúc)"
+msgstr ""
+"awk cũ không hỗ trợ nhiều quy tắc kiểu “BEGIN” (bắt đầu) hay “END” (kết thúc)"
#: awkgram.y:421
#, c-format
@@ -123,12 +132,16 @@ msgstr "“%s” là một hàm có sẵn nên nó không thể được định
#: awkgram.y:497
msgid "regexp constant `//' looks like a C++ comment, but is not"
-msgstr "hằng biểu thức chính quy “//” trông giống như một chú thích C++, nhưng mà không phải"
+msgstr ""
+"hằng biểu thức chính quy “//” trông giống như một chú thích C++, nhưng mà "
+"không phải"
#: awkgram.y:501
#, c-format
msgid "regexp constant `/%s/' looks like a C comment, but is not"
-msgstr "hằng biểu thức chính quy “/%s/” trông giống như một chú thích C, nhưng mà không phải"
+msgstr ""
+"hằng biểu thức chính quy “/%s/” trông giống như một chú thích C, nhưng mà "
+"không phải"
#: awkgram.y:651
#, c-format
@@ -137,11 +150,13 @@ msgstr "gặp giá trị case bị trùng trong phần thân switch: %s"
#: awkgram.y:672
msgid "duplicate `default' detected in switch body"
-msgstr "đã phát hiện trùng “default” trong thân cấu trúc điều khiển chọn lựa (switch)"
+msgstr ""
+"đã phát hiện trùng “default” trong thân cấu trúc điều khiển chọn lựa (switch)"
#: awkgram.y:933 awkgram.y:4240
msgid "`break' is not allowed outside a loop or switch"
-msgstr "không cho phép “break” (ngắt) nằm ở ngoại vòng lặp hay cấu trúc chọn lựa"
+msgstr ""
+"không cho phép “break” (ngắt) nằm ở ngoại vòng lặp hay cấu trúc chọn lựa"
#: awkgram.y:943 awkgram.y:4232
msgid "`continue' is not allowed outside a loop"
@@ -163,7 +178,9 @@ msgstr "“return” (trở về) được dùng ở ngoại ngữ cảnh hàm"
#: awkgram.y:1065
msgid "plain `print' in BEGIN or END rule should probably be `print \"\"'"
-msgstr "“print” (in) thường trong quy tắc “BEGIN” (bắt đầu) hay “END” (kết thúc) gần như chắc chắn nên là “print”””"
+msgstr ""
+"“print” (in) thường trong quy tắc “BEGIN” (bắt đầu) hay “END” (kết thúc) gần "
+"như chắc chắn nên là “print”””"
#: awkgram.y:1132 awkgram.y:1182
msgid "`delete' is not allowed with SYMTAB"
@@ -204,7 +221,9 @@ msgstr "“getline” không-chuyển-hướng không hợp lệ trong quy tắc
#: awkgram.y:1646
msgid "non-redirected `getline' undefined inside END action"
-msgstr "trong hành động “END” (kết thúc) có “getline” (lấy dòng) không được chuyển hướng lại và chưa được định nghĩa."
+msgstr ""
+"trong hành động “END” (kết thúc) có “getline” (lấy dòng) không được chuyển "
+"hướng lại và chưa được định nghĩa."
#: awkgram.y:1665
msgid "old awk does not support multidimensional arrays"
@@ -212,7 +231,9 @@ msgstr "awk cũ không hỗ trợ mảng đa chiều"
#: awkgram.y:1767
msgid "call of `length' without parentheses is not portable"
-msgstr "lời gọi “length” (độ dài) mà không có dấu ngoặc đơn là không tương thích trên các hệ thống khác"
+msgstr ""
+"lời gọi “length” (độ dài) mà không có dấu ngoặc đơn là không tương thích "
+"trên các hệ thống khác"
#: awkgram.y:1841
msgid "indirect function calls are a gawk extension"
@@ -232,11 +253,11 @@ msgstr "cố gắng dùng không-phải-hàm “%s” trong cú gọi hàm"
msgid "invalid subscript expression"
msgstr "biểu thức in thấp không hợp lệ"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "cảnh báo: "
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "lỗi nghiêm trọng: "
@@ -315,17 +336,22 @@ msgstr "tập tin nguồn không kết thúc bằng một dòng trống"
#: awkgram.y:3489
msgid "unterminated regexp ends with `\\' at end of file"
-msgstr "biểu thức chính quy chưa được chấm dứt kết thúc với “\\” tại kết thúc của tập tin"
+msgstr ""
+"biểu thức chính quy chưa được chấm dứt kết thúc với “\\” tại kết thúc của "
+"tập tin"
#: awkgram.y:3516
#, c-format
msgid "%s: %d: tawk regex modifier `/.../%c' doesn't work in gawk"
-msgstr "%s: %d: bộ sửa đổi biểu thức chính quy tawk “/…/%c” không hoạt động được trong gawk"
+msgstr ""
+"%s: %d: bộ sửa đổi biểu thức chính quy tawk “/…/%c” không hoạt động được "
+"trong gawk"
#: awkgram.y:3520
#, c-format
msgid "tawk regex modifier `/.../%c' doesn't work in gawk"
-msgstr "bộ sửa đổi biểu thức chính quy tawk “/…/%c” không hoạt động được trong gawk"
+msgstr ""
+"bộ sửa đổi biểu thức chính quy tawk “/…/%c” không hoạt động được trong gawk"
#: awkgram.y:3533
msgid "unterminated regexp"
@@ -407,7 +433,9 @@ msgstr "“%d” không hợp lệ khi là số đối số cho “%s”"
#: awkgram.y:4374
#, c-format
msgid "%s: string literal as last arg of substitute has no effect"
-msgstr "%s: khi đối số cuối cùng của sự thay thế, hằng mã nguồn chuỗi không có tác dụng"
+msgstr ""
+"%s: khi đối số cuối cùng của sự thay thế, hằng mã nguồn chuỗi không có tác "
+"dụng"
#: awkgram.y:4379
#, c-format
@@ -432,7 +460,8 @@ msgstr "dùng “dcgettext(_\"…\")” không đúng: hãy gỡ bỏ gạch dư
#: awkgram.y:4579
msgid "index: regexp constant as second argument is not allowed"
-msgstr "index: (chỉ mục) không cho phép hằng biểu thức chính quy làm đối số thứ hai"
+msgstr ""
+"index: (chỉ mục) không cho phép hằng biểu thức chính quy làm đối số thứ hai"
#: awkgram.y:4632
#, c-format
@@ -515,7 +544,8 @@ msgid "division by zero attempted in `%%'"
msgstr "gặp phép chia cho số không trong “%%”"
#: awkgram.y:5552
-msgid "cannot assign a value to the result of a field post-increment expression"
+msgid ""
+"cannot assign a value to the result of a field post-increment expression"
msgstr "không thể gán giá trị cho kết quả của biểu thức trường tăng-trước"
#: awkgram.y:5555
@@ -548,12 +578,16 @@ msgstr "exp: đối số “%g” nằm ngoài phạm vi"
#: builtin.c:245
#, c-format
msgid "fflush: cannot flush: pipe `%.*s' opened for reading, not writing"
-msgstr "fflush: không thể flush (đẩy dữ liệu lên đĩa): ống dẫn “%.*s” được mở để đọc, không phải để ghi"
+msgstr ""
+"fflush: không thể flush (đẩy dữ liệu lên đĩa): ống dẫn “%.*s” được mở để "
+"đọc, không phải để ghi"
#: builtin.c:248
#, c-format
msgid "fflush: cannot flush: file `%.*s' opened for reading, not writing"
-msgstr "fflush: không thể flush (đẩy dữ liệu vào đĩa): tập tin “%.*s” được mở để đọc, không phải để ghi"
+msgstr ""
+"fflush: không thể flush (đẩy dữ liệu vào đĩa): tập tin “%.*s” được mở để "
+"đọc, không phải để ghi"
#: builtin.c:259
#, c-format
@@ -563,12 +597,15 @@ msgstr "fflush: không thể flush (đẩy dữ liệu vào đĩa) tập tin “
#: builtin.c:264
#, c-format
msgid "fflush: cannot flush: two-way pipe `%.*s' has closed write end"
-msgstr "fflush: không thể flush (đẩy dữ liệu lên đĩa): ống dẫn hai chiều “%.*s” đã đóng kết thúc ghi"
+msgstr ""
+"fflush: không thể flush (đẩy dữ liệu lên đĩa): ống dẫn hai chiều “%.*s” đã "
+"đóng kết thúc ghi"
#: builtin.c:270
#, c-format
msgid "fflush: `%.*s' is not an open file, pipe or co-process"
-msgstr "fflush: “%.*s” không phải là một tập tin, ống dẫn hay đồng tiến trình được mở"
+msgstr ""
+"fflush: “%.*s” không phải là một tập tin, ống dẫn hay đồng tiến trình được mở"
#: builtin.c:377
msgid "index: received non-string first argument"
@@ -633,7 +670,8 @@ msgstr "lỗi nghiêm trọng: số lượng đối số với “$” phải >0
#: builtin.c:926
#, c-format
msgid "fatal: arg count %ld greater than total number of supplied arguments"
-msgstr "lỗi nghiêm trọng: số lượng đối số %ld lớn hơn tổng số đối số được cung cấp"
+msgstr ""
+"lỗi nghiêm trọng: số lượng đối số %ld lớn hơn tổng số đối số được cung cấp"
#: builtin.c:930
msgid "fatal: `$' not permitted after period in format"
@@ -641,7 +679,9 @@ msgstr "lỗi nghiêm trọng: không cho phép “$” nằm sau dấu chấm t
#: builtin.c:949
msgid "fatal: no `$' supplied for positional field width or precision"
-msgstr "lỗi nghiêm trọng: chưa cung cấp “$” cho độ rộng trường thuộc vị trí hay cho độ chính xác"
+msgstr ""
+"lỗi nghiêm trọng: chưa cung cấp “$” cho độ rộng trường thuộc vị trí hay cho "
+"độ chính xác"
#: builtin.c:1019
msgid "`l' is meaningless in awk formats; ignored"
@@ -685,7 +725,9 @@ msgstr "[s]printf: giá trị %g ở ngoại phạm vi cho dạng thức “%%%c
#: builtin.c:1579
#, c-format
msgid "ignoring unknown format specifier character `%c': no argument converted"
-msgstr "đang bỏ qua ký tự ghi rõ định dạng không rõ “%c”: không có đối số được chuyển đổi"
+msgstr ""
+"đang bỏ qua ký tự ghi rõ định dạng không rõ “%c”: không có đối số được "
+"chuyển đổi"
#: builtin.c:1584
msgid "fatal: not enough arguments to satisfy format string"
@@ -742,7 +784,9 @@ msgstr "substr: (chuỗi con) sẽ cắt xén độ dài không phải số nguy
#: builtin.c:1801
#, c-format
msgid "substr: length %g too big for string indexing, truncating to %g"
-msgstr "substr: (chuỗi con) độ dài %g là quá lớn cho chỉ số chuỗi, nên xén ngắn thành %g"
+msgstr ""
+"substr: (chuỗi con) độ dài %g là quá lớn cho chỉ số chuỗi, nên xén ngắn "
+"thành %g"
#: builtin.c:1813
#, c-format
@@ -752,7 +796,8 @@ msgstr "substr: (chuỗi con) chỉ số đầu “%g” không hợp lệ nên
#: builtin.c:1818
#, c-format
msgid "substr: non-integer start index %g will be truncated"
-msgstr "substr: (chuỗi con) chỉ số đầu không phải số nguyên “%g” sẽ bị cắt ngắn"
+msgstr ""
+"substr: (chuỗi con) chỉ số đầu không phải số nguyên “%g” sẽ bị cắt ngắn"
#: builtin.c:1841
msgid "substr: source string is zero length"
@@ -765,12 +810,16 @@ msgstr "substr: (chuỗi con) chỉ số đầu %g nằm sau kết thúc của c
#: builtin.c:1863
#, c-format
-msgid "substr: length %g at start index %g exceeds length of first argument (%lu)"
-msgstr "substr: (chuỗi con) độ dài %g chỉ số đầu %g vượt quá độ dài của đối số đầu (%lu)"
+msgid ""
+"substr: length %g at start index %g exceeds length of first argument (%lu)"
+msgstr ""
+"substr: (chuỗi con) độ dài %g chỉ số đầu %g vượt quá độ dài của đối số đầu "
+"(%lu)"
#: builtin.c:1936
msgid "strftime: format value in PROCINFO[\"strftime\"] has numeric type"
-msgstr "strftime: giá trị định dạng trong PROCINFO[\"strftime\"] phải thuộc kiểu số"
+msgstr ""
+"strftime: giá trị định dạng trong PROCINFO[\"strftime\"] phải thuộc kiểu số"
#: builtin.c:1956
msgid "strftime: received non-numeric second argument"
@@ -900,7 +949,8 @@ msgstr "lshift(%f, %f): giá trị thuộc phân số sẽ bị cắt ngắn"
#: builtin.c:3412
#, c-format
msgid "lshift(%f, %f): too large shift value will give strange results"
-msgstr "lshift(%f, %f): giá trị dịch quá lớn sẽ gây ra kết quả không như mong muốn"
+msgstr ""
+"lshift(%f, %f): giá trị dịch quá lớn sẽ gây ra kết quả không như mong muốn"
#: builtin.c:3437
msgid "rshift: received non-numeric first argument"
@@ -923,7 +973,8 @@ msgstr "rshift(%f, %f): giá trị thuộc kiểu phân số sẽ bị xén ng
#: builtin.c:3451
#, c-format
msgid "rshift(%f, %f): too large shift value will give strange results"
-msgstr "rshift(%f, %f): giá trị dịch quá lớn sẽ gây ra kết quả không như mong muốn"
+msgstr ""
+"rshift(%f, %f): giá trị dịch quá lớn sẽ gây ra kết quả không như mong muốn"
#: builtin.c:3476 mpfr.c:977
msgid "and: called with less than two arguments"
@@ -1004,8 +1055,10 @@ msgstr "intdiv: gặp phép chia cho số không"
#: builtin.c:4080
#, c-format
-msgid "typeof detected invalid flags combination `%s'; please file a bug report."
-msgstr "typeof dò tìm thấy tổ hợp các cờ không hợp lệ “%s”; vui lòng báo cáo lỗi này."
+msgid ""
+"typeof detected invalid flags combination `%s'; please file a bug report."
+msgstr ""
+"typeof dò tìm thấy tổ hợp các cờ không hợp lệ “%s”; vui lòng báo cáo lỗi này."
#: builtin.c:4095
#, c-format
@@ -1118,24 +1171,35 @@ msgid "non-zero integer value"
msgstr "giá trị số nguyên khác không"
#: command.y:819
-msgid "backtrace [N] - print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "backtrace [N] - in vết của tất cả hay N khung trong cùng nhất (ngoài cùng nhất nếu N < 0)."
+msgid ""
+"backtrace [N] - print trace of all or N innermost (outermost if N < 0) "
+"frames."
+msgstr ""
+"backtrace [N] - in vết của tất cả hay N khung trong cùng nhất (ngoài cùng "
+"nhất nếu N < 0)."
#: command.y:821
-msgid "break [[filename:]N|function] - set breakpoint at the specified location."
+msgid ""
+"break [[filename:]N|function] - set breakpoint at the specified location."
msgstr "break [[tên_tập_tin:]N|hàm] - đặt điểm ngắt tại vị trí đã cho."
#: command.y:823
msgid "clear [[filename:]N|function] - delete breakpoints previously set."
-msgstr "clear [[tên_tập_tin:]N|function] - xóa các điểm ngắt được đặt trước đây."
+msgstr ""
+"clear [[tên_tập_tin:]N|function] - xóa các điểm ngắt được đặt trước đây."
#: command.y:825
-msgid "commands [num] - starts a list of commands to be executed at a breakpoint(watchpoint) hit."
-msgstr "commands [số] - chạy một danh sách các câu lệnh được thực thi tại điểm ngắt (hay điểm theo dõi) tìm được."
+msgid ""
+"commands [num] - starts a list of commands to be executed at a "
+"breakpoint(watchpoint) hit."
+msgstr ""
+"commands [số] - chạy một danh sách các câu lệnh được thực thi tại điểm ngắt "
+"(hay điểm theo dõi) tìm được."
#: command.y:827
msgid "condition num [expr] - set or clear breakpoint or watchpoint condition."
-msgstr "condition num [expr] - đặt hay xóa điểm ngắt hay điều kiện điểm theo dõi."
+msgstr ""
+"condition num [expr] - đặt hay xóa điểm ngắt hay điều kiện điểm theo dõi."
#: command.y:829
msgid "continue [COUNT] - continue program being debugged."
@@ -1159,7 +1223,8 @@ msgstr "down [N] - chuyển xuống N khung stack."
#: command.y:839
msgid "dump [filename] - dump instructions to file or stdout."
-msgstr "dump [tên_tập_tin] - dump các chỉ lệnh ra tập tin hay đầu ra tiêu chuẩn."
+msgstr ""
+"dump [tên_tập_tin] - dump các chỉ lệnh ra tập tin hay đầu ra tiêu chuẩn."
#: command.y:841
msgid "enable [once|del] [breakpoints] [range] - enable specified breakpoints."
@@ -1194,8 +1259,11 @@ msgid "ignore N COUNT - set ignore-count of breakpoint number N to COUNT."
msgstr "ignore N SỐ-LƯỢNG - đặt số lượng điểm ngắt bị bỏ qua."
#: command.y:857
-msgid "info topic - source|sources|variables|functions|break|frame|args|locals|display|watch."
-msgstr "info chủ_đề - nguồn|nguồn|biến|hàm|break|frame|args|locals|display|watch."
+msgid ""
+"info topic - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
+msgstr ""
+"info chủ_đề - nguồn|nguồn|biến|hàm|break|frame|args|locals|display|watch."
#: command.y:859
msgid "list [-|+|[filename:]lineno|function|range] - list specified line(s)."
@@ -1203,11 +1271,16 @@ msgstr "list [-|+|[tập_tin:]số_dòng|hàm|vùng] - liệt kê các dòng đ
#: command.y:861
msgid "next [COUNT] - step program, proceeding through subroutine calls."
-msgstr "next [SỐ_LƯỢNG] - nhảy một chỉ lệnh, nhưng được xử lý thông qua gọi thủ tục con."
+msgstr ""
+"next [SỐ_LƯỢNG] - nhảy một chỉ lệnh, nhưng được xử lý thông qua gọi thủ tục "
+"con."
#: command.y:863
-msgid "nexti [COUNT] - step one instruction, but proceed through subroutine calls."
-msgstr "nexti [SỐ_LƯỢNG] - nhảy từng chỉ lệnh, nhưng được xử lý thông qua gọi thủ tục con."
+msgid ""
+"nexti [COUNT] - step one instruction, but proceed through subroutine calls."
+msgstr ""
+"nexti [SỐ_LƯỢNG] - nhảy từng chỉ lệnh, nhưng được xử lý thông qua gọi thủ "
+"tục con."
#: command.y:865
msgid "option [name[=value]] - set or display debugger option(s)."
@@ -1227,7 +1300,9 @@ msgstr "quit - thoát khỏi chương trình gỡ lỗi."
#: command.y:873
msgid "return [value] - make selected stack frame return to its caller."
-msgstr "return [giá-trị] - làm cho khung stack đã chọn trả về giá trị này cho bộ gọi nó."
+msgstr ""
+"return [giá-trị] - làm cho khung stack đã chọn trả về giá trị này cho bộ gọi "
+"nó."
#: command.y:875
msgid "run - start or restart executing program."
@@ -1242,8 +1317,11 @@ msgid "set var = value - assign value to a scalar variable."
msgstr "set biến = giá_trị - gán giá trị cho một biến vô hướng."
#: command.y:883
-msgid "silent - suspends usual message when stopped at a breakpoint/watchpoint."
-msgstr "silent - chặn các lời nhắn thông thường khi dừng tại điểm ngăt hay điểm theo dõi."
+msgid ""
+"silent - suspends usual message when stopped at a breakpoint/watchpoint."
+msgstr ""
+"silent - chặn các lời nhắn thông thường khi dừng tại điểm ngăt hay điểm theo "
+"dõi."
#: command.y:885
msgid "source file - execute commands from file."
@@ -1251,7 +1329,9 @@ msgstr "source file - thực hiện các câu lệnh từ tập tin."
#: command.y:887
msgid "step [COUNT] - step program until it reaches a different source line."
-msgstr "step [SỐ_LƯỢNG] - chạy từng bước chương trình cho đến khi nó gặp một dòng nguồn khác."
+msgstr ""
+"step [SỐ_LƯỢNG] - chạy từng bước chương trình cho đến khi nó gặp một dòng "
+"nguồn khác."
#: command.y:889
msgid "stepi [COUNT] - step one instruction exactly."
@@ -1270,8 +1350,12 @@ msgid "undisplay [N] - remove variable(s) from automatic display list."
msgstr "undisplay [N] - gỡ bỏ các biến từ danh sách hiển thị tự động."
#: command.y:897
-msgid "until [[filename:]N|function] - execute until program reaches a different line or line N within current frame."
-msgstr "until [[tên_tập_tin:]N|hàm] - thực hiện cho đến khi chương trình đạt đến dòng khác hay dòng N trong khung hiện tại."
+msgid ""
+"until [[filename:]N|function] - execute until program reaches a different "
+"line or line N within current frame."
+msgstr ""
+"until [[tên_tập_tin:]N|hàm] - thực hiện cho đến khi chương trình đạt đến "
+"dòng khác hay dòng N trong khung hiện tại."
#: command.y:899
msgid "unwatch [N] - remove variable(s) from watch list."
@@ -1286,10 +1370,14 @@ msgid "watch var - set a watchpoint for a variable."
msgstr "watch var - đặt điểm theo dõi cho một biến."
#: command.y:905
-msgid "where [N] - (same as backtrace) print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "where [N] - (giống như backtrace) in vết của tất cả hay N khung trong cùng nhất (ngoài cùng nhất nếu N < 0)."
+msgid ""
+"where [N] - (same as backtrace) print trace of all or N innermost (outermost "
+"if N < 0) frames."
+msgstr ""
+"where [N] - (giống như backtrace) in vết của tất cả hay N khung trong cùng "
+"nhất (ngoài cùng nhất nếu N < 0)."
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "lỗi: "
@@ -1611,7 +1699,9 @@ msgstr "số khung không hợp lệ"
#: debug.c:2202
#, c-format
msgid "Note: breakpoint %d (enabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Chú ý: điểm ngắt %d (được bật, bỏ qua %ld gợi ý tiếp), đồng thời được đặt tại %s:%d"
+msgstr ""
+"Chú ý: điểm ngắt %d (được bật, bỏ qua %ld gợi ý tiếp), đồng thời được đặt "
+"tại %s:%d"
#: debug.c:2209
#, c-format
@@ -1621,7 +1711,9 @@ msgstr "Chú ý: điểm ngắt %d (được bật), đồng thời được đ
#: debug.c:2216
#, c-format
msgid "Note: breakpoint %d (disabled, ignore next %ld hits), also set at %s:%d"
-msgstr "Chú ý: điểm ngắt %d (bị tắt, bỏ qua %ld gợi ý tiếp), đồng thời được đặt tại %s:%d"
+msgstr ""
+"Chú ý: điểm ngắt %d (bị tắt, bỏ qua %ld gợi ý tiếp), đồng thời được đặt tại "
+"%s:%d"
#: debug.c:2223
#, c-format
@@ -1703,7 +1795,8 @@ msgstr "Sẽ dừng lần gặp điểm ngắt %d tiếp theo.\n"
#: debug.c:2785
#, c-format
msgid "Can only debug programs provided with the `-f' option.\n"
-msgstr "Chỉ có thể gỡ lỗi các chương trình được cung cấp cùng với tùy chọn “-f”.\n"
+msgstr ""
+"Chỉ có thể gỡ lỗi các chương trình được cung cấp cùng với tùy chọn “-f”.\n"
#: debug.c:2914
#, c-format
@@ -1972,8 +2065,10 @@ msgstr "load_ext: không thể mở thư viện “%s” (%s)\n"
#: ext.c:66
#, c-format
-msgid "load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
-msgstr "load_ext: thư viện “%s”: chưa định nghĩa “plugin_is_GPL_compatible” (%s)\n"
+msgid ""
+"load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
+msgstr ""
+"load_ext: thư viện “%s”: chưa định nghĩa “plugin_is_GPL_compatible” (%s)\n"
#: ext.c:72
#, c-format
@@ -2007,7 +2102,9 @@ msgstr "make_builtin: hàm “%s” đã được định nghĩa trước đây
#: ext.c:130
#, c-format
msgid "make_builtin: can't use gawk built-in `%s' as function name"
-msgstr "make_builtin: không thể sử dụng “%s” như là một hàm được xây dựng sẵn trong gawk"
+msgstr ""
+"make_builtin: không thể sử dụng “%s” như là một hàm được xây dựng sẵn trong "
+"gawk"
#: ext.c:133
#, c-format
@@ -2332,19 +2429,26 @@ msgstr "split: (chia tách) đối số thứ hai không phải là mảng"
#: field.c:979
msgid "split: cannot use the same array for second and fourth args"
-msgstr "split (chia tách): không thể sử dụng cùng một mảng có cả đối số thứ hai và thứ tư"
+msgstr ""
+"split (chia tách): không thể sử dụng cùng một mảng có cả đối số thứ hai và "
+"thứ tư"
#: field.c:984
msgid "split: cannot use a subarray of second arg for fourth arg"
-msgstr "split (phân tách): không thể sử dụng mảng con của tham số thứ hai cho tham số thứ tư"
+msgstr ""
+"split (phân tách): không thể sử dụng mảng con của tham số thứ hai cho tham "
+"số thứ tư"
#: field.c:987
msgid "split: cannot use a subarray of fourth arg for second arg"
-msgstr "split (phân tách): không thể sử dụng mảng con của tham số thứ tư cho tham số thứ hai"
+msgstr ""
+"split (phân tách): không thể sử dụng mảng con của tham số thứ tư cho tham số "
+"thứ hai"
#: field.c:1021
msgid "split: null string for third arg is a gawk extension"
-msgstr "split: (chia tách) chuỗi vô giá trị cho đối số thứ ba là phần mở rộng gawk"
+msgstr ""
+"split: (chia tách) chuỗi vô giá trị cho đối số thứ ba là phần mở rộng gawk"
#: field.c:1058
msgid "patsplit: fourth argument is not an array"
@@ -2360,15 +2464,21 @@ msgstr "patsplit: đối số thứ ba không phải không rỗng"
#: field.c:1076
msgid "patsplit: cannot use the same array for second and fourth args"
-msgstr "patsplit (chương trình chia tách): không thể sử dụng cùng một mảng cho cả hai đối số thứ hai và thứ tư"
+msgstr ""
+"patsplit (chương trình chia tách): không thể sử dụng cùng một mảng cho cả "
+"hai đối số thứ hai và thứ tư"
#: field.c:1081
msgid "patsplit: cannot use a subarray of second arg for fourth arg"
-msgstr "patsplit (chương trình phân tách): không thể sử dụng mảng con của tham số thứ hai cho tham số thứ tư"
+msgstr ""
+"patsplit (chương trình phân tách): không thể sử dụng mảng con của tham số "
+"thứ hai cho tham số thứ tư"
#: field.c:1084
msgid "patsplit: cannot use a subarray of fourth arg for second arg"
-msgstr "patsplit (chương trình phân tách): không thể sử dụng mảng con của tham số thứ tư cho tham số thứ hai"
+msgstr ""
+"patsplit (chương trình phân tách): không thể sử dụng mảng con của tham số "
+"thứ tư cho tham số thứ hai"
#: field.c:1134
msgid "`FIELDWIDTHS' is a gawk extension"
@@ -2381,7 +2491,8 @@ msgstr "“*” phải là bộ định danh cuối cùng trong FIELDWIDTHS"
#: field.c:1224
#, c-format
msgid "invalid FIELDWIDTHS value, for field %d, near `%s'"
-msgstr "giá trị FIELDWIDTHS (độ rộng trường) không hợp lệ, cho trường %d, gần “%s”"
+msgstr ""
+"giá trị FIELDWIDTHS (độ rộng trường) không hợp lệ, cho trường %d, gần “%s”"
#: field.c:1297
msgid "null string for `FS' is a gawk extension"
@@ -2414,8 +2525,12 @@ msgstr "awk_value_to_node: kiểu số không hợp lệ “%d”"
#: gawkapi.c:520
#, c-format
-msgid "node_to_awk_value: detected invalid numeric flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value: tìm thấy tổ hợp cờ dạng số không hợp lệ “%s”; vui lòng báo cáo đây là lỗi."
+msgid ""
+"node_to_awk_value: detected invalid numeric flags combination `%s'; please "
+"file a bug report."
+msgstr ""
+"node_to_awk_value: tìm thấy tổ hợp cờ dạng số không hợp lệ “%s”; vui lòng "
+"báo cáo đây là lỗi."
#: gawkapi.c:548
msgid "node_to_awk_value: received null node"
@@ -2427,8 +2542,12 @@ msgstr "node_to_awk_value: biến nhận được là null"
#: gawkapi.c:607 gawkapi.c:641 gawkapi.c:668 gawkapi.c:701
#, c-format
-msgid "node_to_awk_value detected invalid flags combination `%s'; please file a bug report."
-msgstr "node_to_awk_value tìm thấy tổ hợp cờ dạng số không hợp lệ “%s”; vui lòng báo cáo đây là lỗi."
+msgid ""
+"node_to_awk_value detected invalid flags combination `%s'; please file a bug "
+"report."
+msgstr ""
+"node_to_awk_value tìm thấy tổ hợp cờ dạng số không hợp lệ “%s”; vui lòng báo "
+"cáo đây là lỗi."
#: gawkapi.c:1072
msgid "remove_element: received null array"
@@ -2492,8 +2611,11 @@ msgstr "biểu thức cho điều chuyển hướng “%s” có giá trị chu
#: io.c:796
#, c-format
-msgid "filename `%.*s' for `%s' redirection may be result of logical expression"
-msgstr "tên tập tin “%.*s” cho điều chuyển hướng “%s” có lẽ là kết quả của biểu thức luận lý"
+msgid ""
+"filename `%.*s' for `%s' redirection may be result of logical expression"
+msgstr ""
+"tên tập tin “%.*s” cho điều chuyển hướng “%s” có lẽ là kết quả của biểu thức "
+"luận lý"
#: io.c:844
#, c-format
@@ -2517,8 +2639,11 @@ msgstr "không thể mở ống dẫn “%s” để nhập (%s)"
#: io.c:950
#, c-format
-msgid "get_file socket creation not supported on this platform for `%s' with fd %d"
-msgstr "việc tạo ổ cắm mạng get_file không được hỗ trợ trên nền tảng này cho “%s” với fd %d"
+msgid ""
+"get_file socket creation not supported on this platform for `%s' with fd %d"
+msgstr ""
+"việc tạo ổ cắm mạng get_file không được hỗ trợ trên nền tảng này cho “%s” "
+"với fd %d"
#: io.c:961
#, c-format
@@ -2536,8 +2661,11 @@ msgid "can't redirect to `%s' (%s)"
msgstr "không thể chuyển hướng đến “%s” (%s)"
#: io.c:1153
-msgid "reached system limit for open files: starting to multiplex file descriptors"
-msgstr "đã tới giới hạn hệ thống về tập tin được mở nên bắt đầu phối hợp nhiều dòng điều mô tả tập tin"
+msgid ""
+"reached system limit for open files: starting to multiplex file descriptors"
+msgstr ""
+"đã tới giới hạn hệ thống về tập tin được mở nên bắt đầu phối hợp nhiều dòng "
+"điều mô tả tập tin"
#: io.c:1169
#, c-format
@@ -2555,7 +2683,9 @@ msgstr "close: (đóng) đối số thứ hai phải là “to” (đến) hay
#: io.c:1221
#, c-format
msgid "close: `%.*s' is not an open file, pipe or co-process"
-msgstr "close: (đóng) “%.*s” không phải là tập tin, ống dẫn hay đồng tiến trình đã được mở"
+msgstr ""
+"close: (đóng) “%.*s” không phải là tập tin, ống dẫn hay đồng tiến trình đã "
+"được mở"
#: io.c:1226
msgid "close of redirection that was never opened"
@@ -2564,7 +2694,8 @@ msgstr "đóng một chuyển hướng mà nó chưa từng được mở"
#: io.c:1325
#, c-format
msgid "close: redirection `%s' not opened with `|&', second argument ignored"
-msgstr "close: chuyển hướng “%s” không được mở bởi “|&” nên đối số thứ hai bị bỏ qua"
+msgstr ""
+"close: chuyển hướng “%s” không được mở bởi “|&” nên đối số thứ hai bị bỏ qua"
#: io.c:1342
#, c-format
@@ -2631,172 +2762,190 @@ msgstr "lỗi xóa sạch ống dẫn đồng tiến trình đến “%s” (%s)
msgid "file flush of `%s' failed (%s)."
msgstr "lỗi xóa sạch tập tin “%s” (%s)"
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "cổng cục bộ %s không hợp lệ trong “/inet”: %s"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "cổng cục bộ %s không hợp lệ trong “/inet”"
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "thông tin về máy/cổng máy mạng (%s, %s) không hợp lệ: %s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "thông tin về máy/cổng ở xa (%s, %s) không phải hợp lệ"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "truyền thông TCP/IP không được hỗ trợ"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "không mở được “%s”, chế độ “%s”"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "gặp lỗi khi đóng thiết bị cuối giả (%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "lỗi đóng đầu ra tiêu chuẩn trong tiến trình con (%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
-msgstr "gặp lỗi khi di chuyển pty (thiết bị cuối giả) phụ thuộc đến thiết bị đầu ra tiêu chuẩn trong con (trùng: %s)"
+msgstr ""
+"gặp lỗi khi di chuyển pty (thiết bị cuối giả) phụ thuộc đến thiết bị đầu ra "
+"tiêu chuẩn trong con (trùng: %s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "lỗi đóng thiết bị nhập chuẩn trong tiến trình con (%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
-msgstr "lỗi di chuyển pty (thiết bị cuối giả) phụ tới thiết bị nhập chuẩn trong điều con (nhân đôi: %s)"
+msgstr ""
+"lỗi di chuyển pty (thiết bị cuối giả) phụ tới thiết bị nhập chuẩn trong điều "
+"con (nhân đôi: %s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "đóng pty (thiết bị cuối giả) phụ thuộc gặp lỗi (%s)"
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr "không thể tạo tiến trình con hoặc mở tpy"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
-msgstr "lỗi di chuyển ống dẫn đến thiết bị xuất chuẩn trong tiến trình con (trùng: %s)"
+msgstr ""
+"lỗi di chuyển ống dẫn đến thiết bị xuất chuẩn trong tiến trình con (trùng: "
+"%s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
-msgstr "lỗi di chuyển ống dẫn đến thiết bị nhập chuẩn trong tiến trình con (trùng: %s)"
+msgstr ""
+"lỗi di chuyển ống dẫn đến thiết bị nhập chuẩn trong tiến trình con (trùng: "
+"%s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "phục hồi đầu ra tiêu chuẩn trong tiến trình mẹ gặp lỗi\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "phục hồi đầu vào tiêu chuẩn trong tiến trình mẹ gặp lỗi\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "đóng ống dẫn gặp lỗi (%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "“|&” không được hỗ trợ"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "không thể mở ống dẫn “%s” (%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "không thể tạo tiến trình con cho “%s” (fork: %s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr "getline: cố ghi vào một đường ống hai chiều mà chiều ghi đã đóng"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser: nhận được con trỏ NULL"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
-msgstr "bộ phân tích đầu vào “%s” xung đột với bộ phân tích đầu vào được cài đặt trước đó “%s”"
+msgstr ""
+"bộ phân tích đầu vào “%s” xung đột với bộ phân tích đầu vào được cài đặt "
+"trước đó “%s”"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "bộ phân tích đầu vào “%s” gặp lỗi khi mở “%s”"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_wrapper: nhận được con trỏ NULL"
-#: io.c:3201
+#: io.c:3214
#, c-format
-msgid "output wrapper `%s' conflicts with previously installed output wrapper `%s'"
-msgstr "bộ bao kết xuất “%s” xung đột với bộ bao kết xuất được cài đặt trước đó “%s”"
+msgid ""
+"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
+msgstr ""
+"bộ bao kết xuất “%s” xung đột với bộ bao kết xuất được cài đặt trước đó “%s”"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "bộ bao kết xuất “%s” gặp lỗi khi mở “%s”"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor: nhận được con trỏ NULL"
-#: io.c:3258
+#: io.c:3271
#, c-format
-msgid "two-way processor `%s' conflicts with previously installed two-way processor `%s'"
-msgstr "bộ xử lý hai hướng “%s” xung đột với bộ xử lý hai hướng đã được cài đặt trước đó “%s”"
+msgid ""
+"two-way processor `%s' conflicts with previously installed two-way processor "
+"`%s'"
+msgstr ""
+"bộ xử lý hai hướng “%s” xung đột với bộ xử lý hai hướng đã được cài đặt "
+"trước đó “%s”"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "bộ xử lý hai hướng “%s” gặp lỗi khi mở “%s”"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "tập tin dữ liệu “%s” là rỗng"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "không thể cấp phát bộ nhớ nhập thêm nữa"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "giá trị đa ký tự của “RS” là phần mở rộng gawk"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "Truyền thông trên IPv6 không được hỗ trợ"
#: main.c:333
msgid "environment variable `POSIXLY_CORRECT' set: turning on `--posix'"
-msgstr "biến môi trường “POSIXLY_CORRECT” (đúng kiểu POSIX) đã được đặt; đang bật tùy chọn “--posix”"
+msgstr ""
+"biến môi trường “POSIXLY_CORRECT” (đúng kiểu POSIX) đã được đặt; đang bật "
+"tùy chọn “--posix”"
#: main.c:339
msgid "`--posix' overrides `--traditional'"
@@ -2804,7 +2953,9 @@ msgstr "tùy chọn “--posix” có quyền cao hơn “--traditional” (truy
#: main.c:350
msgid "`--posix'/`--traditional' overrides `--non-decimal-data'"
-msgstr "“--posix”/“--traditional” (cổ điển) có quyền cao hơn “--non-decimal-data” (dữ liệu khác thập phân)"
+msgstr ""
+"“--posix”/“--traditional” (cổ điển) có quyền cao hơn “--non-decimal-"
+"data” (dữ liệu khác thập phân)"
#: main.c:354
#, c-format
@@ -2837,12 +2988,15 @@ msgstr "không có đoạn chữ chương trình nào cả!"
#: main.c:574
#, c-format
msgid "Usage: %s [POSIX or GNU style options] -f progfile [--] file ...\n"
-msgstr "Cách dùng: %s [tùy chọn kiểu POSIX hay GNU] -f tập_tin_chương_trình [--] tập_tin …\n"
+msgstr ""
+"Cách dùng: %s [tùy chọn kiểu POSIX hay GNU] -f tập_tin_chương_trình [--] "
+"tập_tin …\n"
#: main.c:576
#, c-format
msgid "Usage: %s [POSIX or GNU style options] [--] %cprogram%c file ...\n"
-msgstr "Cách dùng: %s [tùy chọn kiểu POSIX hay GNU] [--] %cchương_trình%c tập_tin …\n"
+msgstr ""
+"Cách dùng: %s [tùy chọn kiểu POSIX hay GNU] [--] %cchương_trình%c tập_tin …\n"
#: main.c:581
msgid "POSIX options:\t\tGNU long options: (standard)\n"
@@ -3103,38 +3257,38 @@ msgstr "ngoại lệ số thực dấu chấm động"
msgid "fatal error: internal error"
msgstr "lỗi nghiêm trọng: lỗi nội bộ"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "lỗi nghiêm trọng: lỗi nội bộ: lỗi phân đoạn"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "lỗi nghiêm trọng: lỗi nội bộ: tràn ngăn xếp"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "không có fd (bộ mô tả tập tin) %d đã mở trước"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "không thể mở trước “/dev/null” cho fd %d"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "đối số rỗng cho tùy chọn “-e/--source” bị bỏ qua"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "-M bị bỏ qua: chưa biên dịch phần hỗ trợ MPFR/GMP"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s: tùy chọn “-W %s” không được nhận diện nên bị bỏ qua\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: tùy chọn cần đến đối số “-- %c”\n"
@@ -3217,8 +3371,12 @@ msgstr "không có số thập lúc nằm trong thoát chuỗi “\\x”"
#: node.c:611
#, c-format
-msgid "hex escape \\x%.*s of %d characters probably not interpreted the way you expect"
-msgstr "thoát chuỗi thập lục \\x%.*s chứa %d ký tự mà rất có thể không phải được đọc bằng cách dự định"
+msgid ""
+"hex escape \\x%.*s of %d characters probably not interpreted the way you "
+"expect"
+msgstr ""
+"thoát chuỗi thập lục \\x%.*s chứa %d ký tự mà rất có thể không phải được đọc "
+"bằng cách dự định"
#: node.c:626
#, c-format
@@ -3226,8 +3384,12 @@ msgid "escape sequence `\\%c' treated as plain `%c'"
msgstr "thoát chuỗi “\\%c” được xử lý như là “%c” chuẩn"
#: node.c:762
-msgid "Invalid multibyte data detected. There may be a mismatch between your data and your locale."
-msgstr "Dữ liệu dạng đa byte (multibyte) không hợp lệ được tìm thấy. Tại đó có lẽ không khớp giữa dữ liệu của bạn và nơi xảy ra."
+msgid ""
+"Invalid multibyte data detected. There may be a mismatch between your data "
+"and your locale."
+msgstr ""
+"Dữ liệu dạng đa byte (multibyte) không hợp lệ được tìm thấy. Tại đó có lẽ "
+"không khớp giữa dữ liệu của bạn và nơi xảy ra."
#: posix/gawkmisc.c:177
#, c-format
@@ -3237,7 +3399,9 @@ msgstr "%s %s “%s”: không thể lấy cờ mô tả (fd): (fcntl F_GETFD: %
#: posix/gawkmisc.c:189
#, c-format
msgid "%s %s `%s': could not set close-on-exec: (fcntl F_SETFD: %s)"
-msgstr "%s %s “%s”: không thể đặt “close-on-exec” (đóng một khi thực hiện): (fcntl F_SETFD: %s)"
+msgstr ""
+"%s %s “%s”: không thể đặt “close-on-exec” (đóng một khi thực hiện): (fcntl "
+"F_SETFD: %s)"
#: profile.c:97
#, c-format
@@ -3306,7 +3470,9 @@ msgstr "redir2str: không hiểu kiểu chuyển hướng %d"
#: re.c:610
#, c-format
msgid "regexp component `%.*s' should probably be `[%.*s]'"
-msgstr "thành phần của biểu thức chính qui (regexp) “%.*s” gần như chắc chắn nên là “[%.*s]”"
+msgstr ""
+"thành phần của biểu thức chính qui (regexp) “%.*s” gần như chắc chắn nên là "
+"“[%.*s]”"
#: support/dfa.c:1005
msgid "unbalanced ["
@@ -3502,8 +3668,11 @@ msgstr "không thể pop (lấy ra) ngữ cảnh chính"
#~ msgid "extension: cannot open library `%s' (%s)"
#~ msgstr "phần mở rộng: không thể mở thư viện “%s” (%s)"
-#~ msgid "extension: library `%s': does not define `plugin_is_GPL_compatible' (%s)"
-#~ msgstr "phần mở rộng: thư viện “%s”: chưa định nghĩa “plugin_is_GPL_compatible” (%s)"
+#~ msgid ""
+#~ "extension: library `%s': does not define `plugin_is_GPL_compatible' (%s)"
+#~ msgstr ""
+#~ "phần mở rộng: thư viện “%s”: chưa định nghĩa "
+#~ "“plugin_is_GPL_compatible” (%s)"
#~ msgid "extension: library `%s': cannot call function `%s' (%s)"
#~ msgstr "phần mở rộng: thư viện “%s”: không thể gọi hàm “%s” (%s)"
@@ -3524,7 +3693,9 @@ msgstr "không thể pop (lấy ra) ngữ cảnh chính"
#~ msgstr "tên hàm “%s” đã được định nghĩa trước đó"
#~ msgid "extension: can't use gawk built-in `%s' as function name"
-#~ msgstr "extension: (phần mở rộng) không thể dùng điều có sẵn của gawk “%s” như là tên hàm"
+#~ msgstr ""
+#~ "extension: (phần mở rộng) không thể dùng điều có sẵn của gawk “%s” như là "
+#~ "tên hàm"
#~ msgid "chdir: called with incorrect number of arguments, expecting 1"
#~ msgstr "chdir: được gọi với số lượng đối số không đúng, cần 1"
@@ -3593,7 +3764,8 @@ msgstr "không thể pop (lấy ra) ngữ cảnh chính"
#~ msgstr "“getline var” không hợp lệ bên trong quy tắc “%s”"
#~ msgid "no (known) protocol supplied in special filename `%s'"
-#~ msgstr "trong tên tập tin đặc biệt “%s” không cung cấp giao thức (đã biết) nào"
+#~ msgstr ""
+#~ "trong tên tập tin đặc biệt “%s” không cung cấp giao thức (đã biết) nào"
#~ msgid "special file name `%s' is incomplete"
#~ msgstr "tên tập tin đặc biệt “%s” chưa xong"
@@ -3674,8 +3846,11 @@ msgstr "không thể pop (lấy ra) ngữ cảnh chính"
#~ msgid "statement has no effect"
#~ msgstr "câu không có tác dụng"
-#~ msgid "for loop: array `%s' changed size from %ld to %ld during loop execution"
-#~ msgstr "cho loop: (cho vòng lặp) mảng “%s” đã thay đổi kích thước từ %ld đến %ld trong khi thực hiện vòng lặp"
+#~ msgid ""
+#~ "for loop: array `%s' changed size from %ld to %ld during loop execution"
+#~ msgstr ""
+#~ "cho loop: (cho vòng lặp) mảng “%s” đã thay đổi kích thước từ %ld đến %ld "
+#~ "trong khi thực hiện vòng lặp"
#~ msgid "function called indirectly through `%s' does not exist"
#~ msgstr "hàm được gọi gián tiếp thông qua “%s” không tồn tại"
diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo
index 9d9284f0..f2180d77 100644
--- a/po/zh_CN.gmo
+++ b/po/zh_CN.gmo
Binary files differ
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 6c27feed..431598c6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gawk 4.2.0e\n"
"Report-Msgid-Bugs-To: bug-gawk@gnu.org\n"
-"POT-Creation-Date: 2018-01-28 20:07+0200\n"
+"POT-Creation-Date: 2018-02-13 22:33+0200\n"
"PO-Revision-Date: 2018-02-05 19:53+0100\n"
"Last-Translator: Tianze Wang <zwpwjwtz@126.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
@@ -233,11 +233,11 @@ msgstr "试图把非函数“%s”当函数来调用"
msgid "invalid subscript expression"
msgstr "无效的下标表达式"
-#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:128
+#: awkgram.y:2308 awkgram.y:2328 gawkapi.c:272 gawkapi.c:289 msg.c:130
msgid "warning: "
msgstr "警告:"
-#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:160
+#: awkgram.y:2326 gawkapi.c:244 gawkapi.c:287 msg.c:162
msgid "fatal: "
msgstr "致命错误:"
@@ -516,7 +516,8 @@ msgid "division by zero attempted in `%%'"
msgstr "在“%%”中试图除 0"
#: awkgram.y:5552
-msgid "cannot assign a value to the result of a field post-increment expression"
+msgid ""
+"cannot assign a value to the result of a field post-increment expression"
msgstr "无法将值赋给字段后增表达式"
#: awkgram.y:5555
@@ -766,7 +767,8 @@ msgstr "substr:开始坐标 %g 超出字符串尾部"
#: builtin.c:1863
#, c-format
-msgid "substr: length %g at start index %g exceeds length of first argument (%lu)"
+msgid ""
+"substr: length %g at start index %g exceeds length of first argument (%lu)"
msgstr "substr:在开始坐标 %2$g 下长度 %1$g 超出第一个参数的长度 (%3$lu)"
#: builtin.c:1936
@@ -1005,7 +1007,8 @@ msgstr "intdiv:试图除0"
#: builtin.c:4080
#, c-format
-msgid "typeof detected invalid flags combination `%s'; please file a bug report."
+msgid ""
+"typeof detected invalid flags combination `%s'; please file a bug report."
msgstr "typeof 函数发现一个无效的选项组合“%s”;请向开发者汇报此错误。"
#: builtin.c:4095
@@ -1119,11 +1122,14 @@ msgid "non-zero integer value"
msgstr "非零整数值"
#: command.y:819
-msgid "backtrace [N] - print trace of all or N innermost (outermost if N < 0) frames."
+msgid ""
+"backtrace [N] - print trace of all or N innermost (outermost if N < 0) "
+"frames."
msgstr "backtrace [N] - 显示所有或最近 N 层 (若 N < 0,则显示最远 N 层) 调用。"
#: command.y:821
-msgid "break [[filename:]N|function] - set breakpoint at the specified location."
+msgid ""
+"break [[filename:]N|function] - set breakpoint at the specified location."
msgstr "break [[文件名:]N|函数] - 在指定处设置断点。"
#: command.y:823
@@ -1131,7 +1137,9 @@ msgid "clear [[filename:]N|function] - delete breakpoints previously set."
msgstr "clear [[文件名:]N|函数] - 删除之前设置的断点。"
#: command.y:825
-msgid "commands [num] - starts a list of commands to be executed at a breakpoint(watchpoint) hit."
+msgid ""
+"commands [num] - starts a list of commands to be executed at a "
+"breakpoint(watchpoint) hit."
msgstr "commands [编号] - 在断点 (监视点) 处执行一系列命令。"
#: command.y:827
@@ -1195,8 +1203,12 @@ msgid "ignore N COUNT - set ignore-count of breakpoint number N to COUNT."
msgstr "ignore N 次数 - 设置忽略断点 N 的次数。"
#: command.y:857
-msgid "info topic - source|sources|variables|functions|break|frame|args|locals|display|watch."
-msgstr "info 主题 - 查看 info 信息,主题可以为 source|sources|variables|functions|break|frame|args|locals|display|watch。"
+msgid ""
+"info topic - source|sources|variables|functions|break|frame|args|locals|"
+"display|watch."
+msgstr ""
+"info 主题 - 查看 info 信息,主题可以为 source|sources|variables|functions|"
+"break|frame|args|locals|display|watch。"
#: command.y:859
msgid "list [-|+|[filename:]lineno|function|range] - list specified line(s)."
@@ -1207,7 +1219,8 @@ msgid "next [COUNT] - step program, proceeding through subroutine calls."
msgstr "next [次数] - 单步运行程序,并且步过子调用。"
#: command.y:863
-msgid "nexti [COUNT] - step one instruction, but proceed through subroutine calls."
+msgid ""
+"nexti [COUNT] - step one instruction, but proceed through subroutine calls."
msgstr "nexti [次数] - 单运行一步指令,但步过其子调用。"
#: command.y:865
@@ -1243,7 +1256,8 @@ msgid "set var = value - assign value to a scalar variable."
msgstr "set 变量 = 值 - 给标量变量赋值。"
#: command.y:883
-msgid "silent - suspends usual message when stopped at a breakpoint/watchpoint."
+msgid ""
+"silent - suspends usual message when stopped at a breakpoint/watchpoint."
msgstr "silent - 在断点/监视点处中断时,隐藏常规消息。"
#: command.y:885
@@ -1271,7 +1285,9 @@ msgid "undisplay [N] - remove variable(s) from automatic display list."
msgstr "undisplay [N] - 从自动显示列表中移除指定变量。"
#: command.y:897
-msgid "until [[filename:]N|function] - execute until program reaches a different line or line N within current frame."
+msgid ""
+"until [[filename:]N|function] - execute until program reaches a different "
+"line or line N within current frame."
msgstr "until [[文件名:]N|函数] - 在当前层中执行,在下一行或第 N 行处暂停。"
#: command.y:899
@@ -1287,10 +1303,14 @@ msgid "watch var - set a watchpoint for a variable."
msgstr "watch 变量 - 为变量设置监视点。"
#: command.y:905
-msgid "where [N] - (same as backtrace) print trace of all or N innermost (outermost if N < 0) frames."
-msgstr "where [N] - (与backtrace相同) 显示所有或最近 N 层 (若 N < 0,则显示最远 N 层) 调用。"
+msgid ""
+"where [N] - (same as backtrace) print trace of all or N innermost (outermost "
+"if N < 0) frames."
+msgstr ""
+"where [N] - (与backtrace相同) 显示所有或最近 N 层 (若 N < 0,则显示最远 N "
+"层) 调用。"
-#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:137
+#: command.y:1016 debug.c:401 gawkapi.c:258 msg.c:139
#, c-format
msgid "error: "
msgstr "错误:"
@@ -1973,7 +1993,8 @@ msgstr "load_ext:无法打开库“%s”(%s)\n"
#: ext.c:66
#, c-format
-msgid "load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
+msgid ""
+"load_ext: library `%s': does not define `plugin_is_GPL_compatible' (%s)\n"
msgstr "load_ext:库“%s”:未定义“plugin_is_GPL_compatible”(%s)\n"
#: ext.c:72
@@ -2415,7 +2436,9 @@ msgstr "awk_value_to_node:数值类型“%d”无效"
#: gawkapi.c:520
#, c-format
-msgid "node_to_awk_value: detected invalid numeric flags combination `%s'; please file a bug report."
+msgid ""
+"node_to_awk_value: detected invalid numeric flags combination `%s'; please "
+"file a bug report."
msgstr "node_to_awk_value:发现一个无效的选项组合“%s”;请向开发者汇报此错误。"
#: gawkapi.c:548
@@ -2428,7 +2451,9 @@ msgstr "node_to_awk_value:值为空"
#: gawkapi.c:607 gawkapi.c:641 gawkapi.c:668 gawkapi.c:701
#, c-format
-msgid "node_to_awk_value detected invalid flags combination `%s'; please file a bug report."
+msgid ""
+"node_to_awk_value detected invalid flags combination `%s'; please file a bug "
+"report."
msgstr "node_to_awk_value 发现了一个无效的选项组合“%s”;请向开发者汇报此错误。"
#: gawkapi.c:1072
@@ -2493,7 +2518,8 @@ msgstr "“%s”重定向中的表达式是空字符串"
#: io.c:796
#, c-format
-msgid "filename `%.*s' for `%s' redirection may be result of logical expression"
+msgid ""
+"filename `%.*s' for `%s' redirection may be result of logical expression"
msgstr "“%3$s”重定向中的文件名“%2$.*1$s”可能是逻辑表达式的结果"
#: io.c:844
@@ -2518,7 +2544,8 @@ msgstr "无法为输入打开管道“%s”(%s)"
#: io.c:950
#, c-format
-msgid "get_file socket creation not supported on this platform for `%s' with fd %d"
+msgid ""
+"get_file socket creation not supported on this platform for `%s' with fd %d"
msgstr "此平台不支持使用 get_file 创建文件描述符为 %2$d 的套接字“%1$s”"
#: io.c:961
@@ -2537,7 +2564,8 @@ msgid "can't redirect to `%s' (%s)"
msgstr "无法重定向到“%s”(%s)"
#: io.c:1153
-msgid "reached system limit for open files: starting to multiplex file descriptors"
+msgid ""
+"reached system limit for open files: starting to multiplex file descriptors"
msgstr "打开的文件数达到系统限制:开始复用文件描述符"
#: io.c:1169
@@ -2632,166 +2660,169 @@ msgstr "刷新合作进程管道“%s”时出错(%s)。"
msgid "file flush of `%s' failed (%s)."
msgstr "刷新文件“%s”时出错(%s)。"
-#: io.c:1590
+#: io.c:1603
#, c-format
msgid "local port %s invalid in `/inet': %s"
msgstr "本地端口 %s 在“/inet”中无效:%s"
-#: io.c:1593
+#: io.c:1606
#, c-format
msgid "local port %s invalid in `/inet'"
msgstr "本地端口 %s 在“/inet”中无效"
-#: io.c:1616
+#: io.c:1629
#, c-format
msgid "remote host and port information (%s, %s) invalid: %s"
msgstr "远程主机和端口信息 (%s, %s) 无效:%s"
-#: io.c:1619
+#: io.c:1632
#, c-format
msgid "remote host and port information (%s, %s) invalid"
msgstr "远程主机和端口信息 (%s, %s) 无效"
-#: io.c:1861
+#: io.c:1874
msgid "TCP/IP communications are not supported"
msgstr "TCP/IP 通讯不被支持"
-#: io.c:1989 io.c:2032
+#: io.c:2002 io.c:2045
#, c-format
msgid "could not open `%s', mode `%s'"
msgstr "无法以模式“%2$s”打开“%1$s”"
-#: io.c:1997 io.c:2049
+#: io.c:2010 io.c:2062
#, c-format
msgid "close of master pty failed (%s)"
msgstr "关闭主 pty 失败(%s)"
-#: io.c:1999 io.c:2051 io.c:2398 io.c:2642
+#: io.c:2012 io.c:2064 io.c:2411 io.c:2655
#, c-format
msgid "close of stdout in child failed (%s)"
msgstr "在子进程中关闭标准输出失败(%s)"
-#: io.c:2002 io.c:2054
+#: io.c:2015 io.c:2067
#, c-format
msgid "moving slave pty to stdout in child failed (dup: %s)"
msgstr "在子进程中将从 pty 改为标准输出失败(dup:%s)"
-#: io.c:2004 io.c:2056 io.c:2403
+#: io.c:2017 io.c:2069 io.c:2416
#, c-format
msgid "close of stdin in child failed (%s)"
msgstr "在子进程中关闭标准输入失败(%s)"
-#: io.c:2007 io.c:2059
+#: io.c:2020 io.c:2072
#, c-format
msgid "moving slave pty to stdin in child failed (dup: %s)"
msgstr "在子进程中将从 pty 改为标准输入失败(dup:%s)"
-#: io.c:2009 io.c:2061 io.c:2083
+#: io.c:2022 io.c:2074 io.c:2096
#, c-format
msgid "close of slave pty failed (%s)"
msgstr "关闭从 pty 失败(%s)"
-#: io.c:2245
+#: io.c:2258
msgid "could not create child process or open pty"
msgstr "无法创建子进程或打开 pty"
-#: io.c:2333 io.c:2401 io.c:2613 io.c:2645
+#: io.c:2346 io.c:2414 io.c:2626 io.c:2658
#, c-format
msgid "moving pipe to stdout in child failed (dup: %s)"
msgstr "在子进程中将管道改为标准输出失败(dup:%s)"
-#: io.c:2340 io.c:2406
+#: io.c:2353 io.c:2419
#, c-format
msgid "moving pipe to stdin in child failed (dup: %s)"
msgstr "在子进程中将管道改为标准输入失败(dup:%s)"
-#: io.c:2366 io.c:2635
+#: io.c:2379 io.c:2648
msgid "restoring stdout in parent process failed\n"
msgstr "在父进程中恢复标准输出失败\n"
-#: io.c:2374
+#: io.c:2387
msgid "restoring stdin in parent process failed\n"
msgstr "在父进程中恢复标准输入失败\n"
-#: io.c:2409 io.c:2647 io.c:2662
+#: io.c:2422 io.c:2660 io.c:2675
#, c-format
msgid "close of pipe failed (%s)"
msgstr "关闭管道失败(%s)"
-#: io.c:2468
+#: io.c:2481
msgid "`|&' not supported"
msgstr "“|&”不被支持"
-#: io.c:2598
+#: io.c:2611
#, c-format
msgid "cannot open pipe `%s' (%s)"
msgstr "无法打开管道“%s”(%s)"
-#: io.c:2656
+#: io.c:2669
#, c-format
msgid "cannot create child process for `%s' (fork: %s)"
msgstr "无法为“%s”创建子进程(fork:%s)"
-#: io.c:2794
+#: io.c:2807
msgid "getline: attempt to read from closed read end of two-way pipe"
msgstr "getline:试图从读取端已被关闭的双向管道中读取数据"
-#: io.c:3118
+#: io.c:3131
msgid "register_input_parser: received NULL pointer"
msgstr "register_input_parser:指针为空"
-#: io.c:3146
+#: io.c:3159
#, c-format
msgid "input parser `%s' conflicts with previously installed input parser `%s'"
msgstr "输入解析器“%s”与之前设置的“%s”相冲突"
-#: io.c:3153
+#: io.c:3166
#, c-format
msgid "input parser `%s' failed to open `%s'"
msgstr "输入解析器“%s”打开“%s”失败"
-#: io.c:3173
+#: io.c:3186
msgid "register_output_wrapper: received NULL pointer"
msgstr "register_output_parser:指针为空"
-#: io.c:3201
+#: io.c:3214
#, c-format
-msgid "output wrapper `%s' conflicts with previously installed output wrapper `%s'"
+msgid ""
+"output wrapper `%s' conflicts with previously installed output wrapper `%s'"
msgstr "输出解析器“%s”与之前设置的“%s”相冲突"
-#: io.c:3208
+#: io.c:3221
#, c-format
msgid "output wrapper `%s' failed to open `%s'"
msgstr "输出解析器“%s”打开“%s”失败"
-#: io.c:3229
+#: io.c:3242
msgid "register_output_processor: received NULL pointer"
msgstr "register_output_processor:指针为空"
-#: io.c:3258
+#: io.c:3271
#, c-format
-msgid "two-way processor `%s' conflicts with previously installed two-way processor `%s'"
+msgid ""
+"two-way processor `%s' conflicts with previously installed two-way processor "
+"`%s'"
msgstr "双向处理器“%s”与之前设置的“%s”相冲突"
-#: io.c:3267
+#: io.c:3280
#, c-format
msgid "two way processor `%s' failed to open `%s'"
msgstr "双向处理器“%s”打开“%s”失败"
-#: io.c:3391
+#: io.c:3404
#, c-format
msgid "data file `%s' is empty"
msgstr "数据文件“%s”为空"
-#: io.c:3433 io.c:3441
+#: io.c:3446 io.c:3454
msgid "could not allocate more input memory"
msgstr "无法分配更多的输入内存"
-#: io.c:4059
+#: io.c:4072
msgid "multicharacter value of `RS' is a gawk extension"
msgstr "“RS”设置为多字符是 gawk 扩展"
-#: io.c:4213
+#: io.c:4226
msgid "IPv6 communication is not supported"
msgstr "不支持 IPv6 通讯"
@@ -3048,7 +3079,9 @@ msgstr ""
msgid ""
"You should have received a copy of the GNU General Public License\n"
"along with this program. If not, see http://www.gnu.org/licenses/.\n"
-msgstr "你应该收到程序附带的一份 GNU 通用公共许可证(GPL)。如果没有收到,请参看 http://www.gnu.org/licenses/ 。\n"
+msgstr ""
+"你应该收到程序附带的一份 GNU 通用公共许可证(GPL)。如果没有收到,请参看 "
+"http://www.gnu.org/licenses/ 。\n"
#: main.c:725
msgid "-Ft does not set FS to tab in POSIX awk"
@@ -3091,38 +3124,38 @@ msgstr "浮点数异常"
msgid "fatal error: internal error"
msgstr "致命错误:内部错误"
-#: main.c:1242
+#: main.c:1244
msgid "fatal error: internal error: segfault"
msgstr "致命错误:内部错误:段错误"
-#: main.c:1254
+#: main.c:1257
msgid "fatal error: internal error: stack overflow"
msgstr "致命错误:内部错误:栈溢出"
-#: main.c:1313
+#: main.c:1317
#, c-format
msgid "no pre-opened fd %d"
msgstr "文件描述符 %d 未被打开"
-#: main.c:1320
+#: main.c:1324
#, c-format
msgid "could not pre-open /dev/null for fd %d"
msgstr "无法为文件描述符 %d 预打开 /dev/null"
-#: main.c:1534
+#: main.c:1538
msgid "empty argument to `-e/--source' ignored"
msgstr "“-e/--source”的空参数被忽略"
-#: main.c:1605
+#: main.c:1609
msgid "-M ignored: MPFR/GMP support not compiled in"
msgstr "忽略 -M ignored:未将 MPFR/GMP 支持编译于"
-#: main.c:1630
+#: main.c:1634
#, c-format
msgid "%s: option `-W %s' unrecognized, ignored\n"
msgstr "%s:选项“-W %s”无法识别,忽略\n"
-#: main.c:1683
+#: main.c:1687
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s:选项需要一个参数 -- %c\n"
@@ -3205,7 +3238,9 @@ msgstr "“\\x”转义序列中没有十六进制数"
#: node.c:611
#, c-format
-msgid "hex escape \\x%.*s of %d characters probably not interpreted the way you expect"
+msgid ""
+"hex escape \\x%.*s of %d characters probably not interpreted the way you "
+"expect"
msgstr "十六进制转义符 \\x%.*s 表示的 %d 个字符可能不会被如期望情况解释"
#: node.c:626
@@ -3214,7 +3249,9 @@ msgid "escape sequence `\\%c' treated as plain `%c'"
msgstr "转义序列“\\%c”被当作单纯的“%c”"
#: node.c:762
-msgid "Invalid multibyte data detected. There may be a mismatch between your data and your locale."
+msgid ""
+"Invalid multibyte data detected. There may be a mismatch between your data "
+"and your locale."
msgstr "检测到了无效的多字节数据。可能你的数据和区域设置不匹配。"
#: posix/gawkmisc.c:177
@@ -3490,7 +3527,8 @@ msgstr "无法弹出 main 的上下文"
#~ msgid "extension: cannot open library `%s' (%s)"
#~ msgstr "extension:无法打开库“%s”(%s)"
-#~ msgid "extension: library `%s': does not define `plugin_is_GPL_compatible' (%s)"
+#~ msgid ""
+#~ "extension: library `%s': does not define `plugin_is_GPL_compatible' (%s)"
#~ msgstr "extension:库“%s”:未定义“plugin_is_GPL_compatible”(%s)"
#~ msgid "extension: library `%s': cannot call function `%s' (%s)"
@@ -3640,7 +3678,8 @@ msgstr "无法弹出 main 的上下文"
#~ msgid "xor(%lf, %lf): fractional values will be truncated"
#~ msgstr "xor(%lf, %lf): 小数部分会被截断"
-#~ msgid "for loop: array `%s' changed size from %ld to %ld during loop execution"
+#~ msgid ""
+#~ "for loop: array `%s' changed size from %ld to %ld during loop execution"
#~ msgstr "for loop: 数组“%s”在循环执行时大小从 %ld 改变为 %ld"
#~ msgid "`break' outside a loop is not portable"
@@ -3661,7 +3700,9 @@ msgstr "无法弹出 main 的上下文"
#~ msgid "statement has no effect"
#~ msgstr "表达式无任何作用"
-#~ msgid "concatenation: side effects in one expression have changed the length of another!"
+#~ msgid ""
+#~ "concatenation: side effects in one expression have changed the length of "
+#~ "another!"
#~ msgstr "concatenation: 一个表达式的额外效应已改变另一个的长度!"
#~ msgid "assignment used in conditional context"