summaryrefslogtreecommitdiff
path: root/gettext-tools/examples/hello-objc
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-12-24 07:38:37 +0000
committer <>2015-02-02 12:02:29 +0000
commit482840e61f86ca321838a91e902c41d40c098bbb (patch)
tree01ea2e242fd2792d19fe192476601587901db794 /gettext-tools/examples/hello-objc
downloadgettext-tarball-482840e61f86ca321838a91e902c41d40c098bbb.tar.gz
Imported from /home/lorry/working-area/delta_gettext-tarball/gettext-0.19.4.tar.xz.gettext-0.19.4
Diffstat (limited to 'gettext-tools/examples/hello-objc')
-rw-r--r--gettext-tools/examples/hello-objc/INSTALL11
-rw-r--r--gettext-tools/examples/hello-objc/Makefile.am29
-rwxr-xr-xgettext-tools/examples/hello-objc/autoclean.sh62
-rwxr-xr-xgettext-tools/examples/hello-objc/autogen.sh50
-rw-r--r--gettext-tools/examples/hello-objc/configure.ac19
-rw-r--r--gettext-tools/examples/hello-objc/hello.m35
-rw-r--r--gettext-tools/examples/hello-objc/m4/Makefile.am5
-rw-r--r--gettext-tools/examples/hello-objc/po/LINGUAS5
-rw-r--r--gettext-tools/examples/hello-objc/po/Makevars55
-rw-r--r--gettext-tools/examples/hello-objc/po/POTFILES.in5
-rw-r--r--gettext-tools/examples/hello-objc/po/af.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/ast.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/bg.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/ca.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/cs.po27
-rw-r--r--gettext-tools/examples/hello-objc/po/da.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/de.po30
-rw-r--r--gettext-tools/examples/hello-objc/po/el.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/eo.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/es.po29
-rw-r--r--gettext-tools/examples/hello-objc/po/fi.po27
-rw-r--r--gettext-tools/examples/hello-objc/po/fr.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/ga.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/gl.po30
-rw-r--r--gettext-tools/examples/hello-objc/po/hr.po27
-rw-r--r--gettext-tools/examples/hello-objc/po/hu.po28
-rw-r--r--gettext-tools/examples/hello-objc/po/id.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/it.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/ja.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/ky.po27
-rw-r--r--gettext-tools/examples/hello-objc/po/lv.po29
-rw-r--r--gettext-tools/examples/hello-objc/po/ms.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/mt.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/nb.po28
-rw-r--r--gettext-tools/examples/hello-objc/po/nl.po30
-rw-r--r--gettext-tools/examples/hello-objc/po/pl.po26
-rw-r--r--gettext-tools/examples/hello-objc/po/pt.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/pt_BR.po29
-rw-r--r--gettext-tools/examples/hello-objc/po/ro.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/ru.po29
-rw-r--r--gettext-tools/examples/hello-objc/po/sk.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/sl.po28
-rw-r--r--gettext-tools/examples/hello-objc/po/sr.po28
-rw-r--r--gettext-tools/examples/hello-objc/po/sv.po24
-rw-r--r--gettext-tools/examples/hello-objc/po/tr.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/uk.po29
-rw-r--r--gettext-tools/examples/hello-objc/po/vi.po30
-rw-r--r--gettext-tools/examples/hello-objc/po/zh_CN.po25
-rw-r--r--gettext-tools/examples/hello-objc/po/zh_HK.po24
-rw-r--r--gettext-tools/examples/hello-objc/po/zh_TW.po26
50 files changed, 1342 insertions, 0 deletions
diff --git a/gettext-tools/examples/hello-objc/INSTALL b/gettext-tools/examples/hello-objc/INSTALL
new file mode 100644
index 0000000..6232f1b
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/INSTALL
@@ -0,0 +1,11 @@
+This example relies on:
+ - the Objective C runtime libraries (libobjc)
+
+Installation:
+ ./autogen.sh
+ ./configure --prefix=/some/prefix
+ make
+ make install
+Cleanup:
+ make distclean
+ ./autoclean.sh
diff --git a/gettext-tools/examples/hello-objc/Makefile.am b/gettext-tools/examples/hello-objc/Makefile.am
new file mode 100644
index 0000000..2d7acbb
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/Makefile.am
@@ -0,0 +1,29 @@
+# Example for use of GNU gettext.
+# This file is in the public domain.
+#
+# Makefile configuration - processed by automake.
+
+# General automake options.
+AUTOMAKE_OPTIONS = foreign no-dependencies
+ACLOCAL_AMFLAGS = -I m4
+
+# The list of subdirectories containing Makefiles.
+SUBDIRS = m4 po
+
+# The list of programs that are built.
+bin_PROGRAMS = hello
+
+# The source files of the 'hello' program.
+hello_SOURCES = hello.m gettext.h
+
+# Define a C macro LOCALEDIR indicating where catalogs will be installed.
+DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
+
+# Make sure the gettext.h include file is found.
+AM_CPPFLAGS = -I. -I$(srcdir)
+
+# Link time dependencies.
+LDADD = @LIBINTL@
+
+# Additional files to be distributed.
+EXTRA_DIST = autogen.sh autoclean.sh
diff --git a/gettext-tools/examples/hello-objc/autoclean.sh b/gettext-tools/examples/hello-objc/autoclean.sh
new file mode 100755
index 0000000..7575334
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/autoclean.sh
@@ -0,0 +1,62 @@
+#!/bin/sh
+# Example for use of GNU gettext.
+# This file is in the public domain.
+#
+# Script for cleaning all autogenerated files.
+
+test ! -f Makefile || make distclean
+
+# Brought in by explicit copy.
+rm -f gettext.h
+
+# Brought in by autopoint.
+rm -f ABOUT-NLS
+rm -f config.rpath
+rm -f m4/codeset.m4
+rm -f m4/gettext.m4
+rm -f m4/glibc2.m4
+rm -f m4/glibc21.m4
+rm -f m4/iconv.m4
+rm -f m4/intdiv0.m4
+rm -f m4/intl.m4
+rm -f m4/intldir.m4
+rm -f m4/intlmacosx.m4
+rm -f m4/intmax.m4
+rm -f m4/inttypes-pri.m4
+rm -f m4/inttypes_h.m4
+rm -f m4/lcmessage.m4
+rm -f m4/lib-ld.m4
+rm -f m4/lib-link.m4
+rm -f m4/lib-prefix.m4
+rm -f m4/lock.m4
+rm -f m4/longlong.m4
+rm -f m4/nls.m4
+rm -f m4/po.m4
+rm -f m4/printf-posix.m4
+rm -f m4/progtest.m4
+rm -f m4/size_max.m4
+rm -f m4/stdint_h.m4
+rm -f m4/uintmax_t.m4
+rm -f m4/visibility.m4
+rm -f m4/wchar_t.m4
+rm -f m4/wint_t.m4
+rm -f m4/xsize.m4
+rm -f po/Makefile.in.in
+rm -f po/remove-potcdate.sin
+
+# Generated by aclocal.
+rm -f aclocal.m4
+
+# Generated by autoconf.
+rm -f configure
+
+# Generated or brought in by automake.
+rm -f Makefile.in
+rm -f m4/Makefile.in
+rm -f install-sh
+rm -f missing
+rm -f config.guess
+rm -f config.sub
+rm -f po/*.pot
+rm -f po/stamp-po
+rm -f po/*.gmo
diff --git a/gettext-tools/examples/hello-objc/autogen.sh b/gettext-tools/examples/hello-objc/autogen.sh
new file mode 100755
index 0000000..78b1503
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/autogen.sh
@@ -0,0 +1,50 @@
+#!/bin/sh
+# Example for use of GNU gettext.
+# This file is in the public domain.
+#
+# Script for regenerating all autogenerated files.
+
+if test -r ../Makefile.am; then
+ # Inside the gettext source directory.
+ GETTEXT_TOPSRCDIR=../../..
+else
+ if test -r ../Makefile; then
+ # Inside a gettext build directory.
+ GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile`
+ # Adjust a relative top_srcdir.
+ case $GETTEXT_TOOLS_SRCDIR in
+ /*) ;;
+ *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;;
+ esac
+ GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../..
+ else
+ # Installed under ${prefix}/share/doc/gettext/examples.
+ . ../installpaths
+ fi
+fi
+
+cp -p ${GETTEXTSRCDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-lib}/gettext.h gettext.h
+
+autopoint -f # was: gettextize -f -c
+rm po/Makevars.template
+rm po/Rules-quot
+rm po/boldquot.sed
+rm po/en@boldquot.header
+rm po/en@quot.header
+rm po/insert-header.sin
+rm po/quot.sed
+
+aclocal -I m4
+
+autoconf
+
+automake -a -c
+
+cd po
+for f in *.po; do
+ if test -r "$f"; then
+ lang=`echo $f | sed -e 's,\.po$,,'`
+ msgfmt -c -o $lang.gmo $lang.po
+ fi
+done
+cd ..
diff --git a/gettext-tools/examples/hello-objc/configure.ac b/gettext-tools/examples/hello-objc/configure.ac
new file mode 100644
index 0000000..86ddc70
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/configure.ac
@@ -0,0 +1,19 @@
+dnl Example for use of GNU gettext.
+dnl This file is in the public domain.
+dnl
+dnl Configuration file - processed by autoconf.
+
+AC_INIT
+AC_CONFIG_SRCDIR(hello.m)
+AM_INIT_AUTOMAKE(hello-objc, 0)
+
+AC_PROG_CC
+AC_SUBST(OBJC,["$CC"])
+AC_CHECK_HEADERS([unistd.h])
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION(0.15)
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([m4/Makefile])
+AC_CONFIG_FILES([po/Makefile.in])
+AC_OUTPUT
diff --git a/gettext-tools/examples/hello-objc/hello.m b/gettext-tools/examples/hello-objc/hello.m
new file mode 100644
index 0000000..1fca03e
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/hello.m
@@ -0,0 +1,35 @@
+/* Example for use of GNU gettext.
+ This file is in the public domain.
+
+ Source code of the Objective-C program. */
+
+
+/* Get setlocale() declaration. */
+#include <locale.h>
+
+/* Get printf() declaration. */
+#include <stdio.h>
+
+/* Get getpid() declaration. */
+#if HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+/* Get gettext(), textdomain(), bindtextdomain() declaration. */
+#include "gettext.h"
+/* Define shortcut for gettext(). */
+#define _(string) gettext (string)
+
+int
+main ()
+{
+ setlocale (LC_ALL, "");
+ textdomain ("hello-objc");
+ bindtextdomain ("hello-objc", LOCALEDIR);
+
+ printf ("%s\n", _("Hello, world!"));
+ printf (_("This program is running as process number %d."), getpid ());
+ putchar ('\n');
+
+ return 0;
+}
diff --git a/gettext-tools/examples/hello-objc/m4/Makefile.am b/gettext-tools/examples/hello-objc/m4/Makefile.am
new file mode 100644
index 0000000..000cd06
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/m4/Makefile.am
@@ -0,0 +1,5 @@
+EXTRA_DIST = \
+ codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 \
+ inttypes_h.m4 inttypes-pri.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 \
+ lib-prefix.m4 lock.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 \
+ uintmax_t.m4 visibility.m4
diff --git a/gettext-tools/examples/hello-objc/po/LINGUAS b/gettext-tools/examples/hello-objc/po/LINGUAS
new file mode 100644
index 0000000..339c7f9
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/LINGUAS
@@ -0,0 +1,5 @@
+# Example for use of GNU gettext.
+# This file is in the public domain.
+#
+# Set of available languages.
+af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ky lv ms mt nb nl pl pt pt_BR ro ru sk sl sr sv tr uk vi zh_CN zh_HK zh_TW
diff --git a/gettext-tools/examples/hello-objc/po/Makevars b/gettext-tools/examples/hello-objc/po/Makevars
new file mode 100644
index 0000000..6b3a68c
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/Makevars
@@ -0,0 +1,55 @@
+# Makefile variables for PO directory in any package using GNU gettext.
+
+# Usually the message domain is the same as the package name.
+DOMAIN = $(PACKAGE)
+
+# These two variables depend on the location of this directory.
+subdir = po
+top_builddir = ..
+
+# These options get passed to xgettext.
+XGETTEXT_OPTIONS = \
+ --keyword=_ --flag=_:1:pass-c-format \
+ --keyword=N_ --flag=N_:1:pass-c-format
+
+# This is the copyright holder that gets inserted into the header of the
+# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
+# package. (Note that the msgstr strings, extracted from the package's
+# sources, belong to the copyright holder of the package.) Translators are
+# expected to transfer the copyright for their translations to this person
+# or entity, or to disclaim their copyright. The empty string stands for
+# the public domain; in this case the translators are expected to disclaim
+# their copyright.
+COPYRIGHT_HOLDER = Yoyodyne, Inc.
+
+# This is the email address or URL to which the translators shall report
+# bugs in the untranslated strings:
+# - Strings which are not entire sentences, see the maintainer guidelines
+# in the GNU gettext documentation, section 'Preparing Strings'.
+# - Strings which use unclear terms or require additional context to be
+# understood.
+# - Strings which make invalid assumptions about notation of date, time or
+# money.
+# - Pluralisation problems.
+# - Incorrect English spelling.
+# - Incorrect formatting.
+# It can be your email address, or a mailing list address where translators
+# can write to without being subscribed, or the URL of a web page through
+# which the translators can contact you.
+MSGID_BUGS_ADDRESS = bug-gnu-gettext@gnu.org
+
+# This is the list of locale categories, beyond LC_MESSAGES, for which the
+# message catalogs shall be used. It is usually empty.
+EXTRA_LOCALE_CATEGORIES =
+
+# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
+# context. Possible values are "yes" and "no". Set this to yes if the
+# package uses functions taking also a message context, like pgettext(), or
+# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
+USE_MSGCTXT = no
+
+# These options get passed to msgmerge.
+# Useful options are in particular:
+# --previous to keep previous msgids of translated messages,
+# --quiet to reduce the verbosity.
+MSGMERGE_OPTIONS = --quiet
diff --git a/gettext-tools/examples/hello-objc/po/POTFILES.in b/gettext-tools/examples/hello-objc/po/POTFILES.in
new file mode 100644
index 0000000..0f7595d
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/POTFILES.in
@@ -0,0 +1,5 @@
+# Example for use of GNU gettext.
+# This file is in the public domain.
+#
+# List of files which contain translatable strings.
+hello.m
diff --git a/gettext-tools/examples/hello-objc/po/af.po b/gettext-tools/examples/hello-objc/po/af.po
new file mode 100644
index 0000000..58c3a31
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/af.po
@@ -0,0 +1,25 @@
+# Afrikaans translation for Silky
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# This file is distributed under the same license as the silky package.
+# Hanlie Pretorius <hpretorius@pnp.co.za>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.13.1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2003-12-31 10:30+2\n"
+"Last-Translator: Ysbeer <ysbeer@af.org.za>\n"
+"Language-Team: Afrikaans <i18n@af.org.za>\n"
+"Language: af\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hallo wêreld!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Hierdie program loop as prosesnommer %d."
diff --git a/gettext-tools/examples/hello-objc/po/ast.po b/gettext-tools/examples/hello-objc/po/ast.po
new file mode 100644
index 0000000..c0c0e04
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ast.po
@@ -0,0 +1,26 @@
+# Mensajes en asturianu para GNU gettext.
+# This file is distributed under the same license as the gettext package.
+# Copyright (C) 2009 Yoyodyne, Inc. (msgids)
+# Copyright (C) 2009 Free Software Foundation, Inc.
+# Marquinos <maacub@gmail.com>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.17\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2009-12-15 12:16+0100\n"
+"Last-Translator: Marquinos <maacub@gmail.com>\n"
+"Language-Team: Asturian <ubuntu-l10n-ast@lists.ubuntu.com>\n"
+"Language: ast\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hola, mundu!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Esti programa ta corriendo como'l procesu nmberu %d."
diff --git a/gettext-tools/examples/hello-objc/po/bg.po b/gettext-tools/examples/hello-objc/po/bg.po
new file mode 100644
index 0000000..c6d828e
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/bg.po
@@ -0,0 +1,25 @@
+# Bulgarian translations for hello-objc package.
+# Copyright (C) 2010 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Roumen Petrov <transl@roumenpetrov.info>, 2010,2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: GNU hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-16 22:12+0200\n"
+"Last-Translator: Roumen Petrov <transl@roumenpetrov.info>\n"
+"Language-Team: Bulgarian <dict@ludost.net>\n"
+"Language: bg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Здравейте на всички !"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Програмата е пусната под процес номер %d."
diff --git a/gettext-tools/examples/hello-objc/po/ca.po b/gettext-tools/examples/hello-objc/po/ca.po
new file mode 100644
index 0000000..20e7894
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ca.po
@@ -0,0 +1,26 @@
+# Catalan messages for GNU hello-objc.
+# Copyright (C) 2003, 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Ivan Vilata i Balaguer <ivan@selidor.net>, 2003, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-12 14:23+0100\n"
+"Last-Translator: Ivan Vilata i Balaguer <ivan@selidor.net>\n"
+"Language-Team: Catalan <ca@dodds.net>\n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hola, món!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Aquest programa està corrent amb el número de procés %d."
diff --git a/gettext-tools/examples/hello-objc/po/cs.po b/gettext-tools/examples/hello-objc/po/cs.po
new file mode 100644
index 0000000..d972b75
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/cs.po
@@ -0,0 +1,27 @@
+# The Czech translation for the gettext package.
+# Copyright (C) 2011 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# Marek Černocký <marek@manet.cz>, 2011.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.18\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2011-11-30 16:10+0100\n"
+"Last-Translator: Marek Černocký <marek@manet.cz>\n"
+"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Ahoj světe!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Tento program běží jako proces číslo %d."
diff --git a/gettext-tools/examples/hello-objc/po/da.po b/gettext-tools/examples/hello-objc/po/da.po
new file mode 100644
index 0000000..2817436
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/da.po
@@ -0,0 +1,25 @@
+# Danish messages for hello-objc.
+# Copyright (C) 2011 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Jan Djrv <jan.h.d@swipnet.se>, 2003, 2006
+# Keld Simonsen <keld@keldix.com>, 2011
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.18\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2011-01-08 12:39+0100\n"
+"Last-Translator: Keld Simonsen <keld@keldix.com>\n"
+"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hej verden!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Dette program krer som proces nummer %d."
diff --git a/gettext-tools/examples/hello-objc/po/de.po b/gettext-tools/examples/hello-objc/po/de.po
new file mode 100644
index 0000000..3144a48
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/de.po
@@ -0,0 +1,30 @@
+# German messages for hello-objc.
+# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Bruno Haible <bruno@clisp.org>, 2003.
+# Karl Eichwalder <ke@gnu.franken.de>, 2003.
+# Jakob Kramer <jakob.kramer@gmx.de>, 2013.
+# Mario Blättermann <mario.blaettermann@gmail.com>, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-05-10 17:47+0100\n"
+"Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>\n"
+"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.5.4\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hallo Welt!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Dieses Programm läuft mit der Prozess-Nummer %d."
diff --git a/gettext-tools/examples/hello-objc/po/el.po b/gettext-tools/examples/hello-objc/po/el.po
new file mode 100644
index 0000000..b724427
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/el.po
@@ -0,0 +1,25 @@
+# Greek translation of hello-objc
+# Copyright (C) 2005 Free Software Foundation, Inc.
+# Simos Xenitellis <simos74@gmx.net>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.14.1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2005-01-06 18:50+0000\n"
+"Last-Translator: Simos Xenitellis <simos74@gmx.net>\n"
+"Language-Team: Greek <nls@tux.hellug.gr>\n"
+"Language: el\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Γεια σου, κόσμε!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d."
diff --git a/gettext-tools/examples/hello-objc/po/eo.po b/gettext-tools/examples/hello-objc/po/eo.po
new file mode 100644
index 0000000..21956a7
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/eo.po
@@ -0,0 +1,25 @@
+# La teksto por la mesaĝoj de la programo "gettext".
+# Copyright (C) 2006 Yoyodyne, Inc.
+# This file is distributed under the same license as the gettext package.
+# Edmund GRIMLEY EVANS <edmundo@rano.org>, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.15-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2006-07-02 19:24+0100\n"
+"Last-Translator: Edmund GRIMLEY EVANS <edmundo@rano.org>\n"
+"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
+"Language: eo\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Saluton, mondo!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ĉi tiu programo rulas kiel procezo kun numero %d."
diff --git a/gettext-tools/examples/hello-objc/po/es.po b/gettext-tools/examples/hello-objc/po/es.po
new file mode 100644
index 0000000..7398c20
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/es.po
@@ -0,0 +1,29 @@
+# Mensajes en español para GNU gettext.
+# Copyright (C) 2014 Yoyodyne, Inc. (msgids)
+#
+# This file is distributed under the same license as the gettext package.
+#
+# Max de Mendizábal <max@upn.mx>, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004.
+# Antonio Ceballos <aceballos@gmail.com>, 2014
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-11 00:40+0100\n"
+"Last-Translator: Antonio Ceballos <aceballos@gmail.com>\n"
+"Language-Team: Spanish <es@tp.org.es>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "¡Hola, mundo!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Este programa está corriendo como el proceso número %d."
diff --git a/gettext-tools/examples/hello-objc/po/fi.po b/gettext-tools/examples/hello-objc/po/fi.po
new file mode 100644
index 0000000..3518e7c
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/fi.po
@@ -0,0 +1,27 @@
+# Finnish messages for GNU Gettext examples.
+# This file is distributed under the same license as the gettext package.
+# Copyright © 2007, 2014 Yoyodyne, Inc. (msgids)
+# Lauri Nurmi <lanurmi@iki.fi>, 2007.
+# Jorma Karvonen <karvonen.jorma@gmail.com>, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-06-23 16:51+0300\n"
+"Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>\n"
+"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti.
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Terve maailma!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Tämän ohjelman prosessinumero on %d."
diff --git a/gettext-tools/examples/hello-objc/po/fr.po b/gettext-tools/examples/hello-objc/po/fr.po
new file mode 100644
index 0000000..0859ed7
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/fr.po
@@ -0,0 +1,26 @@
+# Messages français pour GNU gettext.
+# Copyright © 2006 Yoyodyne, Inc.
+# Michel Robitaille <robitail@IRO.UMontreal.CA>, 2006.
+# Christophe Combelles <ccomb@free.fr>, 2006
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: GNU hello-objc 0.15-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2006-10-01 02:29+0200\n"
+"Last-Translator: Christophe Combelles <ccomb@free.fr>\n"
+"Language-Team: French <traduc@traduc.org>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Bonjour, le monde !"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ce programme est exécuté en tant que processus numéro %d."
diff --git a/gettext-tools/examples/hello-objc/po/ga.po b/gettext-tools/examples/hello-objc/po/ga.po
new file mode 100644
index 0000000..9ef062a
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ga.po
@@ -0,0 +1,25 @@
+# Irish translations for hello-objc.
+# Copyright (C) 2004 Yoyodyne, Inc.
+# This file is distributed under the same license as the hello-objc package.
+# Kevin Patrick Scannell <scannell@SLU.EDU>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.14.1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2005-02-07 12:09-0500\n"
+"Last-Translator: Kevin Patrick Scannell <scannell@SLU.EDU>\n"
+"Language-Team: Irish <ga@li.org>\n"
+"Language: ga\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Dia duit, a dhomhain!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "T an clr seo rith mar phriseas %d."
diff --git a/gettext-tools/examples/hello-objc/po/gl.po b/gettext-tools/examples/hello-objc/po/gl.po
new file mode 100644
index 0000000..b7f944a
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/gl.po
@@ -0,0 +1,30 @@
+# Galician translation for hello-objc package.
+# Copyright (C) 2010 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# Leandro Regueiro <leandro.regueiro@gmail.com>, 2010-2014.
+#
+# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas
+# colaborar connosco, podes atopar máis información en <http://trasno.net>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-05-10 16:34+0100\n"
+"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"Language-Team: Galician <proxecto@trasno.net>\n"
+"Language: gl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Ola, mundo!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Este programa estase executando como o proceso número %d."
diff --git a/gettext-tools/examples/hello-objc/po/hr.po b/gettext-tools/examples/hello-objc/po/hr.po
new file mode 100644
index 0000000..50a1e50
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/hr.po
@@ -0,0 +1,27 @@
+# Translation of hello-objc to Croatian.
+# Copyright © 2012 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Tomislav Krznar <tomislav.krznar@gmail.com>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.18\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2012-07-04 18:38+0200\n"
+"Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\n"
+"Language-Team: Croatian <lokalizacija@linux.hr>\n"
+"Language: hr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Pozdrav, svijete!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ovaj program je pokrenut kao proces broj %d."
diff --git a/gettext-tools/examples/hello-objc/po/hu.po b/gettext-tools/examples/hello-objc/po/hu.po
new file mode 100644
index 0000000..1b7f32d
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/hu.po
@@ -0,0 +1,28 @@
+# Hungarian translation for hello-objc.
+# This file is distributed under the same license as the gettext package.
+# Copyright (C) 2014 Yoyodyne, Inc. (msgids)
+#
+# Tamás Kiss <atomi@inf.elte.hu>, 2005.
+# Balázs Úr <urbalazs@gmail.com>, 2014.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-05-11 16:21+0200\n"
+"Last-Translator: Balázs Úr <urbalazs@gmail.com>\n"
+"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
+"Language: hu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 1.5\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hello, világ!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ez a program a(z) %d folyamatazonosítóval fut."
diff --git a/gettext-tools/examples/hello-objc/po/id.po b/gettext-tools/examples/hello-objc/po/id.po
new file mode 100644
index 0000000..d8fb99d
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/id.po
@@ -0,0 +1,26 @@
+# translation of hello-objc-0.15-pre5.po to Indonesian
+# Copyright (C) 2006 Yoyodyne, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Tedi Heriyanto <tedi_heriyanto@yahoo.com>, 2006.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.15-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2006-09-27 20:19+0700\n"
+"Last-Translator: Tedi Heriyanto <tedi_heriyanto@yahoo.com>\n"
+"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
+"Language: id\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.2\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hello, world!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Program ini berjalan sebagai proses nomor %d"
diff --git a/gettext-tools/examples/hello-objc/po/it.po b/gettext-tools/examples/hello-objc/po/it.po
new file mode 100644
index 0000000..7ec12fc
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/it.po
@@ -0,0 +1,25 @@
+# Italian messages for hello-objc.
+# Copyright (C) 2005, 2006 Yoyodyne, Inc.
+# This file is distributed under the same license as the gettext package.
+# Marco Colombo <m.colombo@ed.ac.uk>, 2005, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.15-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2006-07-01 10:46+0100\n"
+"Last-Translator: Marco Colombo <m.colombo@ed.ac.uk>\n"
+"Language-Team: Italian <tp@lists.linux.it>\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Salve, mondo!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Questo programma è in esecuzione con numero di processo %d."
diff --git a/gettext-tools/examples/hello-objc/po/ja.po b/gettext-tools/examples/hello-objc/po/ja.po
new file mode 100644
index 0000000..5864488
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ja.po
@@ -0,0 +1,25 @@
+# Translation of `hello-objc' messages to Japanese.
+# Copyright (C) 2005, 2006, 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Masahito Yamaga <ma@yama-ga.com>, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: GNU hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-11 08:49+0900\n"
+"Last-Translator: Masahito Yamaga <ma@yama-ga.com>\n"
+"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=EUC-JP\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr ", ˤ!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Υץϥץֹ %d ưƤޤ."
diff --git a/gettext-tools/examples/hello-objc/po/ky.po b/gettext-tools/examples/hello-objc/po/ky.po
new file mode 100644
index 0000000..06d997c
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ky.po
@@ -0,0 +1,27 @@
+# Translation of 'hello-objc' messages to Kirghiz.
+# Copyright (C) 2006 Yoyodyne, Inc.
+# This file is distributed under the same license as the silky package.
+# Ilyas Bakirov <just_ilyas@yahoo.com>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.16.2-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2007-11-13 16:02+0600\n"
+"Last-Translator: Ilyas Bakirov <just_ilyas@yahoo.com>\n"
+"Language-Team: Kirghiz <i18n-team-ky-kyrgyz@lists.sourceforge.net>\n"
+"Language: ky\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Kyrgyz\n"
+"X-Poedit-Country: KYRGYZSTAN\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Салам дүйнө!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Бул программа %d процесс номери катары иштеп жатат."
diff --git a/gettext-tools/examples/hello-objc/po/lv.po b/gettext-tools/examples/hello-objc/po/lv.po
new file mode 100644
index 0000000..87181c9
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/lv.po
@@ -0,0 +1,29 @@
+# Latvian translation of hello-objc
+# Copyright (C) 2009 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Arvis Lācis <arvis.lacis@inbox.lv>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.17\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2009-07-28 21:26+0100\n"
+"Last-Translator: Rihards Priedītis <rprieditis@gmail.com>\n"
+"Language-Team: Latvian <translation-team-lv@lists.sourceforge.net>\n"
+"Language: lv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Latvian\n"
+"X-Poedit-Country: LATVIA\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
+"2);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Sveika, pasaule!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Šī programma darbojas kā process ar numuru %d."
diff --git a/gettext-tools/examples/hello-objc/po/ms.po b/gettext-tools/examples/hello-objc/po/ms.po
new file mode 100644
index 0000000..36af0d4
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ms.po
@@ -0,0 +1,26 @@
+# hello-objc Bahasa Melayu (Malay) (ms).
+# Copyright (C) 2006 Yoyodyne, Inc.
+# Copyright (C) 2006 Free Software Foundation, Inc.
+# This file is distributed under the same license as the hello-objc package.
+# Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.15-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2006-12-22 21:36+0800\n"
+"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
+"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
+"Language: ms\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hello, world!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Program ini dilaksanakan sebagai proses bernombor %d."
diff --git a/gettext-tools/examples/hello-objc/po/mt.po b/gettext-tools/examples/hello-objc/po/mt.po
new file mode 100644
index 0000000..cfb6876
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/mt.po
@@ -0,0 +1,26 @@
+# hello-objc-0.16.2-pre5.
+# Copyright (C) 2008 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Clyde Meli <cmeli@cis.um.edu.mt>, 2001-2008.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.16.2-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2008-11-18 17:27+0100\n"
+"Last-Translator: Clyde Meli <cmeli@cis.um.edu.mt>\n"
+"Language-Team: Maltese <translation-team-mt@lists.sourceforge.net>\n"
+"Language: mt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-3\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hello, lil kulħadd!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d."
diff --git a/gettext-tools/examples/hello-objc/po/nb.po b/gettext-tools/examples/hello-objc/po/nb.po
new file mode 100644
index 0000000..3dcf3b1
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/nb.po
@@ -0,0 +1,28 @@
+# Norwegian Bokmal translations for hello-objc package.
+# Copyright (C) 2012 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# Johnny A. Solbu <johnny@solbu.net>, 2012-2014
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-07-22 13:18+0100\n"
+"Last-Translator: Johnny A. Solbu <johnny@solbu.net>\n"
+"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
+"Language: nb_NO\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.5.4\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hallo verden!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Dette programmet kjører som prosess nummer %d."
diff --git a/gettext-tools/examples/hello-objc/po/nl.po b/gettext-tools/examples/hello-objc/po/nl.po
new file mode 100644
index 0000000..836b6df
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/nl.po
@@ -0,0 +1,30 @@
+# Dutch translations for GNU hello-objc.
+# Copyright (C) 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# "Waar de wind waait."
+#
+# Benno Schulenberg <benno@vertaalt.nl>, 2007, 2014.
+# Elros Cyriatan <cyriatan@fastmail.fm>, 2004.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-05-11 12:17+0200\n"
+"Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n"
+"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hallo, wereld!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Dit programma draait als proces nummer %d."
diff --git a/gettext-tools/examples/hello-objc/po/pl.po b/gettext-tools/examples/hello-objc/po/pl.po
new file mode 100644
index 0000000..b482e7f
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/pl.po
@@ -0,0 +1,26 @@
+# Polish translations for the GNU gettext messages, hello-objc domain
+# Copyright (C) 2010 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Rafał Maszkowski <rzm@icm.edu.pl>, 2003, 2010, 2014 „”
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-10 21:50+0100\n"
+"Last-Translator: Rafał Maszkowski <rzm@icm.edu.pl>\n"
+"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
+"Language: pl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Cześć, świecie!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ten program działa jako proces o numerze %d."
diff --git a/gettext-tools/examples/hello-objc/po/pt.po b/gettext-tools/examples/hello-objc/po/pt.po
new file mode 100644
index 0000000..a204bad
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/pt.po
@@ -0,0 +1,25 @@
+# Portuguese translation of 'hello-objc' package.
+# Copyright (C) 2005 Yoyodyne, Inc.
+# This file is distributed under the same license as the hello-objc package.
+# Helder Correia <helder.pereira.correia@gmail.com>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.14.5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2005-11-19 23:08+0000\n"
+"Last-Translator: Helder Correia <helder.pereira.correia@gmail.com>\n"
+"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Olá, Mundo!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Este programa está a ser executado com o número de processo %d."
diff --git a/gettext-tools/examples/hello-objc/po/pt_BR.po b/gettext-tools/examples/hello-objc/po/pt_BR.po
new file mode 100644
index 0000000..69f62bd
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/pt_BR.po
@@ -0,0 +1,29 @@
+# Brazilian Portuguese translation for gettext-example
+# Copyright (C) 2014 Yoyodyne, Inc. (msgids)
+# Copyright (C) 2014 Free Software Foundation, Inc.
+# This file is distributed under the same license as the gettext package.
+# Rafael Ferreira <rafael.f.f1@gmail.com>, 2013, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-10 20:49-0300\n"
+"Last-Translator: Rafael Ferreira <rafael.f.f1@gmail.com>\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"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.6.11\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Olá, mundo!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Este programa está executando com número de processo %d."
diff --git a/gettext-tools/examples/hello-objc/po/ro.po b/gettext-tools/examples/hello-objc/po/ro.po
new file mode 100644
index 0000000..ac33e16
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ro.po
@@ -0,0 +1,25 @@
+# Mesajele n limba romn pentru pachetul hello-objc-0.13-pre1.
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# Acest fiier este distribuit sub aceeai licen ca pachetul hello-objc.
+# Eugen Hoanca <eugenh@urban-grafx.ro>, 2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.13-pre1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2003-11-22 11:15+0200\n"
+"Last-Translator: Eugen Hoanca <eugenh@urban-grafx.ro>\n"
+"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
+"Language: ro\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Salut, lume! (Hello, world!)"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Acest program este rulat ca procesul numrul %d."
diff --git a/gettext-tools/examples/hello-objc/po/ru.po b/gettext-tools/examples/hello-objc/po/ru.po
new file mode 100644
index 0000000..c83c01d
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/ru.po
@@ -0,0 +1,29 @@
+# Translation of hello-objc-0.14.1.po to Russian
+# Copyright (C) 2004 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# Pavel Maryanov <acid_jack@ukr.net>, 2004.
+# Yuri Kozlov <yuray@komyakino.ru>, 2014.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-15 19:16+0300\n"
+"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
+"Language-Team: Russian <gnu@mx.ru>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.5\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Здравствуй, мир!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Эта программа выполняется как процесс под номером %d."
diff --git a/gettext-tools/examples/hello-objc/po/sk.po b/gettext-tools/examples/hello-objc/po/sk.po
new file mode 100644
index 0000000..3f1eafd
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/sk.po
@@ -0,0 +1,25 @@
+# Slovak translations GNU for hello-objc package.
+# Copyright (C) 2003, 2004, 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Marcel Telka <marcel@telka.sk>, 2003, 2004, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: GNU hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-15-10 20:44+0100\n"
+"Last-Translator: Marcel Telka <marcel@telka.sk>\n"
+"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
+"Language: sk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Ahoj svet!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Tento program beží ako proces s číslom %d."
diff --git a/gettext-tools/examples/hello-objc/po/sl.po b/gettext-tools/examples/hello-objc/po/sl.po
new file mode 100644
index 0000000..42b6229
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/sl.po
@@ -0,0 +1,28 @@
+# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example
+# Copyright (C) 2005 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# Primož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2005, 2014.
+# $Id: hello-objc-0.19.4-rc1.sl.po,v 1.2 2014/12/11 09:15:50 peterlin Exp $
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-11 10:15+0100\n"
+"Last-Translator: Primož Peterlin <primozz.peterlin@gmail.com>\n"
+"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
+"Language: sl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
+"%100==4 ? 3 : 0);\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Pozdravljen, svet!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ta program teče kot proces številka %d."
diff --git a/gettext-tools/examples/hello-objc/po/sr.po b/gettext-tools/examples/hello-objc/po/sr.po
new file mode 100644
index 0000000..f10af4a
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/sr.po
@@ -0,0 +1,28 @@
+# Serbian translation of hello-objc.
+# Copyright (C) 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Aleksandar Jelenak <jelenak@netlinkplus.net>, 2004.
+# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2014.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc-0.19-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-05-12 21:25+0200\n"
+"Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
+"Language-Team: Serbian <(nothing)>\n"
+"Language: sr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Virtaal 0.7.1\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Здраво свима!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Овај програм се извршава као процес број %d."
diff --git a/gettext-tools/examples/hello-objc/po/sv.po b/gettext-tools/examples/hello-objc/po/sv.po
new file mode 100644
index 0000000..0df8e56
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/sv.po
@@ -0,0 +1,24 @@
+# Swedish messages for hello-objc.
+# Copyright © 2006, 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Jan Djärv <jan.h.d@swipnet.se>, 2003, 2006, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-23 09:18+0100\n"
+"Last-Translator: Jan Djärv <jan.h.d@swipnet.se>\n"
+"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Hej världen!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Detta program kör som process nummer %d."
diff --git a/gettext-tools/examples/hello-objc/po/tr.po b/gettext-tools/examples/hello-objc/po/tr.po
new file mode 100644
index 0000000..5e18359
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/tr.po
@@ -0,0 +1,25 @@
+# Turkish translations for Gnu Gettext Package.
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Nilgün Belma Bugüner <nilgun@superonline.com>, 2003,2004
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.14-pre1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2004-01-21 06:17+0300\n"
+"Last-Translator: Nilgün Belma Bugüner <nilgun@superonline.com>\n"
+"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Merhaba Dünyalı!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Bu yazılım, %d süreç kimliği ile çalışıyor."
diff --git a/gettext-tools/examples/hello-objc/po/uk.po b/gettext-tools/examples/hello-objc/po/uk.po
new file mode 100644
index 0000000..e6981b8
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/uk.po
@@ -0,0 +1,29 @@
+# Ukrainian translation to hello-objc
+# Copyright (C) 2014 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+#
+# Maxim V. Dziumanenko <dziumanenko@gmail.com>, 2004-2007.
+# Yuri Chornoivan <yurchor@ukr.net>, 2014.
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-10 22:33+0200\n"
+"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
+"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 1.5\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Привіт, світе!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Ця програма виконується як процес з номером %d."
diff --git a/gettext-tools/examples/hello-objc/po/vi.po b/gettext-tools/examples/hello-objc/po/vi.po
new file mode 100644
index 0000000..4fe2b36
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/vi.po
@@ -0,0 +1,30 @@
+# Vietnamese Translation for Gettext Examples.
+# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext.
+# Copyright © 2014 Yoyodyne, Inc. (msgids)
+# Copyright © 2014 Free Software Foundation, Inc.
+# This file is distributed under the same license as the gettext package.
+# Clytie Siddall <clytie@riverland.net.au>, 2005-2010.
+# Trần Ngọc Quân <vnwildman@gmail.com>, 2012, 2013, 2014.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.19.4-rc1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2014-12-11 08:03+0700\n"
+"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
+"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Langugae-Team-Website: <http://translationproject.org/team/vi.html>\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "Chào thế giới!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "Chương trình này đang chạy với mã số tiến trình %d."
diff --git a/gettext-tools/examples/hello-objc/po/zh_CN.po b/gettext-tools/examples/hello-objc/po/zh_CN.po
new file mode 100644
index 0000000..55ab2c8
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/zh_CN.po
@@ -0,0 +1,25 @@
+# zh_CN translation for hello-objc.
+# Copyright (C) 2003 Free Software Foundation, Inc.
+# This file is distributed under the same license as the hello-objc package.
+# Funda Wang <fundawang@linux.net.cn>, 2003.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.13.1\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2003-12-18 19:07+0800\n"
+"Last-Translator: Funda Wang <fundawang@linux.net.cn>\n"
+"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
+"Language: zh_CN\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "世界你好!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "此程序正以进程号 %d 运行。"
diff --git a/gettext-tools/examples/hello-objc/po/zh_HK.po b/gettext-tools/examples/hello-objc/po/zh_HK.po
new file mode 100644
index 0000000..cb50e00
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/zh_HK.po
@@ -0,0 +1,24 @@
+# Chinese (Hong Kong) translation of hello-objc.
+# Copyright (C) 2006 Yoyodyne, Inc.
+# Abel Cheung <abelcheung@gmail.com>, 2006.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.15-pre5\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2006-07-05 15:40+0800\n"
+"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
+"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
+"Language: zh_HK\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "你好!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "本程式正在執行中,進程編號為 %d。"
diff --git a/gettext-tools/examples/hello-objc/po/zh_TW.po b/gettext-tools/examples/hello-objc/po/zh_TW.po
new file mode 100644
index 0000000..de87757
--- /dev/null
+++ b/gettext-tools/examples/hello-objc/po/zh_TW.po
@@ -0,0 +1,26 @@
+# Traditional Chinese translation of hello-objc.
+# Copyright (C) 2009 Yoyodyne, Inc. (msgids)
+# This file is distributed under the same license as the gettext package.
+# Abel Cheung <abelcheung@gmail.com>, 2005.
+# Wei-Lun Chao <bluebat@member.fsf.org>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: hello-objc 0.18\n"
+"Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org\n"
+"PO-Revision-Date: 2013-09-03 13:00+0800\n"
+"Last-Translator: Wei-Lun Chao <bluebat@member.fsf.org>\n"
+"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
+"Language: zh_TW\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: hello.m:30
+msgid "Hello, world!"
+msgstr "哈囉,大家好!"
+
+#: hello.m:31
+#, c-format
+msgid "This program is running as process number %d."
+msgstr "本程式正在執行,行程編號為 %d。"