aboutsummaryrefslogtreecommitdiff
path: root/po/Makevars.template
diff options
context:
space:
mode:
Diffstat (limited to 'po/Makevars.template')
-rw-r--r--po/Makevars.template41
1 files changed, 41 insertions, 0 deletions
diff --git a/po/Makevars.template b/po/Makevars.template
index 32692ab..86a11f1 100644
--- a/po/Makevars.template
+++ b/po/Makevars.template
@@ -1,4 +1,8 @@
1# Makefile variables for PO directory in any package using GNU gettext. 1# Makefile variables for PO directory in any package using GNU gettext.
2#
3# Copyright (C) 2003-2019 Free Software Foundation, Inc.
4# This file is free software; the Free Software Foundation gives
5# unlimited permission to use, copy, distribute, and modify it.
2 6
3# Usually the message domain is the same as the package name. 7# Usually the message domain is the same as the package name.
4DOMAIN = $(PACKAGE) 8DOMAIN = $(PACKAGE)
@@ -20,6 +24,13 @@ XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
20# their copyright. 24# their copyright.
21COPYRIGHT_HOLDER = Free Software Foundation, Inc. 25COPYRIGHT_HOLDER = Free Software Foundation, Inc.
22 26
27# This tells whether or not to prepend "GNU " prefix to the package
28# name that gets inserted into the header of the $(DOMAIN).pot file.
29# Possible values are "yes", "no", or empty. If it is empty, try to
30# detect it automatically by scanning the files in $(top_srcdir) for
31# "GNU packagename" string.
32PACKAGE_GNU =
33
23# This is the email address or URL to which the translators shall report 34# This is the email address or URL to which the translators shall report
24# bugs in the untranslated strings: 35# bugs in the untranslated strings:
25# - Strings which are not entire sentences, see the maintainer guidelines 36# - Strings which are not entire sentences, see the maintainer guidelines
@@ -39,3 +50,33 @@ MSGID_BUGS_ADDRESS =
39# This is the list of locale categories, beyond LC_MESSAGES, for which the 50# This is the list of locale categories, beyond LC_MESSAGES, for which the
40# message catalogs shall be used. It is usually empty. 51# message catalogs shall be used. It is usually empty.
41EXTRA_LOCALE_CATEGORIES = 52EXTRA_LOCALE_CATEGORIES =
53
54# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
55# context. Possible values are "yes" and "no". Set this to yes if the
56# package uses functions taking also a message context, like pgettext(), or
57# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
58USE_MSGCTXT = no
59
60# These options get passed to msgmerge.
61# Useful options are in particular:
62# --previous to keep previous msgids of translated messages,
63# --quiet to reduce the verbosity.
64MSGMERGE_OPTIONS =
65
66# These options get passed to msginit.
67# If you want to disable line wrapping when writing PO files, add
68# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and
69# MSGINIT_OPTIONS.
70MSGINIT_OPTIONS =
71
72# This tells whether or not to regenerate a PO file when $(DOMAIN).pot
73# has changed. Possible values are "yes" and "no". Set this to no if
74# the POT file is checked in the repository and the version control
75# program ignores timestamps.
76PO_DEPENDS_ON_POT = yes
77
78# This tells whether or not to forcibly update $(DOMAIN).pot and
79# regenerate PO files on "make dist". Possible values are "yes" and
80# "no". Set this to no if the POT file and PO files are maintained
81# externally.
82DIST_DEPENDS_ON_UPDATE_PO = yes