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