Blame po/Makevars

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