update to 0.16.1; mostly c2k7 work

This commit is contained in:
naddy 2007-08-25 13:48:23 +00:00
parent 787fb96f08
commit 56b1ef38ba
28 changed files with 414 additions and 239 deletions

View File

@ -1,14 +1,13 @@
# $OpenBSD: Makefile,v 1.45 2007/04/27 18:40:39 bernd Exp $
# $OpenBSD: Makefile,v 1.46 2007/08/25 13:48:23 naddy Exp $
COMMENT= "GNU gettext"
COMMENT= GNU gettext
DISTNAME= gettext-0.14.6
PKGNAME= ${DISTNAME}p0
SHARED_LIBS += intl 3.0 # .7.3
SHARED_LIBS += asprintf 1.0 # .0.0
SHARED_LIBS += gettextlib 0.0 # .0.0
SHARED_LIBS += gettextsrc 0.0 # .0.0
SHARED_LIBS += gettextpo 1.0 # .1.0
DISTNAME= gettext-0.16.1
SHARED_LIBS += intl 4.0 # .8.1
SHARED_LIBS += asprintf 1.0 # .0.0
SHARED_LIBS += gettextlib 1.0 # .0.0
SHARED_LIBS += gettextsrc 1.0 # .0.0
SHARED_LIBS += gettextpo 2.0 # .3.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=gettext/}
@ -24,19 +23,18 @@ PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= converters/libiconv
WANTLIB= c expat
WANTLIB= c expat m
USE_LIBTOOL= Yes
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--with-included-gettext \
--with-libiconv-prefix="${LOCALBASE}" \
--with-libexpat-prefix="${X11BASE}" \
--mandir="${PREFIX}/man"
--with-libexpat-prefix="${X11BASE}"
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/build-aux
EXTRA_LOCALES= bg en eo he hu hr lv nb
EXTRA_LOCALES= bg en he hu hr lv nb
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/emacs/site-lisp

View File

@ -1,5 +1,5 @@
MD5 (gettext-0.14.6.tar.gz) = wm/H8KSTxcfDm7xOftQnkA==
RMD160 (gettext-0.14.6.tar.gz) = AhONEv1NnOCzvaLRMvFWmzDRZyY=
SHA1 (gettext-0.14.6.tar.gz) = DYzo2aCacZBloVMDmcT0XBWgAsU=
SHA256 (gettext-0.14.6.tar.gz) = TPMWXTR3ojF0Fw6Jv6OvljrEPrO1GzLjQ9q4B8hBoLA=
SIZE (gettext-0.14.6.tar.gz) = 7102365
MD5 (gettext-0.16.1.tar.gz) = PZrSQwHG1rF+wwcEoT/hJw==
RMD160 (gettext-0.16.1.tar.gz) = D6lrLQBeJJDoYDoKNhIEEIbVrqE=
SHA1 (gettext-0.16.1.tar.gz) = hkL0NG39ahjs2IMynhUL/p4IhsM=
SHA256 (gettext-0.16.1.tar.gz) = C/hQ0aB5+1ph8KR7Gp79NetEAyJVN14c7bAlO8J7N20=
SIZE (gettext-0.16.1.tar.gz) = 8539634

View File

@ -1,6 +1,6 @@
# $OpenBSD: gettext.port.mk,v 1.6 2006/11/25 12:58:18 steven Exp $
# $OpenBSD: gettext.port.mk,v 1.7 2007/08/25 13:48:23 naddy Exp $
MODGETTEXT_LIB_DEPENDS= intl.>=3:gettext->=0.10.38:devel/gettext \
MODGETTEXT_LIB_DEPENDS= intl.>=4:gettext->=0.10.38:devel/gettext \
iconv.>=4::converters/libiconv
MODGETTEXT_RUN_DEPENDS= :gettext->=0.10.38:devel/gettext
@ -9,5 +9,5 @@ MODGETTEXT_RUN_DEPENDS= :gettext->=0.10.38:devel/gettext
# necessary so that we have locale.alias installed on static archs.
# Typically installed in PREFIX/share/locale.
LIB_DEPENDS+= ${MODGETTEXT_LIB_DEPENDS}
BUILD_DEPENDS+= :gettext->=0.14.6:devel/gettext
BUILD_DEPENDS+= :gettext->=0.16.1:devel/gettext
RUN_DEPENDS+= ${MODGETTEXT_RUN_DEPENDS}

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-gettext-runtime_intl_Makefile_in,v 1.2 2006/01/06 21:16:16 bernd Exp $
--- gettext-runtime/intl/Makefile.in.orig Fri May 20 22:05:54 2005
+++ gettext-runtime/intl/Makefile.in Fri Jan 6 19:17:23 2006
@@ -154,7 +154,7 @@ libintl.a libgnuintl.a: $(OBJECTS)
$OpenBSD: patch-gettext-runtime_intl_Makefile_in,v 1.3 2007/08/25 13:48:23 naddy Exp $
--- gettext-runtime/intl/Makefile.in.orig Mon May 28 22:53:52 2007
+++ gettext-runtime/intl/Makefile.in Mon May 28 22:54:23 2007
@@ -189,7 +189,7 @@ libintl.a libgnuintl.a: $(OBJECTS)
libintl.la libgnuintl.la: $(OBJECTS)
$(LIBTOOL) --mode=link \
$(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \
- $(OBJECTS) @LTLIBICONV@ @INTL_MACOSX_LIBS@ $(LIBS) -lc \
+ $(OBJECTS) @INTL_MACOSX_LIBS@ $(LIBS) \
- $(OBJECTS) @LTLIBICONV@ @INTL_MACOSX_LIBS@ $(LIBS) @LTLIBTHREAD@ -lc \
+ $(OBJECTS) @INTL_MACOSX_LIBS@ $(LIBS) @LTLIBTHREAD@ \
-version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
-rpath $(libdir) \
-no-undefined

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-gettext-runtime_intl_localcharset_c,v 1.1 2007/08/25 13:48:23 naddy Exp $
--- gettext-runtime/intl/localcharset.c.orig Wed Aug 1 17:05:27 2007
+++ gettext-runtime/intl/localcharset.c Wed Aug 1 17:15:26 2007
@@ -194,8 +194,9 @@ get_charset_aliases (void)
free (old_res_ptr);
break;
}
- strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
- strcpy (res_ptr + res_size - (l2 + 1), buf2);
+ strlcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1,
+ l1 + 1 + l2 + 1 + 1);
+ strlcpy (res_ptr + res_size - (l2 + 1), buf2, l2 + 1 + 1);
}
fclose (fp);
if (res_size == 0)

View File

@ -1,15 +1,15 @@
$OpenBSD: patch-gettext-runtime_intl_log_c,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-runtime/intl/log.c.orig Wed Nov 2 21:44:38 2005
+++ gettext-runtime/intl/log.c Wed Nov 2 21:45:26 2005
@@ -56,6 +56,7 @@ _nl_log_untranslated (const char *logfil
static char *last_logfilename = NULL;
static FILE *last_logfile = NULL;
$OpenBSD: patch-gettext-runtime_intl_log_c,v 1.2 2007/08/25 13:48:23 naddy Exp $
--- gettext-runtime/intl/log.c.orig Mon Nov 27 18:02:00 2006
+++ gettext-runtime/intl/log.c Wed Aug 1 17:17:41 2007
@@ -64,6 +64,7 @@ _nl_log_untranslated_locked (const char *logfilename,
const char *msgid1, const char *msgid2, int plural)
{
FILE *logfile;
+ size_t len;
/* Can we reuse the last opened logfile? */
if (last_logfilename == NULL || strcmp (logfilename, last_logfilename) != 0)
@@ -72,10 +73,11 @@ _nl_log_untranslated (const char *logfil
@@ -80,10 +81,11 @@ _nl_log_untranslated_locked (const char *logfilename,
last_logfilename = NULL;
}
/* Open the logfile. */

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gettext-runtime_intl_relocatable_c,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-runtime/intl/relocatable.c.orig Wed Nov 2 21:45:39 2005
+++ gettext-runtime/intl/relocatable.c Wed Nov 2 21:48:14 2005
@@ -429,15 +429,19 @@ relocate (const char *pathname)
$OpenBSD: patch-gettext-runtime_intl_relocatable_c,v 1.2 2007/08/25 13:48:23 naddy Exp $
--- gettext-runtime/intl/relocatable.c.orig Mon Nov 27 18:02:00 2006
+++ gettext-runtime/intl/relocatable.c Wed Aug 1 17:17:41 2007
@@ -448,15 +448,19 @@ relocate (const char *pathname)
{
/* pathname starts with orig_prefix. */
const char *pathname_tail = &pathname[orig_prefix_len];

View File

@ -0,0 +1,23 @@
$OpenBSD: patch-gettext-tools_gnulib-lib_Makefile_in,v 1.1 2007/08/25 13:48:23 naddy Exp $
--- gettext-tools/gnulib-lib/Makefile.in.orig Mon Nov 27 18:34:53 2006
+++ gettext-tools/gnulib-lib/Makefile.in Tue May 29 02:39:16 2007
@@ -48,7 +48,7 @@ host_triplet = @host@
# Tell the mingw or Cygwin linker which symbols to export.
@WOE32DLL_TRUE@am__append_1 = ../woe32dll/gettextlib-exports.c
@WOE32DLL_TRUE@am__append_2 = -Wl,--export-all-symbols
-@GL_COND_LIBTOOL_TRUE@am__append_3 = $(LTLIBICONV)
+#am__append_3 = $(LTLIBICONV)
subdir = gnulib-lib
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in
@@ -549,8 +549,8 @@ libgettextlib_la_DEPENDENCIES = $(gl_LTLIBOBJS)
# Need @LTLIBINTL@ because many source files use gettext().
# Need @LTLIBICONV@ because linebreak.c and striconv.c use iconv().
-libgettextlib_la_LDFLAGS = $(AM_LDFLAGS) -release @VERSION@ \
- @LTLIBINTL@ @LTLIBICONV@ -lc @LTNOUNDEF@ $(am__append_2) \
+libgettextlib_la_LDFLAGS = $(AM_LDFLAGS) \
+ @LTNOUNDEF@ $(am__append_2) \
$(am__append_3)
noinst_HEADERS =
pkgdata_DATA = javaversion.class

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-gettext-tools_lib_Makefile_in,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/lib/Makefile.in.orig Mon May 23 13:24:27 2005
+++ gettext-tools/lib/Makefile.in Wed Nov 2 21:57:01 2005
@@ -454,8 +454,7 @@ libgettextlib_la_LIBADD = @LTLIBOBJS@
# Need @LTLIBINTL@ because many source files use gettext().
# Need @LTLIBICONV@ because linebreak.c uses iconv().
libgettextlib_la_LDFLAGS = \
- -release @VERSION@ \
- @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
+ -no-undefined
# Extra files to be installed.

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-gettext-tools_libgettextpo_Makefile_in,v 1.1 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/libgettextpo/Makefile.in.orig Mon Nov 27 18:48:21 2006
+++ gettext-tools/libgettextpo/Makefile.in Tue May 29 02:50:09 2007
@@ -50,7 +50,7 @@ host_triplet = @host@
@WOE32DLL_TRUE@am__append_2 = -Wl,--export-all-symbols
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.gnulib \
$(srcdir)/Makefile.in $(srcdir)/exported.sh.in ChangeLog
-@GL_COND_LIBTOOL_TRUE@am__append_3 = $(LTLIBICONV)
+#am__append_3 = $(LTLIBICONV)
subdir = libgettextpo
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = \
@@ -599,7 +599,7 @@ LTV_AGE = 3
libgettextpo_la_LIBADD = libgnu.la
libgettextpo_la_LDFLAGS = -version-info \
$(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) -rpath $(libdir) \
- @LTLIBINTL@ @LTLIBICONV@ -lc @LTNOUNDEF@ $(am__append_2)
+ @LTNOUNDEF@ $(am__append_2)
libgnu_la_SOURCES = allocsa.h allocsa.c basename.h basename.c \
c-ctype.h c-ctype.c c-strcase.h c-strcasecmp.c c-strncasecmp.c \
c-strstr.h c-strstr.c error-progname.h error-progname.c exit.h \

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-gettext-tools_libuniname_Makefile_in,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/libuniname/Makefile.in.orig Tue Nov 1 18:59:00 2005
+++ gettext-tools/libuniname/Makefile.in Tue Nov 1 19:00:55 2005
@@ -345,7 +345,7 @@ TESTS = test-names.sh
$OpenBSD: patch-gettext-tools_libuniname_Makefile_in,v 1.2 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/libuniname/Makefile.in.orig Mon Nov 27 18:34:54 2006
+++ gettext-tools/libuniname/Makefile.in Tue May 29 06:16:46 2007
@@ -456,7 +456,7 @@ TESTS = test-names.sh
TESTS_ENVIRONMENT = top_srcdir=$(top_srcdir) $(SHELL)
# INTL_MACOSX_LIBS is needed because libgettextlib.la depends on libintl.la
# but libtool doesn't put -Wl,-framework options into .la files.
-test_names_LDADD = libuniname.a ../lib/libgettextlib.la @INTL_MACOSX_LIBS@
+test_names_LDADD = libuniname.a ../lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
-test_names_LDADD = libuniname.a ../gnulib-lib/libgettextlib.la @INTL_MACOSX_LIBS@
+test_names_LDADD = libuniname.a ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
all: all-am
.SUFFIXES:

View File

@ -1,32 +1,23 @@
$OpenBSD: patch-gettext-tools_src_Makefile_in,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/src/Makefile.in.orig Mon May 23 13:24:29 2005
+++ gettext-tools/src/Makefile.in Wed Nov 2 21:57:32 2005
@@ -591,8 +591,7 @@ urlget_SOURCES = urlget.c
$OpenBSD: patch-gettext-tools_src_Makefile_in,v 1.2 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/src/Makefile.in.orig Mon Nov 27 18:34:56 2006
+++ gettext-tools/src/Makefile.in Tue May 29 07:32:41 2007
@@ -858,8 +858,7 @@ urlget_SOURCES = urlget.c
# Need @LTLIBINTL@ because many source files use gettext().
# Need @LTLIBICONV@ because po-charset.c, po-lex.c, msgl-iconv.c, write-po.c
# use iconv().
libgettextsrc_la_LDFLAGS = \
- -release @VERSION@ \
- ../lib/libgettextlib.la @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
+ ../lib/libgettextlib.la -no-undefined
-libgettextsrc_la_LDFLAGS = -release @VERSION@ \
- ../gnulib-lib/libgettextlib.la @LTLIBINTL@ @LTLIBICONV@ -lc \
+libgettextsrc_la_LDFLAGS = \
@LTNOUNDEF@ $(am__append_2)
# How to build libgettextpo.la.
@@ -601,7 +600,7 @@ libgettextsrc_la_LDFLAGS = \
libgettextpo_la_LDFLAGS = \
-version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
-rpath $(libdir) \
- libgettextsrc.la ../lib/libgettextlib.la @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined
+ libgettextsrc.la ../lib/libgettextlib.la -no-undefined
# Build order. Only needed for "make -j[N]".
libgettextpo_la_DEPENDENCIES = libgettextsrc.la
@@ -610,23 +609,23 @@ libgettextpo_la_DEPENDENCIES = libgettex
# Compile-time flags for particular source files.
@@ -870,24 +869,24 @@ msgmerge_CXXFLAGS = $(AM_CXXFLAGS) $(OPENMP_CFLAGS)
# INTL_MACOSX_LIBS is needed because the programs depend on libintl.la
# but libtool doesn't put -Wl,-framework options into .la files.
# For msginit, it is also needed because of localename.c.
-msgcmp_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
-msgfmt_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
-msgmerge_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
-msgmerge_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@ @MSGMERGE_LIBM@ $(OPENMP_CFLAGS)
-msgunfmt_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
-xgettext_LDADD = $(LIBUNINAME) libgettextsrc.la @INTL_MACOSX_LIBS@ @LTLIBEXPAT@
-msgattrib_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
@ -37,25 +28,27 @@ $OpenBSD: patch-gettext-tools_src_Makefile_in,v 1.1 2005/11/05 23:47:58 naddy Ex
-msgexec_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
-msgfilter_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
-msggrep_LDADD = $(LIBGREP) libgettextsrc.la @INTL_MACOSX_LIBS@
+msgcmp_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgfmt_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgmerge_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgunfmt_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+xgettext_LDADD = $(LIBUNINAME) libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@ @LTLIBEXPAT@
+msgattrib_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgcat_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgcomm_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgconv_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgen_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgexec_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgfilter_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msggrep_LDADD = $(LIBGREP) libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgcmp_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgfmt_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgmerge_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@ @MSGMERGE_LIBM@ $(OPENMP_CFLAGS)
+msgunfmt_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+xgettext_LDADD = $(LIBUNINAME) libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@ @LTLIBEXPAT@
+msgattrib_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgcat_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgcomm_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgconv_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgen_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgexec_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msgfilter_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+msggrep_LDADD = $(LIBGREP) libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
msginit_LDADD = ../intl/localename.@INTL_LIBTOOL_SUFFIX_PREFIX@o \
- libgettextsrc.la @INTL_MACOSX_LIBS@
+ libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+ libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
-msguniq_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@
+msguniq_LDADD = libgettextsrc.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
-recode_sr_latin_LDADD = ../gnulib-lib/libgettextlib.la @INTL_MACOSX_LIBS@
+msguniq_LDADD = libgettextsrc.la ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
+recode_sr_latin_LDADD = ../gnulib-lib/libgettextlib.la ../intl/libintl.la @LTLIBICONV@ @INTL_MACOSX_LIBS@
# Specify installation directory, for --enable-relocatable.
msgcmp_CFLAGS = -DINSTALLDIR=\"$(bindir)\"
msgcmp_CPPFLAGS = $(AM_CPPFLAGS) -DINSTALLDIR=\"$(bindir)\"

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgattrib_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgattrib.c.orig Sun Dec 18 11:55:24 2005
+++ gettext-tools/src/msgattrib.c Sun Dec 18 11:56:06 2005
@@ -69,7 +69,7 @@ enum
static int to_change;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "clear-fuzzy", no_argument, NULL, CHAR_MAX + 8 },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgcat_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgcat.c.orig Sun Dec 18 11:57:28 2005
+++ gettext-tools/src/msgcat.c Sun Dec 18 11:57:40 2005
@@ -53,7 +53,7 @@ static int force_po;
static const char *to_code;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "directory", required_argument, NULL, 'D' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgcomm_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgcomm.c.orig Sun Dec 18 11:57:59 2005
+++ gettext-tools/src/msgcomm.c Sun Dec 18 11:58:10 2005
@@ -55,7 +55,7 @@ static int force_po;
static const char *to_code;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "directory", required_argument, NULL, 'D' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgconv_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgconv.c.orig Sun Dec 18 11:58:30 2005
+++ gettext-tools/src/msgconv.c Sun Dec 18 11:58:40 2005
@@ -52,7 +52,7 @@ static int force_po;
static const char *to_code;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "directory", required_argument, NULL, 'D' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgen_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgen.c.orig Sun Dec 18 11:58:59 2005
+++ gettext-tools/src/msgen.c Sun Dec 18 11:59:09 2005
@@ -48,7 +48,7 @@
static int force_po;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "directory", required_argument, NULL, 'D' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgfilter_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgfilter.c.orig Sun Dec 18 11:59:28 2005
+++ gettext-tools/src/msgfilter.c Sun Dec 18 11:59:38 2005
@@ -97,7 +97,7 @@ static char **sub_argv;
static int sub_argc;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "directory", required_argument, NULL, 'D' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msggrep_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msggrep.c.orig Sun Dec 18 12:00:32 2005
+++ gettext-tools/src/msggrep.c Sun Dec 18 12:00:44 2005
@@ -81,7 +81,7 @@ struct grep_task {
static struct grep_task grep_task[3];
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "comment", no_argument, NULL, 'C' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msgmerge_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msgmerge.c.orig Sun Dec 18 12:01:04 2005
+++ gettext-tools/src/msgmerge.c Sun Dec 18 12:01:15 2005
@@ -84,7 +84,7 @@ static const char *version_control_strin
static const char *backup_suffix_string;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "backup", required_argument, NULL, CHAR_MAX + 1 },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_msguniq_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/msguniq.c.orig Sun Dec 18 12:01:40 2005
+++ gettext-tools/src/msguniq.c Sun Dec 18 12:01:51 2005
@@ -52,7 +52,7 @@ static int force_po;
static const char *to_code;
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-location", no_argument, &line_comment, 1 },
{ "directory", required_argument, NULL, 'D' },

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-gettext-tools_src_xgettext_c,v 1.1 2005/12/18 21:53:18 sturm Exp $
--- gettext-tools/src/xgettext.c.orig Sun Dec 18 12:02:56 2005
+++ gettext-tools/src/xgettext.c Sat Dec 17 05:43:18 2005
@@ -176,7 +176,7 @@ iconv_t xgettext_current_source_iconv;
#endif
/* Long options. */
-static const struct option long_options[] =
+static struct option long_options[] =
{
{ "add-comments", optional_argument, NULL, 'c' },
{ "add-location", no_argument, &line_comment, 1 },

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-gettext-tools_tests_Makefile_in,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/tests/Makefile.in.orig Tue Nov 1 19:29:24 2005
+++ gettext-tools/tests/Makefile.in Tue Nov 1 19:29:40 2005
@@ -500,7 +500,7 @@ AM_CPPFLAGS = \
$OpenBSD: patch-gettext-tools_tests_Makefile_in,v 1.2 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/tests/Makefile.in.orig Mon May 28 23:59:26 2007
+++ gettext-tools/tests/Makefile.in Tue May 29 00:00:47 2007
@@ -673,7 +673,7 @@ AM_CPPFLAGS = \
# INTL_MACOSX_LIBS is needed because the programs depend on libintl.la
# but libtool doesn't put -Wl,-framework options into .la files.
LDADD = $(LDADD_@USE_INCLUDED_LIBINTL@) @INTL_MACOSX_LIBS@
-LDADD_yes = ../intl/libintl.la
+LDADD_yes = ../intl/libintl.la @LTLIBICONV@
LDADD_no = ../intl/libgnuintl.la @LTLIBINTL@
-LDADD_yes = ../intl/libintl.la @LTLIBTHREAD@
+LDADD_yes = ../intl/libintl.la @LTLIBICONV@ @LTLIBTHREAD@
LDADD_no = ../intl/libgnuintl.la @LTLIBTHREAD@ @LTLIBINTL@
tstgettext_SOURCES = tstgettext.c setlocale.c
tstgettext_CFLAGS = -DINSTALLDIR=\".\"

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gettext-tools_tests_xgettext-glade-2,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/tests/xgettext-glade-2.orig Tue Nov 1 23:14:09 2005
+++ gettext-tools/tests/xgettext-glade-2 Tue Nov 1 23:14:36 2005
@@ -60,7 +60,7 @@ tmpfiles="$tmpfiles xg-gl-2.tmp xg-gl-2.
$OpenBSD: patch-gettext-tools_tests_xgettext-glade-2,v 1.2 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/tests/xgettext-glade-2.orig Mon Nov 27 18:02:11 2006
+++ gettext-tools/tests/xgettext-glade-2 Tue May 29 06:53:47 2007
@@ -63,7 +63,7 @@ tmpfiles="$tmpfiles xg-gl-2.tmp xg-gl-2.pot"
: ${XGETTEXT=xgettext}
${XGETTEXT} --add-comments -o xg-gl-2.tmp simple.glade
test $? = 0 || { rm -fr $tmpfiles; exit 1; }

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gettext-tools_tests_xgettext-java-2,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/tests/xgettext-java-2.orig Tue Nov 1 23:15:23 2005
+++ gettext-tools/tests/xgettext-java-2 Tue Nov 1 23:15:31 2005
@@ -62,7 +62,7 @@ tmpfiles="$tmpfiles xg-j-2.tmp xg-j-2.po
$OpenBSD: patch-gettext-tools_tests_xgettext-java-2,v 1.2 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/tests/xgettext-java-2.orig Mon Nov 27 18:02:11 2006
+++ gettext-tools/tests/xgettext-java-2 Tue May 29 06:53:47 2007
@@ -62,7 +62,7 @@ tmpfiles="$tmpfiles xg-j-2.tmp xg-j-2.pot"
: ${XGETTEXT=xgettext}
${XGETTEXT} --from-code=ISO-8859-1 -c -o xg-j-2.tmp xg-j-2.java 2>/dev/null
test $? = 0 || { rm -fr $tmpfiles; exit 1; }

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gettext-tools_tests_xgettext-python-1,v 1.1 2005/11/05 23:47:58 naddy Exp $
--- gettext-tools/tests/xgettext-python-1.orig Tue Nov 1 23:14:58 2005
+++ gettext-tools/tests/xgettext-python-1 Tue Nov 1 23:15:10 2005
@@ -28,7 +28,7 @@ tmpfiles="$tmpfiles xg-py-1.err xg-py-1.
$OpenBSD: patch-gettext-tools_tests_xgettext-python-1,v 1.2 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/tests/xgettext-python-1.orig Mon Nov 27 18:02:11 2006
+++ gettext-tools/tests/xgettext-python-1 Tue May 29 06:53:47 2007
@@ -28,7 +28,7 @@ tmpfiles="$tmpfiles xg-py-1.err xg-py-1.tmp xg-py-1.po
: ${XGETTEXT=xgettext}
${XGETTEXT} --add-comments --no-location -o xg-py-1.tmp xg-py-1.py 2>xg-py-1.err
test $? = 0 || { cat xg-py-1.err; rm -fr $tmpfiles; exit 1; }

View File

@ -0,0 +1,39 @@
$OpenBSD: patch-gettext-tools_tests_xgettext-python-3,v 1.1 2007/08/25 13:48:24 naddy Exp $
--- gettext-tools/tests/xgettext-python-3.orig Tue May 29 07:01:35 2007
+++ gettext-tools/tests/xgettext-python-3 Tue May 29 07:03:13 2007
@@ -54,7 +54,7 @@ test $? = 1 || { rm -fr $tmpfiles; exit 1; }
${XGETTEXT} --add-comments=TRANSLATORS: --no-location --from-code=euc-jp \
-o xg-py-3a.tmp xg-py-3a.py
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-grep -v 'POT-Creation-Date' < xg-py-3a.tmp > xg-py-3a.pot
+grep -av 'POT-Creation-Date' < xg-py-3a.tmp > xg-py-3a.pot
: ${DIFF=diff}
${DIFF} xg-py-3.ok xg-py-3a.pot
@@ -66,7 +66,7 @@ tmpfiles="$tmpfiles xg-py-3b.tmp xg-py-3b.pot"
${XGETTEXT} --add-comments=TRANSLATORS: --no-location \
-o xg-py-3b.tmp xg-py-3b.py
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-grep -v 'POT-Creation-Date' < xg-py-3b.tmp > xg-py-3b.pot
+grep -av 'POT-Creation-Date' < xg-py-3b.tmp > xg-py-3b.pot
${DIFF} xg-py-3.ok xg-py-3b.pot
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
@@ -78,7 +78,7 @@ tmpfiles="$tmpfiles xg-py-3c.tmp xg-py-3c.pot"
${XGETTEXT} --add-comments=TRANSLATORS: --no-location --from-code=iso-8859-1 \
-o xg-py-3c.tmp xg-py-3b.py
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-grep -v 'POT-Creation-Date' < xg-py-3c.tmp > xg-py-3c.pot
+grep -av 'POT-Creation-Date' < xg-py-3c.tmp > xg-py-3c.pot
${DIFF} xg-py-3.ok xg-py-3c.pot
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
@@ -98,7 +98,7 @@ tmpfiles="$tmpfiles xg-py-3d.tmp xg-py-3d.pot"
${XGETTEXT} --add-comments=TRANSLATORS: \
-o xg-py-3d.tmp xg-py-3d.py
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-grep -v 'POT-Creation-Date' < xg-py-3d.tmp > xg-py-3d.pot
+grep -av 'POT-Creation-Date' < xg-py-3d.tmp > xg-py-3d.pot
tmpfiles="$tmpfiles xg-py-3d.ok"
cat <<\EOF > xg-py-3d.ok

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.18 2005/11/05 23:47:58 naddy Exp $
@comment $OpenBSD: PLIST,v 1.19 2007/08/25 13:48:24 naddy Exp $
%%SHARED%%
bin/autopoint
bin/envsubst
@ -20,6 +20,7 @@ bin/msgmerge
bin/msgunfmt
bin/msguniq
bin/ngettext
bin/recode-sr-latin
bin/xgettext
include/autosprintf.h
include/gettext-po.h
@ -76,26 +77,27 @@ share/aclocal/glibc2.m4
share/aclocal/glibc21.m4
share/aclocal/iconv.m4
share/aclocal/intdiv0.m4
share/aclocal/intl.m4
share/aclocal/intldir.m4
share/aclocal/intmax.m4
share/aclocal/inttypes-pri.m4
share/aclocal/inttypes.m4
share/aclocal/inttypes_h.m4
share/aclocal/isc-posix.m4
share/aclocal/lcmessage.m4
share/aclocal/lib-ld.m4
share/aclocal/lib-link.m4
share/aclocal/lib-prefix.m4
share/aclocal/lock.m4
share/aclocal/longdouble.m4
share/aclocal/longlong.m4
share/aclocal/nls.m4
share/aclocal/po.m4
share/aclocal/printf-posix.m4
share/aclocal/progtest.m4
share/aclocal/signed.m4
share/aclocal/size_max.m4
share/aclocal/stdint_h.m4
share/aclocal/uintmax_t.m4
share/aclocal/ulonglong.m4
share/aclocal/visibility.m4
share/aclocal/wchar_t.m4
share/aclocal/wint_t.m4
share/aclocal/xsize.m4
@ -117,6 +119,7 @@ share/doc/gettext/examples/README
share/doc/gettext/examples/build-aux/
share/doc/gettext/examples/build-aux/csharpcomp.m4
share/doc/gettext/examples/build-aux/csharpcomp.sh.in
share/doc/gettext/examples/build-aux/csharpexec-test.exe
share/doc/gettext/examples/build-aux/csharpexec.m4
share/doc/gettext/examples/build-aux/csharpexec.sh.in
share/doc/gettext/examples/build-aux/gcj.m4
@ -148,22 +151,28 @@ share/doc/gettext/examples/hello-c++-gnome/po/af.po
share/doc/gettext/examples/hello-c++-gnome/po/ca.po
share/doc/gettext/examples/hello-c++-gnome/po/de.po
share/doc/gettext/examples/hello-c++-gnome/po/el.po
share/doc/gettext/examples/hello-c++-gnome/po/eo.po
share/doc/gettext/examples/hello-c++-gnome/po/es.po
share/doc/gettext/examples/hello-c++-gnome/po/fr.po
share/doc/gettext/examples/hello-c++-gnome/po/ga.po
share/doc/gettext/examples/hello-c++-gnome/po/hu.po
share/doc/gettext/examples/hello-c++-gnome/po/id.po
share/doc/gettext/examples/hello-c++-gnome/po/it.po
share/doc/gettext/examples/hello-c++-gnome/po/ja.po
share/doc/gettext/examples/hello-c++-gnome/po/nl.po
share/doc/gettext/examples/hello-c++-gnome/po/pl.po
share/doc/gettext/examples/hello-c++-gnome/po/pt.po
share/doc/gettext/examples/hello-c++-gnome/po/ro.po
share/doc/gettext/examples/hello-c++-gnome/po/ru.po
share/doc/gettext/examples/hello-c++-gnome/po/sk.po
share/doc/gettext/examples/hello-c++-gnome/po/sl.po
share/doc/gettext/examples/hello-c++-gnome/po/sr.po
share/doc/gettext/examples/hello-c++-gnome/po/sv.po
share/doc/gettext/examples/hello-c++-gnome/po/tr.po
share/doc/gettext/examples/hello-c++-gnome/po/uk.po
share/doc/gettext/examples/hello-c++-gnome/po/vi.po
share/doc/gettext/examples/hello-c++-gnome/po/zh_CN.po
share/doc/gettext/examples/hello-c++-gnome/po/zh_HK.po
share/doc/gettext/examples/hello-c++-gnome/po/zh_TW.po
share/doc/gettext/examples/hello-c++-kde/
share/doc/gettext/examples/hello-c++-kde/BUGS
@ -210,22 +219,28 @@ share/doc/gettext/examples/hello-c++-kde/po/af.po
share/doc/gettext/examples/hello-c++-kde/po/ca.po
share/doc/gettext/examples/hello-c++-kde/po/de.po
share/doc/gettext/examples/hello-c++-kde/po/el.po
share/doc/gettext/examples/hello-c++-kde/po/eo.po
share/doc/gettext/examples/hello-c++-kde/po/es.po
share/doc/gettext/examples/hello-c++-kde/po/fr.po
share/doc/gettext/examples/hello-c++-kde/po/ga.po
share/doc/gettext/examples/hello-c++-kde/po/hu.po
share/doc/gettext/examples/hello-c++-kde/po/id.po
share/doc/gettext/examples/hello-c++-kde/po/it.po
share/doc/gettext/examples/hello-c++-kde/po/ja.po
share/doc/gettext/examples/hello-c++-kde/po/nl.po
share/doc/gettext/examples/hello-c++-kde/po/pl.po
share/doc/gettext/examples/hello-c++-kde/po/pt.po
share/doc/gettext/examples/hello-c++-kde/po/ro.po
share/doc/gettext/examples/hello-c++-kde/po/ru.po
share/doc/gettext/examples/hello-c++-kde/po/sk.po
share/doc/gettext/examples/hello-c++-kde/po/sl.po
share/doc/gettext/examples/hello-c++-kde/po/sr.po
share/doc/gettext/examples/hello-c++-kde/po/sv.po
share/doc/gettext/examples/hello-c++-kde/po/tr.po
share/doc/gettext/examples/hello-c++-kde/po/uk.po
share/doc/gettext/examples/hello-c++-kde/po/vi.po
share/doc/gettext/examples/hello-c++-kde/po/zh_CN.po
share/doc/gettext/examples/hello-c++-kde/po/zh_HK.po
share/doc/gettext/examples/hello-c++-kde/po/zh_TW.po
share/doc/gettext/examples/hello-c++-qt/
share/doc/gettext/examples/hello-c++-qt/BUGS
@ -245,23 +260,69 @@ share/doc/gettext/examples/hello-c++-qt/po/af.po
share/doc/gettext/examples/hello-c++-qt/po/ca.po
share/doc/gettext/examples/hello-c++-qt/po/de.po
share/doc/gettext/examples/hello-c++-qt/po/el.po
share/doc/gettext/examples/hello-c++-qt/po/eo.po
share/doc/gettext/examples/hello-c++-qt/po/es.po
share/doc/gettext/examples/hello-c++-qt/po/fr.po
share/doc/gettext/examples/hello-c++-qt/po/ga.po
share/doc/gettext/examples/hello-c++-qt/po/hu.po
share/doc/gettext/examples/hello-c++-qt/po/id.po
share/doc/gettext/examples/hello-c++-qt/po/it.po
share/doc/gettext/examples/hello-c++-qt/po/ja.po
share/doc/gettext/examples/hello-c++-qt/po/nl.po
share/doc/gettext/examples/hello-c++-qt/po/pl.po
share/doc/gettext/examples/hello-c++-qt/po/pt.po
share/doc/gettext/examples/hello-c++-qt/po/ro.po
share/doc/gettext/examples/hello-c++-qt/po/ru.po
share/doc/gettext/examples/hello-c++-qt/po/sk.po
share/doc/gettext/examples/hello-c++-qt/po/sl.po
share/doc/gettext/examples/hello-c++-qt/po/sr.po
share/doc/gettext/examples/hello-c++-qt/po/sv.po
share/doc/gettext/examples/hello-c++-qt/po/tr.po
share/doc/gettext/examples/hello-c++-qt/po/uk.po
share/doc/gettext/examples/hello-c++-qt/po/vi.po
share/doc/gettext/examples/hello-c++-qt/po/zh_CN.po
share/doc/gettext/examples/hello-c++-qt/po/zh_HK.po
share/doc/gettext/examples/hello-c++-qt/po/zh_TW.po
share/doc/gettext/examples/hello-c++-wxwidgets/
share/doc/gettext/examples/hello-c++-wxwidgets/INSTALL
share/doc/gettext/examples/hello-c++-wxwidgets/Makefile.am
share/doc/gettext/examples/hello-c++-wxwidgets/autoclean.sh
share/doc/gettext/examples/hello-c++-wxwidgets/autogen.sh
share/doc/gettext/examples/hello-c++-wxwidgets/configure.ac
share/doc/gettext/examples/hello-c++-wxwidgets/hello.cc
share/doc/gettext/examples/hello-c++-wxwidgets/m4/
share/doc/gettext/examples/hello-c++-wxwidgets/m4/Makefile.am
share/doc/gettext/examples/hello-c++-wxwidgets/m4/wxwidgets.m4
share/doc/gettext/examples/hello-c++-wxwidgets/po/
share/doc/gettext/examples/hello-c++-wxwidgets/po/LINGUAS
share/doc/gettext/examples/hello-c++-wxwidgets/po/Makefile.am
share/doc/gettext/examples/hello-c++-wxwidgets/po/af.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/ca.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/de.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/el.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/eo.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/es.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/fr.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/ga.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/hu.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/id.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/it.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/ja.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/nl.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/pl.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/pt.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/ro.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/ru.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/sk.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/sl.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/sr.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/sv.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/tr.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/uk.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/vi.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/zh_CN.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/zh_HK.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/zh_TW.po
share/doc/gettext/examples/hello-c++/INSTALL
share/doc/gettext/examples/hello-c++/Makefile.am
share/doc/gettext/examples/hello-c++/autoclean.sh
@ -278,22 +339,28 @@ share/doc/gettext/examples/hello-c++/po/af.po
share/doc/gettext/examples/hello-c++/po/ca.po
share/doc/gettext/examples/hello-c++/po/de.po
share/doc/gettext/examples/hello-c++/po/el.po
share/doc/gettext/examples/hello-c++/po/eo.po
share/doc/gettext/examples/hello-c++/po/es.po
share/doc/gettext/examples/hello-c++/po/fr.po
share/doc/gettext/examples/hello-c++/po/ga.po
share/doc/gettext/examples/hello-c++/po/hu.po
share/doc/gettext/examples/hello-c++/po/id.po
share/doc/gettext/examples/hello-c++/po/it.po
share/doc/gettext/examples/hello-c++/po/ja.po
share/doc/gettext/examples/hello-c++/po/nl.po
share/doc/gettext/examples/hello-c++/po/pl.po
share/doc/gettext/examples/hello-c++/po/pt.po
share/doc/gettext/examples/hello-c++/po/ro.po
share/doc/gettext/examples/hello-c++/po/ru.po
share/doc/gettext/examples/hello-c++/po/sk.po
share/doc/gettext/examples/hello-c++/po/sl.po
share/doc/gettext/examples/hello-c++/po/sr.po
share/doc/gettext/examples/hello-c++/po/sv.po
share/doc/gettext/examples/hello-c++/po/tr.po
share/doc/gettext/examples/hello-c++/po/uk.po
share/doc/gettext/examples/hello-c++/po/vi.po
share/doc/gettext/examples/hello-c++/po/zh_CN.po
share/doc/gettext/examples/hello-c++/po/zh_HK.po
share/doc/gettext/examples/hello-c++/po/zh_TW.po
share/doc/gettext/examples/hello-c-gnome/
share/doc/gettext/examples/hello-c-gnome/INSTALL
@ -315,22 +382,28 @@ share/doc/gettext/examples/hello-c-gnome/po/af.po
share/doc/gettext/examples/hello-c-gnome/po/ca.po
share/doc/gettext/examples/hello-c-gnome/po/de.po
share/doc/gettext/examples/hello-c-gnome/po/el.po
share/doc/gettext/examples/hello-c-gnome/po/eo.po
share/doc/gettext/examples/hello-c-gnome/po/es.po
share/doc/gettext/examples/hello-c-gnome/po/fr.po
share/doc/gettext/examples/hello-c-gnome/po/ga.po
share/doc/gettext/examples/hello-c-gnome/po/hu.po
share/doc/gettext/examples/hello-c-gnome/po/id.po
share/doc/gettext/examples/hello-c-gnome/po/it.po
share/doc/gettext/examples/hello-c-gnome/po/ja.po
share/doc/gettext/examples/hello-c-gnome/po/nl.po
share/doc/gettext/examples/hello-c-gnome/po/pl.po
share/doc/gettext/examples/hello-c-gnome/po/pt.po
share/doc/gettext/examples/hello-c-gnome/po/ro.po
share/doc/gettext/examples/hello-c-gnome/po/ru.po
share/doc/gettext/examples/hello-c-gnome/po/sk.po
share/doc/gettext/examples/hello-c-gnome/po/sl.po
share/doc/gettext/examples/hello-c-gnome/po/sr.po
share/doc/gettext/examples/hello-c-gnome/po/sv.po
share/doc/gettext/examples/hello-c-gnome/po/tr.po
share/doc/gettext/examples/hello-c-gnome/po/uk.po
share/doc/gettext/examples/hello-c-gnome/po/vi.po
share/doc/gettext/examples/hello-c-gnome/po/zh_CN.po
share/doc/gettext/examples/hello-c-gnome/po/zh_HK.po
share/doc/gettext/examples/hello-c-gnome/po/zh_TW.po
share/doc/gettext/examples/hello-c/INSTALL
share/doc/gettext/examples/hello-c/Makefile.am
@ -348,22 +421,28 @@ share/doc/gettext/examples/hello-c/po/af.po
share/doc/gettext/examples/hello-c/po/ca.po
share/doc/gettext/examples/hello-c/po/de.po
share/doc/gettext/examples/hello-c/po/el.po
share/doc/gettext/examples/hello-c/po/eo.po
share/doc/gettext/examples/hello-c/po/es.po
share/doc/gettext/examples/hello-c/po/fr.po
share/doc/gettext/examples/hello-c/po/ga.po
share/doc/gettext/examples/hello-c/po/hu.po
share/doc/gettext/examples/hello-c/po/id.po
share/doc/gettext/examples/hello-c/po/it.po
share/doc/gettext/examples/hello-c/po/ja.po
share/doc/gettext/examples/hello-c/po/nl.po
share/doc/gettext/examples/hello-c/po/pl.po
share/doc/gettext/examples/hello-c/po/pt.po
share/doc/gettext/examples/hello-c/po/ro.po
share/doc/gettext/examples/hello-c/po/ru.po
share/doc/gettext/examples/hello-c/po/sk.po
share/doc/gettext/examples/hello-c/po/sl.po
share/doc/gettext/examples/hello-c/po/sr.po
share/doc/gettext/examples/hello-c/po/sv.po
share/doc/gettext/examples/hello-c/po/tr.po
share/doc/gettext/examples/hello-c/po/uk.po
share/doc/gettext/examples/hello-c/po/vi.po
share/doc/gettext/examples/hello-c/po/zh_CN.po
share/doc/gettext/examples/hello-c/po/zh_HK.po
share/doc/gettext/examples/hello-c/po/zh_TW.po
share/doc/gettext/examples/hello-clisp/
share/doc/gettext/examples/hello-clisp/INSTALL
@ -381,28 +460,35 @@ share/doc/gettext/examples/hello-clisp/po/af.po
share/doc/gettext/examples/hello-clisp/po/ca.po
share/doc/gettext/examples/hello-clisp/po/de.po
share/doc/gettext/examples/hello-clisp/po/el.po
share/doc/gettext/examples/hello-clisp/po/eo.po
share/doc/gettext/examples/hello-clisp/po/es.po
share/doc/gettext/examples/hello-clisp/po/fr.po
share/doc/gettext/examples/hello-clisp/po/ga.po
share/doc/gettext/examples/hello-clisp/po/hu.po
share/doc/gettext/examples/hello-clisp/po/id.po
share/doc/gettext/examples/hello-clisp/po/it.po
share/doc/gettext/examples/hello-clisp/po/ja.po
share/doc/gettext/examples/hello-clisp/po/nl.po
share/doc/gettext/examples/hello-clisp/po/pl.po
share/doc/gettext/examples/hello-clisp/po/pt.po
share/doc/gettext/examples/hello-clisp/po/ro.po
share/doc/gettext/examples/hello-clisp/po/ru.po
share/doc/gettext/examples/hello-clisp/po/sk.po
share/doc/gettext/examples/hello-clisp/po/sl.po
share/doc/gettext/examples/hello-clisp/po/sr.po
share/doc/gettext/examples/hello-clisp/po/sv.po
share/doc/gettext/examples/hello-clisp/po/tr.po
share/doc/gettext/examples/hello-clisp/po/uk.po
share/doc/gettext/examples/hello-clisp/po/vi.po
share/doc/gettext/examples/hello-clisp/po/zh_CN.po
share/doc/gettext/examples/hello-clisp/po/zh_HK.po
share/doc/gettext/examples/hello-clisp/po/zh_TW.po
share/doc/gettext/examples/hello-csharp/
share/doc/gettext/examples/hello-csharp-forms/
share/doc/gettext/examples/hello-csharp-forms/BUGS
share/doc/gettext/examples/hello-csharp-forms/INSTALL
share/doc/gettext/examples/hello-csharp-forms/Makefile.am
share/doc/gettext/examples/hello-csharp-forms/README
share/doc/gettext/examples/hello-csharp-forms/autoclean.sh
share/doc/gettext/examples/hello-csharp-forms/autogen.sh
share/doc/gettext/examples/hello-csharp-forms/configure.ac
@ -416,22 +502,28 @@ share/doc/gettext/examples/hello-csharp-forms/po/af.po
share/doc/gettext/examples/hello-csharp-forms/po/ca.po
share/doc/gettext/examples/hello-csharp-forms/po/de.po
share/doc/gettext/examples/hello-csharp-forms/po/el.po
share/doc/gettext/examples/hello-csharp-forms/po/eo.po
share/doc/gettext/examples/hello-csharp-forms/po/es.po
share/doc/gettext/examples/hello-csharp-forms/po/fr.po
share/doc/gettext/examples/hello-csharp-forms/po/ga.po
share/doc/gettext/examples/hello-csharp-forms/po/hu.po
share/doc/gettext/examples/hello-csharp-forms/po/id.po
share/doc/gettext/examples/hello-csharp-forms/po/it.po
share/doc/gettext/examples/hello-csharp-forms/po/ja.po
share/doc/gettext/examples/hello-csharp-forms/po/nl.po
share/doc/gettext/examples/hello-csharp-forms/po/pl.po
share/doc/gettext/examples/hello-csharp-forms/po/pt.po
share/doc/gettext/examples/hello-csharp-forms/po/ro.po
share/doc/gettext/examples/hello-csharp-forms/po/ru.po
share/doc/gettext/examples/hello-csharp-forms/po/sk.po
share/doc/gettext/examples/hello-csharp-forms/po/sl.po
share/doc/gettext/examples/hello-csharp-forms/po/sr.po
share/doc/gettext/examples/hello-csharp-forms/po/sv.po
share/doc/gettext/examples/hello-csharp-forms/po/tr.po
share/doc/gettext/examples/hello-csharp-forms/po/uk.po
share/doc/gettext/examples/hello-csharp-forms/po/vi.po
share/doc/gettext/examples/hello-csharp-forms/po/zh_CN.po
share/doc/gettext/examples/hello-csharp-forms/po/zh_HK.po
share/doc/gettext/examples/hello-csharp-forms/po/zh_TW.po
share/doc/gettext/examples/hello-csharp/INSTALL
share/doc/gettext/examples/hello-csharp/Makefile.am
@ -448,22 +540,28 @@ share/doc/gettext/examples/hello-csharp/po/af.po
share/doc/gettext/examples/hello-csharp/po/ca.po
share/doc/gettext/examples/hello-csharp/po/de.po
share/doc/gettext/examples/hello-csharp/po/el.po
share/doc/gettext/examples/hello-csharp/po/eo.po
share/doc/gettext/examples/hello-csharp/po/es.po
share/doc/gettext/examples/hello-csharp/po/fr.po
share/doc/gettext/examples/hello-csharp/po/ga.po
share/doc/gettext/examples/hello-csharp/po/hu.po
share/doc/gettext/examples/hello-csharp/po/id.po
share/doc/gettext/examples/hello-csharp/po/it.po
share/doc/gettext/examples/hello-csharp/po/ja.po
share/doc/gettext/examples/hello-csharp/po/nl.po
share/doc/gettext/examples/hello-csharp/po/pl.po
share/doc/gettext/examples/hello-csharp/po/pt.po
share/doc/gettext/examples/hello-csharp/po/ro.po
share/doc/gettext/examples/hello-csharp/po/ru.po
share/doc/gettext/examples/hello-csharp/po/sk.po
share/doc/gettext/examples/hello-csharp/po/sl.po
share/doc/gettext/examples/hello-csharp/po/sr.po
share/doc/gettext/examples/hello-csharp/po/sv.po
share/doc/gettext/examples/hello-csharp/po/tr.po
share/doc/gettext/examples/hello-csharp/po/uk.po
share/doc/gettext/examples/hello-csharp/po/vi.po
share/doc/gettext/examples/hello-csharp/po/zh_CN.po
share/doc/gettext/examples/hello-csharp/po/zh_HK.po
share/doc/gettext/examples/hello-csharp/po/zh_TW.po
share/doc/gettext/examples/hello-gawk/
share/doc/gettext/examples/hello-gawk/INSTALL
@ -481,22 +579,28 @@ share/doc/gettext/examples/hello-gawk/po/af.po
share/doc/gettext/examples/hello-gawk/po/ca.po
share/doc/gettext/examples/hello-gawk/po/de.po
share/doc/gettext/examples/hello-gawk/po/el.po
share/doc/gettext/examples/hello-gawk/po/eo.po
share/doc/gettext/examples/hello-gawk/po/es.po
share/doc/gettext/examples/hello-gawk/po/fr.po
share/doc/gettext/examples/hello-gawk/po/ga.po
share/doc/gettext/examples/hello-gawk/po/hu.po
share/doc/gettext/examples/hello-gawk/po/id.po
share/doc/gettext/examples/hello-gawk/po/it.po
share/doc/gettext/examples/hello-gawk/po/ja.po
share/doc/gettext/examples/hello-gawk/po/nl.po
share/doc/gettext/examples/hello-gawk/po/pl.po
share/doc/gettext/examples/hello-gawk/po/pt.po
share/doc/gettext/examples/hello-gawk/po/ro.po
share/doc/gettext/examples/hello-gawk/po/ru.po
share/doc/gettext/examples/hello-gawk/po/sk.po
share/doc/gettext/examples/hello-gawk/po/sl.po
share/doc/gettext/examples/hello-gawk/po/sr.po
share/doc/gettext/examples/hello-gawk/po/sv.po
share/doc/gettext/examples/hello-gawk/po/tr.po
share/doc/gettext/examples/hello-gawk/po/uk.po
share/doc/gettext/examples/hello-gawk/po/vi.po
share/doc/gettext/examples/hello-gawk/po/zh_CN.po
share/doc/gettext/examples/hello-gawk/po/zh_HK.po
share/doc/gettext/examples/hello-gawk/po/zh_TW.po
share/doc/gettext/examples/hello-guile/
share/doc/gettext/examples/hello-guile/INSTALL
@ -514,22 +618,28 @@ share/doc/gettext/examples/hello-guile/po/af.po
share/doc/gettext/examples/hello-guile/po/ca.po
share/doc/gettext/examples/hello-guile/po/de.po
share/doc/gettext/examples/hello-guile/po/el.po
share/doc/gettext/examples/hello-guile/po/eo.po
share/doc/gettext/examples/hello-guile/po/es.po
share/doc/gettext/examples/hello-guile/po/fr.po
share/doc/gettext/examples/hello-guile/po/ga.po
share/doc/gettext/examples/hello-guile/po/hu.po
share/doc/gettext/examples/hello-guile/po/id.po
share/doc/gettext/examples/hello-guile/po/it.po
share/doc/gettext/examples/hello-guile/po/ja.po
share/doc/gettext/examples/hello-guile/po/nl.po
share/doc/gettext/examples/hello-guile/po/pl.po
share/doc/gettext/examples/hello-guile/po/pt.po
share/doc/gettext/examples/hello-guile/po/ro.po
share/doc/gettext/examples/hello-guile/po/ru.po
share/doc/gettext/examples/hello-guile/po/sk.po
share/doc/gettext/examples/hello-guile/po/sl.po
share/doc/gettext/examples/hello-guile/po/sr.po
share/doc/gettext/examples/hello-guile/po/sv.po
share/doc/gettext/examples/hello-guile/po/tr.po
share/doc/gettext/examples/hello-guile/po/uk.po
share/doc/gettext/examples/hello-guile/po/vi.po
share/doc/gettext/examples/hello-guile/po/zh_CN.po
share/doc/gettext/examples/hello-guile/po/zh_HK.po
share/doc/gettext/examples/hello-guile/po/zh_TW.po
share/doc/gettext/examples/hello-java/
share/doc/gettext/examples/hello-java-awt/
@ -551,22 +661,28 @@ share/doc/gettext/examples/hello-java-awt/po/af.po
share/doc/gettext/examples/hello-java-awt/po/ca.po
share/doc/gettext/examples/hello-java-awt/po/de.po
share/doc/gettext/examples/hello-java-awt/po/el.po
share/doc/gettext/examples/hello-java-awt/po/eo.po
share/doc/gettext/examples/hello-java-awt/po/es.po
share/doc/gettext/examples/hello-java-awt/po/fr.po
share/doc/gettext/examples/hello-java-awt/po/ga.po
share/doc/gettext/examples/hello-java-awt/po/hu.po
share/doc/gettext/examples/hello-java-awt/po/id.po
share/doc/gettext/examples/hello-java-awt/po/it.po
share/doc/gettext/examples/hello-java-awt/po/ja.po
share/doc/gettext/examples/hello-java-awt/po/nl.po
share/doc/gettext/examples/hello-java-awt/po/pl.po
share/doc/gettext/examples/hello-java-awt/po/pt.po
share/doc/gettext/examples/hello-java-awt/po/ro.po
share/doc/gettext/examples/hello-java-awt/po/ru.po
share/doc/gettext/examples/hello-java-awt/po/sk.po
share/doc/gettext/examples/hello-java-awt/po/sl.po
share/doc/gettext/examples/hello-java-awt/po/sr.po
share/doc/gettext/examples/hello-java-awt/po/sv.po
share/doc/gettext/examples/hello-java-awt/po/tr.po
share/doc/gettext/examples/hello-java-awt/po/uk.po
share/doc/gettext/examples/hello-java-awt/po/vi.po
share/doc/gettext/examples/hello-java-awt/po/zh_CN.po
share/doc/gettext/examples/hello-java-awt/po/zh_HK.po
share/doc/gettext/examples/hello-java-awt/po/zh_TW.po
share/doc/gettext/examples/hello-java-swing/
share/doc/gettext/examples/hello-java-swing/BUGS
@ -587,22 +703,28 @@ share/doc/gettext/examples/hello-java-swing/po/af.po
share/doc/gettext/examples/hello-java-swing/po/ca.po
share/doc/gettext/examples/hello-java-swing/po/de.po
share/doc/gettext/examples/hello-java-swing/po/el.po
share/doc/gettext/examples/hello-java-swing/po/eo.po
share/doc/gettext/examples/hello-java-swing/po/es.po
share/doc/gettext/examples/hello-java-swing/po/fr.po
share/doc/gettext/examples/hello-java-swing/po/ga.po
share/doc/gettext/examples/hello-java-swing/po/hu.po
share/doc/gettext/examples/hello-java-swing/po/id.po
share/doc/gettext/examples/hello-java-swing/po/it.po
share/doc/gettext/examples/hello-java-swing/po/ja.po
share/doc/gettext/examples/hello-java-swing/po/nl.po
share/doc/gettext/examples/hello-java-swing/po/pl.po
share/doc/gettext/examples/hello-java-swing/po/pt.po
share/doc/gettext/examples/hello-java-swing/po/ro.po
share/doc/gettext/examples/hello-java-swing/po/ru.po
share/doc/gettext/examples/hello-java-swing/po/sk.po
share/doc/gettext/examples/hello-java-swing/po/sl.po
share/doc/gettext/examples/hello-java-swing/po/sr.po
share/doc/gettext/examples/hello-java-swing/po/sv.po
share/doc/gettext/examples/hello-java-swing/po/tr.po
share/doc/gettext/examples/hello-java-swing/po/uk.po
share/doc/gettext/examples/hello-java-swing/po/vi.po
share/doc/gettext/examples/hello-java-swing/po/zh_CN.po
share/doc/gettext/examples/hello-java-swing/po/zh_HK.po
share/doc/gettext/examples/hello-java-swing/po/zh_TW.po
share/doc/gettext/examples/hello-java/Hello.java
share/doc/gettext/examples/hello-java/INSTALL
@ -619,22 +741,28 @@ share/doc/gettext/examples/hello-java/po/af.po
share/doc/gettext/examples/hello-java/po/ca.po
share/doc/gettext/examples/hello-java/po/de.po
share/doc/gettext/examples/hello-java/po/el.po
share/doc/gettext/examples/hello-java/po/eo.po
share/doc/gettext/examples/hello-java/po/es.po
share/doc/gettext/examples/hello-java/po/fr.po
share/doc/gettext/examples/hello-java/po/ga.po
share/doc/gettext/examples/hello-java/po/hu.po
share/doc/gettext/examples/hello-java/po/id.po
share/doc/gettext/examples/hello-java/po/it.po
share/doc/gettext/examples/hello-java/po/ja.po
share/doc/gettext/examples/hello-java/po/nl.po
share/doc/gettext/examples/hello-java/po/pl.po
share/doc/gettext/examples/hello-java/po/pt.po
share/doc/gettext/examples/hello-java/po/ro.po
share/doc/gettext/examples/hello-java/po/ru.po
share/doc/gettext/examples/hello-java/po/sk.po
share/doc/gettext/examples/hello-java/po/sl.po
share/doc/gettext/examples/hello-java/po/sr.po
share/doc/gettext/examples/hello-java/po/sv.po
share/doc/gettext/examples/hello-java/po/tr.po
share/doc/gettext/examples/hello-java/po/uk.po
share/doc/gettext/examples/hello-java/po/vi.po
share/doc/gettext/examples/hello-java/po/zh_CN.po
share/doc/gettext/examples/hello-java/po/zh_HK.po
share/doc/gettext/examples/hello-java/po/zh_TW.po
share/doc/gettext/examples/hello-librep/
share/doc/gettext/examples/hello-librep/INSTALL
@ -652,22 +780,28 @@ share/doc/gettext/examples/hello-librep/po/af.po
share/doc/gettext/examples/hello-librep/po/ca.po
share/doc/gettext/examples/hello-librep/po/de.po
share/doc/gettext/examples/hello-librep/po/el.po
share/doc/gettext/examples/hello-librep/po/eo.po
share/doc/gettext/examples/hello-librep/po/es.po
share/doc/gettext/examples/hello-librep/po/fr.po
share/doc/gettext/examples/hello-librep/po/ga.po
share/doc/gettext/examples/hello-librep/po/hu.po
share/doc/gettext/examples/hello-librep/po/id.po
share/doc/gettext/examples/hello-librep/po/it.po
share/doc/gettext/examples/hello-librep/po/ja.po
share/doc/gettext/examples/hello-librep/po/nl.po
share/doc/gettext/examples/hello-librep/po/pl.po
share/doc/gettext/examples/hello-librep/po/pt.po
share/doc/gettext/examples/hello-librep/po/ro.po
share/doc/gettext/examples/hello-librep/po/ru.po
share/doc/gettext/examples/hello-librep/po/sk.po
share/doc/gettext/examples/hello-librep/po/sl.po
share/doc/gettext/examples/hello-librep/po/sr.po
share/doc/gettext/examples/hello-librep/po/sv.po
share/doc/gettext/examples/hello-librep/po/tr.po
share/doc/gettext/examples/hello-librep/po/uk.po
share/doc/gettext/examples/hello-librep/po/vi.po
share/doc/gettext/examples/hello-librep/po/zh_CN.po
share/doc/gettext/examples/hello-librep/po/zh_HK.po
share/doc/gettext/examples/hello-librep/po/zh_TW.po
share/doc/gettext/examples/hello-objc/
share/doc/gettext/examples/hello-objc-gnome/
@ -690,22 +824,28 @@ share/doc/gettext/examples/hello-objc-gnome/po/af.po
share/doc/gettext/examples/hello-objc-gnome/po/ca.po
share/doc/gettext/examples/hello-objc-gnome/po/de.po
share/doc/gettext/examples/hello-objc-gnome/po/el.po
share/doc/gettext/examples/hello-objc-gnome/po/eo.po
share/doc/gettext/examples/hello-objc-gnome/po/es.po
share/doc/gettext/examples/hello-objc-gnome/po/fr.po
share/doc/gettext/examples/hello-objc-gnome/po/ga.po
share/doc/gettext/examples/hello-objc-gnome/po/hu.po
share/doc/gettext/examples/hello-objc-gnome/po/id.po
share/doc/gettext/examples/hello-objc-gnome/po/it.po
share/doc/gettext/examples/hello-objc-gnome/po/ja.po
share/doc/gettext/examples/hello-objc-gnome/po/nl.po
share/doc/gettext/examples/hello-objc-gnome/po/pl.po
share/doc/gettext/examples/hello-objc-gnome/po/pt.po
share/doc/gettext/examples/hello-objc-gnome/po/ro.po
share/doc/gettext/examples/hello-objc-gnome/po/ru.po
share/doc/gettext/examples/hello-objc-gnome/po/sk.po
share/doc/gettext/examples/hello-objc-gnome/po/sl.po
share/doc/gettext/examples/hello-objc-gnome/po/sr.po
share/doc/gettext/examples/hello-objc-gnome/po/sv.po
share/doc/gettext/examples/hello-objc-gnome/po/tr.po
share/doc/gettext/examples/hello-objc-gnome/po/uk.po
share/doc/gettext/examples/hello-objc-gnome/po/vi.po
share/doc/gettext/examples/hello-objc-gnome/po/zh_CN.po
share/doc/gettext/examples/hello-objc-gnome/po/zh_HK.po
share/doc/gettext/examples/hello-objc-gnome/po/zh_TW.po
share/doc/gettext/examples/hello-objc-gnustep/
share/doc/gettext/examples/hello-objc-gnustep/AppController.h
@ -726,22 +866,28 @@ share/doc/gettext/examples/hello-objc-gnustep/po/af.po
share/doc/gettext/examples/hello-objc-gnustep/po/ca.po
share/doc/gettext/examples/hello-objc-gnustep/po/de.po
share/doc/gettext/examples/hello-objc-gnustep/po/el.po
share/doc/gettext/examples/hello-objc-gnustep/po/eo.po
share/doc/gettext/examples/hello-objc-gnustep/po/es.po
share/doc/gettext/examples/hello-objc-gnustep/po/fr.po
share/doc/gettext/examples/hello-objc-gnustep/po/ga.po
share/doc/gettext/examples/hello-objc-gnustep/po/hu.po
share/doc/gettext/examples/hello-objc-gnustep/po/id.po
share/doc/gettext/examples/hello-objc-gnustep/po/it.po
share/doc/gettext/examples/hello-objc-gnustep/po/ja.po
share/doc/gettext/examples/hello-objc-gnustep/po/nl.po
share/doc/gettext/examples/hello-objc-gnustep/po/pl.po
share/doc/gettext/examples/hello-objc-gnustep/po/pt.po
share/doc/gettext/examples/hello-objc-gnustep/po/ro.po
share/doc/gettext/examples/hello-objc-gnustep/po/ru.po
share/doc/gettext/examples/hello-objc-gnustep/po/sk.po
share/doc/gettext/examples/hello-objc-gnustep/po/sl.po
share/doc/gettext/examples/hello-objc-gnustep/po/sr.po
share/doc/gettext/examples/hello-objc-gnustep/po/sv.po
share/doc/gettext/examples/hello-objc-gnustep/po/tr.po
share/doc/gettext/examples/hello-objc-gnustep/po/uk.po
share/doc/gettext/examples/hello-objc-gnustep/po/vi.po
share/doc/gettext/examples/hello-objc-gnustep/po/zh_CN.po
share/doc/gettext/examples/hello-objc-gnustep/po/zh_HK.po
share/doc/gettext/examples/hello-objc-gnustep/po/zh_TW.po
share/doc/gettext/examples/hello-objc/INSTALL
share/doc/gettext/examples/hello-objc/Makefile.am
@ -759,22 +905,28 @@ share/doc/gettext/examples/hello-objc/po/af.po
share/doc/gettext/examples/hello-objc/po/ca.po
share/doc/gettext/examples/hello-objc/po/de.po
share/doc/gettext/examples/hello-objc/po/el.po
share/doc/gettext/examples/hello-objc/po/eo.po
share/doc/gettext/examples/hello-objc/po/es.po
share/doc/gettext/examples/hello-objc/po/fr.po
share/doc/gettext/examples/hello-objc/po/ga.po
share/doc/gettext/examples/hello-objc/po/hu.po
share/doc/gettext/examples/hello-objc/po/id.po
share/doc/gettext/examples/hello-objc/po/it.po
share/doc/gettext/examples/hello-objc/po/ja.po
share/doc/gettext/examples/hello-objc/po/nl.po
share/doc/gettext/examples/hello-objc/po/pl.po
share/doc/gettext/examples/hello-objc/po/pt.po
share/doc/gettext/examples/hello-objc/po/ro.po
share/doc/gettext/examples/hello-objc/po/ru.po
share/doc/gettext/examples/hello-objc/po/sk.po
share/doc/gettext/examples/hello-objc/po/sl.po
share/doc/gettext/examples/hello-objc/po/sr.po
share/doc/gettext/examples/hello-objc/po/sv.po
share/doc/gettext/examples/hello-objc/po/tr.po
share/doc/gettext/examples/hello-objc/po/uk.po
share/doc/gettext/examples/hello-objc/po/vi.po
share/doc/gettext/examples/hello-objc/po/zh_CN.po
share/doc/gettext/examples/hello-objc/po/zh_HK.po
share/doc/gettext/examples/hello-objc/po/zh_TW.po
share/doc/gettext/examples/hello-pascal/
share/doc/gettext/examples/hello-pascal/INSTALL
@ -793,22 +945,28 @@ share/doc/gettext/examples/hello-pascal/po/af.po
share/doc/gettext/examples/hello-pascal/po/ca.po
share/doc/gettext/examples/hello-pascal/po/de.po
share/doc/gettext/examples/hello-pascal/po/el.po
share/doc/gettext/examples/hello-pascal/po/eo.po
share/doc/gettext/examples/hello-pascal/po/es.po
share/doc/gettext/examples/hello-pascal/po/fr.po
share/doc/gettext/examples/hello-pascal/po/ga.po
share/doc/gettext/examples/hello-pascal/po/hu.po
share/doc/gettext/examples/hello-pascal/po/id.po
share/doc/gettext/examples/hello-pascal/po/it.po
share/doc/gettext/examples/hello-pascal/po/ja.po
share/doc/gettext/examples/hello-pascal/po/nl.po
share/doc/gettext/examples/hello-pascal/po/pl.po
share/doc/gettext/examples/hello-pascal/po/pt.po
share/doc/gettext/examples/hello-pascal/po/ro.po
share/doc/gettext/examples/hello-pascal/po/ru.po
share/doc/gettext/examples/hello-pascal/po/sk.po
share/doc/gettext/examples/hello-pascal/po/sl.po
share/doc/gettext/examples/hello-pascal/po/sr.po
share/doc/gettext/examples/hello-pascal/po/sv.po
share/doc/gettext/examples/hello-pascal/po/tr.po
share/doc/gettext/examples/hello-pascal/po/uk.po
share/doc/gettext/examples/hello-pascal/po/vi.po
share/doc/gettext/examples/hello-pascal/po/zh_CN.po
share/doc/gettext/examples/hello-pascal/po/zh_HK.po
share/doc/gettext/examples/hello-pascal/po/zh_TW.po
share/doc/gettext/examples/hello-perl/
share/doc/gettext/examples/hello-perl/INSTALL
@ -827,22 +985,28 @@ share/doc/gettext/examples/hello-perl/po/af.po
share/doc/gettext/examples/hello-perl/po/ca.po
share/doc/gettext/examples/hello-perl/po/de.po
share/doc/gettext/examples/hello-perl/po/el.po
share/doc/gettext/examples/hello-perl/po/eo.po
share/doc/gettext/examples/hello-perl/po/es.po
share/doc/gettext/examples/hello-perl/po/fr.po
share/doc/gettext/examples/hello-perl/po/ga.po
share/doc/gettext/examples/hello-perl/po/hu.po
share/doc/gettext/examples/hello-perl/po/id.po
share/doc/gettext/examples/hello-perl/po/it.po
share/doc/gettext/examples/hello-perl/po/ja.po
share/doc/gettext/examples/hello-perl/po/nl.po
share/doc/gettext/examples/hello-perl/po/pl.po
share/doc/gettext/examples/hello-perl/po/pt.po
share/doc/gettext/examples/hello-perl/po/ro.po
share/doc/gettext/examples/hello-perl/po/ru.po
share/doc/gettext/examples/hello-perl/po/sk.po
share/doc/gettext/examples/hello-perl/po/sl.po
share/doc/gettext/examples/hello-perl/po/sr.po
share/doc/gettext/examples/hello-perl/po/sv.po
share/doc/gettext/examples/hello-perl/po/tr.po
share/doc/gettext/examples/hello-perl/po/uk.po
share/doc/gettext/examples/hello-perl/po/vi.po
share/doc/gettext/examples/hello-perl/po/zh_CN.po
share/doc/gettext/examples/hello-perl/po/zh_HK.po
share/doc/gettext/examples/hello-perl/po/zh_TW.po
share/doc/gettext/examples/hello-php/
share/doc/gettext/examples/hello-php/INSTALL
@ -861,22 +1025,28 @@ share/doc/gettext/examples/hello-php/po/af.po
share/doc/gettext/examples/hello-php/po/ca.po
share/doc/gettext/examples/hello-php/po/de.po
share/doc/gettext/examples/hello-php/po/el.po
share/doc/gettext/examples/hello-php/po/eo.po
share/doc/gettext/examples/hello-php/po/es.po
share/doc/gettext/examples/hello-php/po/fr.po
share/doc/gettext/examples/hello-php/po/ga.po
share/doc/gettext/examples/hello-php/po/hu.po
share/doc/gettext/examples/hello-php/po/id.po
share/doc/gettext/examples/hello-php/po/it.po
share/doc/gettext/examples/hello-php/po/ja.po
share/doc/gettext/examples/hello-php/po/nl.po
share/doc/gettext/examples/hello-php/po/pl.po
share/doc/gettext/examples/hello-php/po/pt.po
share/doc/gettext/examples/hello-php/po/ro.po
share/doc/gettext/examples/hello-php/po/ru.po
share/doc/gettext/examples/hello-php/po/sk.po
share/doc/gettext/examples/hello-php/po/sl.po
share/doc/gettext/examples/hello-php/po/sr.po
share/doc/gettext/examples/hello-php/po/sv.po
share/doc/gettext/examples/hello-php/po/tr.po
share/doc/gettext/examples/hello-php/po/uk.po
share/doc/gettext/examples/hello-php/po/vi.po
share/doc/gettext/examples/hello-php/po/zh_CN.po
share/doc/gettext/examples/hello-php/po/zh_HK.po
share/doc/gettext/examples/hello-php/po/zh_TW.po
share/doc/gettext/examples/hello-python/
share/doc/gettext/examples/hello-python/INSTALL
@ -894,22 +1064,28 @@ share/doc/gettext/examples/hello-python/po/af.po
share/doc/gettext/examples/hello-python/po/ca.po
share/doc/gettext/examples/hello-python/po/de.po
share/doc/gettext/examples/hello-python/po/el.po
share/doc/gettext/examples/hello-python/po/eo.po
share/doc/gettext/examples/hello-python/po/es.po
share/doc/gettext/examples/hello-python/po/fr.po
share/doc/gettext/examples/hello-python/po/ga.po
share/doc/gettext/examples/hello-python/po/hu.po
share/doc/gettext/examples/hello-python/po/id.po
share/doc/gettext/examples/hello-python/po/it.po
share/doc/gettext/examples/hello-python/po/ja.po
share/doc/gettext/examples/hello-python/po/nl.po
share/doc/gettext/examples/hello-python/po/pl.po
share/doc/gettext/examples/hello-python/po/pt.po
share/doc/gettext/examples/hello-python/po/ro.po
share/doc/gettext/examples/hello-python/po/ru.po
share/doc/gettext/examples/hello-python/po/sk.po
share/doc/gettext/examples/hello-python/po/sl.po
share/doc/gettext/examples/hello-python/po/sr.po
share/doc/gettext/examples/hello-python/po/sv.po
share/doc/gettext/examples/hello-python/po/tr.po
share/doc/gettext/examples/hello-python/po/uk.po
share/doc/gettext/examples/hello-python/po/vi.po
share/doc/gettext/examples/hello-python/po/zh_CN.po
share/doc/gettext/examples/hello-python/po/zh_HK.po
share/doc/gettext/examples/hello-python/po/zh_TW.po
share/doc/gettext/examples/hello-sh/
share/doc/gettext/examples/hello-sh/INSTALL
@ -927,22 +1103,28 @@ share/doc/gettext/examples/hello-sh/po/af.po
share/doc/gettext/examples/hello-sh/po/ca.po
share/doc/gettext/examples/hello-sh/po/de.po
share/doc/gettext/examples/hello-sh/po/el.po
share/doc/gettext/examples/hello-sh/po/eo.po
share/doc/gettext/examples/hello-sh/po/es.po
share/doc/gettext/examples/hello-sh/po/fr.po
share/doc/gettext/examples/hello-sh/po/ga.po
share/doc/gettext/examples/hello-sh/po/hu.po
share/doc/gettext/examples/hello-sh/po/id.po
share/doc/gettext/examples/hello-sh/po/it.po
share/doc/gettext/examples/hello-sh/po/ja.po
share/doc/gettext/examples/hello-sh/po/nl.po
share/doc/gettext/examples/hello-sh/po/pl.po
share/doc/gettext/examples/hello-sh/po/pt.po
share/doc/gettext/examples/hello-sh/po/ro.po
share/doc/gettext/examples/hello-sh/po/ru.po
share/doc/gettext/examples/hello-sh/po/sk.po
share/doc/gettext/examples/hello-sh/po/sl.po
share/doc/gettext/examples/hello-sh/po/sr.po
share/doc/gettext/examples/hello-sh/po/sv.po
share/doc/gettext/examples/hello-sh/po/tr.po
share/doc/gettext/examples/hello-sh/po/uk.po
share/doc/gettext/examples/hello-sh/po/vi.po
share/doc/gettext/examples/hello-sh/po/zh_CN.po
share/doc/gettext/examples/hello-sh/po/zh_HK.po
share/doc/gettext/examples/hello-sh/po/zh_TW.po
share/doc/gettext/examples/hello-smalltalk/
share/doc/gettext/examples/hello-smalltalk/INSTALL
@ -960,22 +1142,28 @@ share/doc/gettext/examples/hello-smalltalk/po/af.po
share/doc/gettext/examples/hello-smalltalk/po/ca.po
share/doc/gettext/examples/hello-smalltalk/po/de.po
share/doc/gettext/examples/hello-smalltalk/po/el.po
share/doc/gettext/examples/hello-smalltalk/po/eo.po
share/doc/gettext/examples/hello-smalltalk/po/es.po
share/doc/gettext/examples/hello-smalltalk/po/fr.po
share/doc/gettext/examples/hello-smalltalk/po/ga.po
share/doc/gettext/examples/hello-smalltalk/po/hu.po
share/doc/gettext/examples/hello-smalltalk/po/id.po
share/doc/gettext/examples/hello-smalltalk/po/it.po
share/doc/gettext/examples/hello-smalltalk/po/ja.po
share/doc/gettext/examples/hello-smalltalk/po/nl.po
share/doc/gettext/examples/hello-smalltalk/po/pl.po
share/doc/gettext/examples/hello-smalltalk/po/pt.po
share/doc/gettext/examples/hello-smalltalk/po/ro.po
share/doc/gettext/examples/hello-smalltalk/po/ru.po
share/doc/gettext/examples/hello-smalltalk/po/sk.po
share/doc/gettext/examples/hello-smalltalk/po/sl.po
share/doc/gettext/examples/hello-smalltalk/po/sr.po
share/doc/gettext/examples/hello-smalltalk/po/sv.po
share/doc/gettext/examples/hello-smalltalk/po/tr.po
share/doc/gettext/examples/hello-smalltalk/po/uk.po
share/doc/gettext/examples/hello-smalltalk/po/vi.po
share/doc/gettext/examples/hello-smalltalk/po/zh_CN.po
share/doc/gettext/examples/hello-smalltalk/po/zh_HK.po
share/doc/gettext/examples/hello-smalltalk/po/zh_TW.po
share/doc/gettext/examples/hello-tcl/
share/doc/gettext/examples/hello-tcl-tk/
@ -994,22 +1182,28 @@ share/doc/gettext/examples/hello-tcl-tk/po/af.po
share/doc/gettext/examples/hello-tcl-tk/po/ca.po
share/doc/gettext/examples/hello-tcl-tk/po/de.po
share/doc/gettext/examples/hello-tcl-tk/po/el.po
share/doc/gettext/examples/hello-tcl-tk/po/eo.po
share/doc/gettext/examples/hello-tcl-tk/po/es.po
share/doc/gettext/examples/hello-tcl-tk/po/fr.po
share/doc/gettext/examples/hello-tcl-tk/po/ga.po
share/doc/gettext/examples/hello-tcl-tk/po/hu.po
share/doc/gettext/examples/hello-tcl-tk/po/id.po
share/doc/gettext/examples/hello-tcl-tk/po/it.po
share/doc/gettext/examples/hello-tcl-tk/po/ja.po
share/doc/gettext/examples/hello-tcl-tk/po/nl.po
share/doc/gettext/examples/hello-tcl-tk/po/pl.po
share/doc/gettext/examples/hello-tcl-tk/po/pt.po
share/doc/gettext/examples/hello-tcl-tk/po/ro.po
share/doc/gettext/examples/hello-tcl-tk/po/ru.po
share/doc/gettext/examples/hello-tcl-tk/po/sk.po
share/doc/gettext/examples/hello-tcl-tk/po/sl.po
share/doc/gettext/examples/hello-tcl-tk/po/sr.po
share/doc/gettext/examples/hello-tcl-tk/po/sv.po
share/doc/gettext/examples/hello-tcl-tk/po/tr.po
share/doc/gettext/examples/hello-tcl-tk/po/uk.po
share/doc/gettext/examples/hello-tcl-tk/po/vi.po
share/doc/gettext/examples/hello-tcl-tk/po/zh_CN.po
share/doc/gettext/examples/hello-tcl-tk/po/zh_HK.po
share/doc/gettext/examples/hello-tcl-tk/po/zh_TW.po
share/doc/gettext/examples/hello-tcl/INSTALL
share/doc/gettext/examples/hello-tcl/Makefile.am
@ -1026,22 +1220,28 @@ share/doc/gettext/examples/hello-tcl/po/af.po
share/doc/gettext/examples/hello-tcl/po/ca.po
share/doc/gettext/examples/hello-tcl/po/de.po
share/doc/gettext/examples/hello-tcl/po/el.po
share/doc/gettext/examples/hello-tcl/po/eo.po
share/doc/gettext/examples/hello-tcl/po/es.po
share/doc/gettext/examples/hello-tcl/po/fr.po
share/doc/gettext/examples/hello-tcl/po/ga.po
share/doc/gettext/examples/hello-tcl/po/hu.po
share/doc/gettext/examples/hello-tcl/po/id.po
share/doc/gettext/examples/hello-tcl/po/it.po
share/doc/gettext/examples/hello-tcl/po/ja.po
share/doc/gettext/examples/hello-tcl/po/nl.po
share/doc/gettext/examples/hello-tcl/po/pl.po
share/doc/gettext/examples/hello-tcl/po/pt.po
share/doc/gettext/examples/hello-tcl/po/ro.po
share/doc/gettext/examples/hello-tcl/po/ru.po
share/doc/gettext/examples/hello-tcl/po/sk.po
share/doc/gettext/examples/hello-tcl/po/sl.po
share/doc/gettext/examples/hello-tcl/po/sr.po
share/doc/gettext/examples/hello-tcl/po/sv.po
share/doc/gettext/examples/hello-tcl/po/tr.po
share/doc/gettext/examples/hello-tcl/po/uk.po
share/doc/gettext/examples/hello-tcl/po/vi.po
share/doc/gettext/examples/hello-tcl/po/zh_CN.po
share/doc/gettext/examples/hello-tcl/po/zh_HK.po
share/doc/gettext/examples/hello-tcl/po/zh_TW.po
share/doc/gettext/examples/hello-ycp/
share/doc/gettext/examples/hello-ycp/INSTALL
@ -1059,22 +1259,28 @@ share/doc/gettext/examples/hello-ycp/po/af.po
share/doc/gettext/examples/hello-ycp/po/ca.po
share/doc/gettext/examples/hello-ycp/po/de.po
share/doc/gettext/examples/hello-ycp/po/el.po
share/doc/gettext/examples/hello-ycp/po/eo.po
share/doc/gettext/examples/hello-ycp/po/es.po
share/doc/gettext/examples/hello-ycp/po/fr.po
share/doc/gettext/examples/hello-ycp/po/ga.po
share/doc/gettext/examples/hello-ycp/po/hu.po
share/doc/gettext/examples/hello-ycp/po/id.po
share/doc/gettext/examples/hello-ycp/po/it.po
share/doc/gettext/examples/hello-ycp/po/ja.po
share/doc/gettext/examples/hello-ycp/po/nl.po
share/doc/gettext/examples/hello-ycp/po/pl.po
share/doc/gettext/examples/hello-ycp/po/pt.po
share/doc/gettext/examples/hello-ycp/po/ro.po
share/doc/gettext/examples/hello-ycp/po/ru.po
share/doc/gettext/examples/hello-ycp/po/sk.po
share/doc/gettext/examples/hello-ycp/po/sl.po
share/doc/gettext/examples/hello-ycp/po/sr.po
share/doc/gettext/examples/hello-ycp/po/sv.po
share/doc/gettext/examples/hello-ycp/po/tr.po
share/doc/gettext/examples/hello-ycp/po/uk.po
share/doc/gettext/examples/hello-ycp/po/vi.po
share/doc/gettext/examples/hello-ycp/po/zh_CN.po
share/doc/gettext/examples/hello-ycp/po/zh_HK.po
share/doc/gettext/examples/hello-ycp/po/zh_TW.po
share/doc/gettext/examples/installpaths
share/doc/gettext/gettext.1.html
@ -1094,6 +1300,9 @@ share/doc/gettext/gettext_2.html
share/doc/gettext/gettext_20.html
share/doc/gettext/gettext_21.html
share/doc/gettext/gettext_22.html
share/doc/gettext/gettext_23.html
share/doc/gettext/gettext_24.html
share/doc/gettext/gettext_25.html
share/doc/gettext/gettext_3.html
share/doc/gettext/gettext_4.html
share/doc/gettext/gettext_5.html
@ -1170,7 +1379,7 @@ share/doc/gettext/textdomain.3.html
share/doc/gettext/tutorial.html
share/doc/gettext/xgettext.1.html
share/doc/libasprintf/
share/doc/libasprintf/autosprintf.html
share/doc/libasprintf/autosprintf_all.html
share/emacs/
share/emacs/site-lisp/
share/emacs/site-lisp/po-compat.el
@ -1196,12 +1405,15 @@ share/gettext/intl/dgettext.c
share/gettext/intl/dngettext.c
share/gettext/intl/eval-plural.h
share/gettext/intl/explodename.c
share/gettext/intl/export.h
share/gettext/intl/finddomain.c
share/gettext/intl/gettext.c
share/gettext/intl/gettextP.h
share/gettext/intl/gmo.h
share/gettext/intl/hash-string.c
share/gettext/intl/hash-string.h
share/gettext/intl/intl-compat.c
share/gettext/intl/intl-exports.c
share/gettext/intl/l10nflist.c
share/gettext/intl/langprefs.c
share/gettext/intl/libgnuintl.h.in
@ -1212,6 +1424,8 @@ share/gettext/intl/localcharset.h
share/gettext/intl/locale.alias
share/gettext/intl/localealias.c
share/gettext/intl/localename.c
share/gettext/intl/lock.c
share/gettext/intl/lock.h
share/gettext/intl/log.c
share/gettext/intl/ngettext.c
share/gettext/intl/os2compat.c
@ -1234,9 +1448,10 @@ share/gettext/intl/textdomain.c
share/gettext/intl/vasnprintf.c
share/gettext/intl/vasnprintf.h
share/gettext/intl/vasnwprintf.h
share/gettext/intl/version.c
share/gettext/intl/wprintf-parse.h
share/gettext/intl/xsize.h
share/gettext/mkinstalldirs
share/gettext/javaversion.class
share/gettext/msgunfmt.tcl
share/gettext/po/
share/gettext/po/Makefile.in.in
@ -1305,6 +1520,7 @@ share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
share/locale/eo/
share/locale/eo/LC_MESSAGES/
share/locale/eo/LC_MESSAGES/gettext-runtime.mo
share/locale/es/
share/locale/es/LC_MESSAGES/
share/locale/es/LC_MESSAGES/gettext-runtime.mo
@ -1419,6 +1635,9 @@ share/locale/zh_CN/
share/locale/zh_CN/LC_MESSAGES/
share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
share/locale/zh_HK/
share/locale/zh_HK/LC_MESSAGES/
share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
share/locale/zh_TW/
share/locale/zh_TW/LC_MESSAGES/
share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo