diff options
author | Daiki Ueno <ueno@gnu.org> | 2014-06-02 17:20:04 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2014-06-02 17:20:04 +0900 |
commit | 2899ed4475842a39b93a295628d6c2936074c777 (patch) | |
tree | c686206e32a6c0e01440f167dbec2ec8bb19343f /gettext-tools/po | |
parent | ae7df91c4fe363c85be7d7de8a72d13617b6b28b (diff) | |
download | external_gettext-2899ed4475842a39b93a295628d6c2936074c777.zip external_gettext-2899ed4475842a39b93a295628d6c2936074c777.tar.gz external_gettext-2899ed4475842a39b93a295628d6c2936074c777.tar.bz2 |
po: Sync gettext-tools/po/Makevars with gettext-runtime/po/Makevars
* Makevars (PACKAGE_GNU, PO_DEPENDS_ON_POT)
(DIST_DEPENDS_ON_UPDATE_PO): New variables.
* Makevars.template (PACKAGE_GNU, PO_DEPENDS_ON_POT)
(DIST_DEPENDS_ON_UPDATE_PO): New variables.
Diffstat (limited to 'gettext-tools/po')
-rw-r--r-- | gettext-tools/po/ChangeLog | 8 | ||||
-rw-r--r-- | gettext-tools/po/Makevars | 19 | ||||
-rw-r--r-- | gettext-tools/po/Makevars.template | 19 |
3 files changed, 46 insertions, 0 deletions
diff --git a/gettext-tools/po/ChangeLog b/gettext-tools/po/ChangeLog index ce0ca1f..89913e8 100644 --- a/gettext-tools/po/ChangeLog +++ b/gettext-tools/po/ChangeLog @@ -1,5 +1,13 @@ 2014-06-02 Daiki Ueno <ueno@gnu.org> + po: Sync gettext-tools/po/Makevars with gettext-runtime/po/Makevars + * Makevars (PACKAGE_GNU, PO_DEPENDS_ON_POT) + (DIST_DEPENDS_ON_UPDATE_PO): New variables. + * Makevars.template (PACKAGE_GNU, PO_DEPENDS_ON_POT) + (DIST_DEPENDS_ON_UPDATE_PO): New variables. + +2014-06-02 Daiki Ueno <ueno@gnu.org> + * gettext 0.19 released. 2014-04-21 Daiki Ueno <ueno@gnu.org> diff --git a/gettext-tools/po/Makevars b/gettext-tools/po/Makevars index 9b80fa6..8535f18 100644 --- a/gettext-tools/po/Makevars +++ b/gettext-tools/po/Makevars @@ -27,6 +27,13 @@ XGETTEXT_OPTIONS = \ # their copyright. COPYRIGHT_HOLDER = Free Software Foundation, Inc. +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = + # 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 @@ -58,3 +65,15 @@ USE_MSGCTXT = no # --previous to keep previous msgids of translated messages, # --quiet to reduce the verbosity. MSGMERGE_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/gettext-tools/po/Makevars.template b/gettext-tools/po/Makevars.template index 4a9ff7d..fd76ad6 100644 --- a/gettext-tools/po/Makevars.template +++ b/gettext-tools/po/Makevars.template @@ -20,6 +20,13 @@ XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # their copyright. COPYRIGHT_HOLDER = Free Software Foundation, Inc. +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = + # 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 @@ -51,3 +58,15 @@ USE_MSGCTXT = no # --previous to keep previous msgids of translated messages, # --quiet to reduce the verbosity. MSGMERGE_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes |