diff options
author | pelzflorian (Florian Pelz) <pelzflorian@pelzflorian.de> | 2022-11-19 23:49:37 +0100 |
---|---|---|
committer | Florian Pelz <pelzflorian@pelzflorian.de> | 2022-11-20 16:01:08 +0100 |
commit | da6c6763fa72585a1df3021781f8d33c3b64dcc8 (patch) | |
tree | 31145788ee58e797260048e86f24f29cd03638ed /guix/scripts/home.scm | |
parent | 44f087fcc7b6ab48ff1381651ef3ea5e560f5216 (diff) |
scripts: Use translations for guix.pot for service descriptions.
Previously, service descriptions appeared in both guix.pot and
packages.pot, but only translations of packages.pot were used.
Now, translations are only done with guix.pot.
This is better, because translators are more likely to translate
guix.pot, and is also easier, because files in gnu/{home/,}services
need to be in po/guix/POTFILES.in anyway and po/guix/Makevars
already acts on the 'description' keyword because of lint checkers.
* guix/scripts/home.scm (service-type-description-string):
Use translations from guix.pot.
* guix/scripts/system/search.scm (service-type-description-string)
(service-type->recutils): Likewise.
* po/packages/POTFILES.in: Move files in gnu/services to ...
* po/guix/POTFILES.in: ... here.
Diffstat (limited to 'guix/scripts/home.scm')
-rw-r--r-- | guix/scripts/home.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/home.scm b/guix/scripts/home.scm index 754001a5b8..1c481ccf91 100644 --- a/guix/scripts/home.scm +++ b/guix/scripts/home.scm @@ -705,7 +705,7 @@ deploy the home environment described by these files.\n") (define (service-type-description-string type) "Return the rendered and localised description of TYPE, a service type." (and=> (service-type-description type) - (compose texi->plain-text P_))) + (compose texi->plain-text G_))) (define %service-type-metrics ;; Metrics used to estimate the relevance of a search result. |