1
1
# Makefile variables for PO directory in any package using GNU gettext.
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.
7
3
# Usually the message domain is the same as the package name.
25
21
COPYRIGHT_HOLDER = Free Software Foundation, Inc.
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.
34
23
# This is the email address or URL to which the translators shall report
35
24
# bugs in the untranslated strings:
36
25
# - Strings which are not entire sentences, see the maintainer guidelines
50
39
# This is the list of locale categories, beyond LC_MESSAGES, for which the
51
40
# message catalogs shall be used. It is usually empty.
52
41
EXTRA_LOCALE_CATEGORIES =
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.
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.
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
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.
76
PO_DEPENDS_ON_POT = yes
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
82
DIST_DEPENDS_ON_UPDATE_PO = yes