diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | configure.in | 7 | ||||
-rw-r--r-- | po/LINGUAS | 104 | ||||
-rw-r--r-- | po/Makefile.in.in | 2 |
4 files changed, 115 insertions, 7 deletions
@@ -1,5 +1,14 @@ 2008-08-02 Matthias Clasen <mclasen@redhat.com> + Bug 344383 – use po/LINGUAS + + * po/LINGUAS: New file, to make translators happy. + * configure.in: Use po/LINGUAS + * po/Makefile.in.in: Add po/LINGUAS to DISTFILES + Patch by Claude Paroz + +2008-08-02 Matthias Clasen <mclasen@redhat.com> + * gdk/gdkapplaunchcontext.c: Improve the docs 2008-08-01 Claudio Saavedra <csaavedra@igalia.com> diff --git a/configure.in b/configure.in index bf98c8725e..f069aec4f3 100644 --- a/configure.in +++ b/configure.in @@ -484,12 +484,7 @@ if test "$gtk_ok" = "yes"; then fi # i18n stuff -# TRANSLATORS: Please note that gtk+ has both po/ and po-properties/ -# directories. If you add a new language to ALL_LINGUAS, please make -# sure that both po/ and po-properties/ have .po files that correspond -# to your language. If you only add one to po/, the build will break -# in po-properties/. -ALL_LINGUAS="af am ang ar as az az_IR be be@latin bg bn bn_IN br bs ca ca@valencia cs cy da de dz el en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hr hu hy ia id io is it ja ka kn ko ku li lt lv mi mk ml mn mr ms nb ne nl nn nso oc or pa pl ps pt pt_BR ro ru rw si sk sl sq sr sr@Latn sr@ije sv ta te th tk tr tt uk ur uz uz@cyrillic vi wa xh yi zh_CN zh_HK zh_TW" +ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" AM_GLIB_GNU_GETTEXT LIBS="$LIBS $INTLLIBS" AC_OUTPUT_COMMANDS([case "$CONFIG_FILES" in *po-properties/Makefile.in*) diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000000..50e2e4da48 --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1,104 @@ +# TRANSLATORS: Please note that gtk+ has both po/ and po-properties/ +# directories. If you add a new language in this file, please make +# sure that both po/ and po-properties/ have .po files that correspond +# to your language. If you only add one to po/, the build will break +# in po-properties/. +# Please keep this list sorted alphabetically. +# +af +am +ang +ar +as +az +az_IR +be +be@latin +bg +bn +bn_IN +br +bs +ca +ca@valencia +cs +cy +da +de +dz +el +en_CA +en_GB +eo +es +et +eu +fa +fi +fr +ga +gl +gu +he +hi +hr +hu +hy +ia +id +io +is +it +ja +ka +kn +ko +ku +li +lt +lv +mi +mk +ml +mn +mr +ms +nb +ne +nl +nn +nso +oc +or +pa +pl +ps +pt +pt_BR +ro +ru +rw +si +sk +sl +sq +sr +sr@Latn +sr@ije +sv +ta +te +th +tk +tr +tt +uk +ur +uz +uz@cyrillic +vi +wa +xh +yi +zh_CN +zh_HK diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 7c9131e729..4bae8f38f5 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -54,7 +54,7 @@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) SOURCES = POFILES = @POFILES@ GMOFILES = @GMOFILES@ -DISTFILES = ChangeLog Makefile.in.in POTFILES.in POTFILES.skip $(GETTEXT_PACKAGE).pot \ +DISTFILES = LINGUAS ChangeLog Makefile.in.in POTFILES.in POTFILES.skip $(GETTEXT_PACKAGE).pot \ $(POFILES) $(GMOFILES) $(SOURCES) POTFILES = \ |