Blame po/Makevars

Packit fc043f
# Makefile variables for PO directory in any package using GNU gettext.
Packit fc043f
Packit fc043f
# Usually the message domain is the same as the package name.
Packit fc043f
DOMAIN = $(PACKAGE)
Packit fc043f
Packit fc043f
# These two variables depend on the location of this directory.
Packit fc043f
subdir = po
Packit fc043f
top_builddir = ..
Packit fc043f
Packit fc043f
# These options get passed to xgettext.
Packit fc043f
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
Packit fc043f
Packit fc043f
# This is the copyright holder that gets inserted into the header of the
Packit fc043f
# $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding
Packit fc043f
# package.  (Note that the msgstr strings, extracted from the package's
Packit fc043f
# sources, belong to the copyright holder of the package.)  Translators are
Packit fc043f
# expected to transfer the copyright for their translations to this person
Packit fc043f
# or entity, or to disclaim their copyright.  The empty string stands for
Packit fc043f
# the public domain; in this case the translators are expected to disclaim
Packit fc043f
# their copyright.
Packit fc043f
COPYRIGHT_HOLDER = g10 Code GmbH
Packit fc043f
Packit fc043f
# This tells whether or not to prepend "GNU " prefix to the package
Packit fc043f
# name that gets inserted into the header of the $(DOMAIN).pot file.
Packit fc043f
# Possible values are "yes", "no", or empty.  If it is empty, try to
Packit fc043f
# detect it automatically by scanning the files in $(top_srcdir) for
Packit fc043f
# "GNU packagename" string.
Packit fc043f
PACKAGE_GNU = no
Packit fc043f
Packit fc043f
# This is the email address or URL to which the translators shall report
Packit fc043f
# bugs in the untranslated strings:
Packit fc043f
# - Strings which are not entire sentences, see the maintainer guidelines
Packit fc043f
#   in the GNU gettext documentation, section 'Preparing Strings'.
Packit fc043f
# - Strings which use unclear terms or require additional context to be
Packit fc043f
#   understood.
Packit fc043f
# - Strings which make invalid assumptions about notation of date, time or
Packit fc043f
#   money.
Packit fc043f
# - Pluralisation problems.
Packit fc043f
# - Incorrect English spelling.
Packit fc043f
# - Incorrect formatting.
Packit fc043f
# It can be your email address, or a mailing list address where translators
Packit fc043f
# can write to without being subscribed, or the URL of a web page through
Packit fc043f
# which the translators can contact you.
Packit fc043f
MSGID_BUGS_ADDRESS = translations@gnupg.org
Packit fc043f
Packit fc043f
Packit fc043f
# This is the list of locale categories, beyond LC_MESSAGES, for which the
Packit fc043f
# message catalogs shall be used.  It is usually empty.
Packit fc043f
EXTRA_LOCALE_CATEGORIES =
Packit fc043f
Packit fc043f
# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
Packit fc043f
# context.  Possible values are "yes" and "no".  Set this to yes if the
Packit fc043f
# package uses functions taking also a message context, like pgettext(), or
Packit fc043f
# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
Packit fc043f
USE_MSGCTXT = no
Packit fc043f
Packit fc043f
# These options get passed to msgmerge.
Packit fc043f
# Useful options are in particular:
Packit fc043f
#   --previous            to keep previous msgids of translated messages,
Packit fc043f
#   --quiet               to reduce the verbosity.
Packit fc043f
MSGMERGE_OPTIONS = --previous
Packit fc043f
Packit fc043f
# These options get passed to msginit.
Packit fc043f
# If you want to disable line wrapping when writing PO files, add
Packit fc043f
# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and
Packit fc043f
# MSGINIT_OPTIONS.
Packit fc043f
MSGINIT_OPTIONS =
Packit fc043f
Packit fc043f
# This tells whether or not to regenerate a PO file when $(DOMAIN).pot
Packit fc043f
# has changed.  Possible values are "yes" and "no".  Set this to no if
Packit fc043f
# the POT file is checked in the repository and the version control
Packit fc043f
# program ignores timestamps.
Packit fc043f
PO_DEPENDS_ON_POT = yes
Packit fc043f
Packit fc043f
# This tells whether or not to forcibly update $(DOMAIN).pot and
Packit fc043f
# regenerate PO files on "make dist".  Possible values are "yes" and
Packit fc043f
# "no".  Set this to no if the POT file and PO files are maintained
Packit fc043f
# externally.
Packit fc043f
DIST_DEPENDS_ON_UPDATE_PO = yes