mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix: Add missing call to 'bindtextdomain'.
* scripts/guix.in (config-lookup): Add "localedir" entry. (run-guix-main): Add call to 'bindtextdomain'. * guix/ui.scm (initialize-guix): Use %GETTEXT-DOMAIN instead of a literal.
This commit is contained in:
parent
f854a8c133
commit
39e9f95d05
2 changed files with 4 additions and 2 deletions
|
@ -123,7 +123,7 @@ (define (install-locale)
|
|||
(define (initialize-guix)
|
||||
"Perform the usual initialization for stand-alone Guix commands."
|
||||
(install-locale)
|
||||
(textdomain "guix")
|
||||
(textdomain %gettext-domain)
|
||||
|
||||
;; Ignore SIGPIPE. If the daemon closes the connection, we prefer to be
|
||||
;; notified via an EPIPE later.
|
||||
|
|
|
@ -31,7 +31,8 @@
|
|||
(define config-lookup
|
||||
(let ((config '(("prefix" . "@prefix@")
|
||||
("datarootdir" . "@datarootdir@")
|
||||
("guilemoduledir" . "@guilemoduledir@")))
|
||||
("guilemoduledir" . "@guilemoduledir@")
|
||||
("localedir" . "@localedir@")))
|
||||
(var-ref-regexp (make-regexp "\\$\\{([a-z]+)\\}")))
|
||||
(define (expand-var-ref match)
|
||||
(lookup (match:substring match 1)))
|
||||
|
@ -58,6 +59,7 @@
|
|||
(define (run-guix-main)
|
||||
(let ((guix-main (module-ref (resolve-interface '(guix ui))
|
||||
'guix-main)))
|
||||
(bindtextdomain "guix" (config-lookup "localedir"))
|
||||
(apply guix-main (command-line))))
|
||||
|
||||
(maybe-augment-load-paths!)
|
||||
|
|
Loading…
Reference in a new issue