diff options
author | Julien Lepiller <julien@lepiller.eu> | 2020-09-29 15:32:38 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2020-09-29 15:33:20 +0200 |
commit | c69156fc89ac46b7bebfb35e6ad205ed1b2e6df6 (patch) | |
tree | b01c92c662c30107ef4b358cbd39f129e4e082d8 /po | |
parent | e75443d4f28ff1aa97e545f2b47b311c3a5ac32a (diff) | |
download | guix-c69156fc89ac46b7bebfb35e6ad205ed1b2e6df6.tar.gz |
nls: Fix documentation pot generation.
* po/doc/local.mk: Fix POT_OPTIONS to properly assign copyright and define the proper license.
Diffstat (limited to 'po')
-rw-r--r-- | po/doc/local.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/po/doc/local.mk b/po/doc/local.mk index 4f3ad0a37e..751ea5a45f 100644 --- a/po/doc/local.mk +++ b/po/doc/local.mk @@ -32,9 +32,9 @@ EXTRA_DIST = \ $(DOC_PO_FILES) \ $(DOC_COOKBOOK_PO_FILES) -POT_OPTIONS = --package-name "guix" --package-version "$(VERSION)" \ - --copyright-holder "Ludovic Courtès" \ - --msgid-bugs-address "ludo@gnu.org" +POT_OPTIONS = --package-name "guix manual" --package-version "$(VERSION)" \ + --copyright-holder "the authors of Guix (msgids)" \ + --msgid-bugs-address "bug-guix@gnu.org" doc-po-update-%: @lang=`echo "$@" | sed -e's/^doc-po-update-//'` ; \ |