1207753Smm# Makefile variables for PO directory in any package using GNU gettext.
2207753Smm
3207753Smm# Usually the message domain is the same as the package name.
4207753SmmDOMAIN = $(PACKAGE)
5207753Smm
6207753Smm# These two variables depend on the location of this directory.
7207753Smmsubdir = po
8207753Smmtop_builddir = ..
9207753Smm
10207753Smm# These options get passed to xgettext.
11207753SmmXGETTEXT_OPTIONS = --keyword=_ --keyword=N_
12207753Smm
13207753Smm# This is the copyright holder that gets inserted into the header of the
14207753Smm# $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding
15207753Smm# package.  (Note that the msgstr strings, extracted from the package's
16207753Smm# sources, belong to the copyright holder of the package.)  Translators are
17207753Smm# expected to transfer the copyright for their translations to this person
18207753Smm# or entity, or to disclaim their copyright.  The empty string stands for
19207753Smm# the public domain; in this case the translators are expected to disclaim
20207753Smm# their copyright.
21207753SmmCOPYRIGHT_HOLDER =
22207753Smm
23207753Smm# This is the email address or URL to which the translators shall report
24207753Smm# bugs in the untranslated strings:
25207753Smm# - Strings which are not entire sentences, see the maintainer guidelines
26207753Smm#   in the GNU gettext documentation, section 'Preparing Strings'.
27207753Smm# - Strings which use unclear terms or require additional context to be
28207753Smm#   understood.
29207753Smm# - Strings which make invalid assumptions about notation of date, time or
30207753Smm#   money.
31207753Smm# - Pluralisation problems.
32207753Smm# - Incorrect English spelling.
33207753Smm# - Incorrect formatting.
34207753Smm# It can be your email address, or a mailing list address where translators
35207753Smm# can write to without being subscribed, or the URL of a web page through
36207753Smm# which the translators can contact you.
37207753SmmMSGID_BUGS_ADDRESS =
38207753Smm
39207753Smm# This is the list of locale categories, beyond LC_MESSAGES, for which the
40207753Smm# message catalogs shall be used.  It is usually empty.
41207753SmmEXTRA_LOCALE_CATEGORIES =
42207753Smm
43207753Smm# Although you may need slightly wider terminal than 80 chars, it is
44207753Smm# much nicer to edit the output of --help when this is set.
45207753SmmXGETTEXT_OPTIONS += --no-wrap
46207753SmmMSGMERGE += --no-wrap
47