diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-10-12 16:37:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-10-12 22:29:31 +0200 |
commit | 39e9f95d059e61a735a52f866d4c175906826744 (patch) | |
tree | e5cdaafd729f9be9fabca2e71c70a7ae034b1f51 /guix | |
parent | f854a8c13341f0f5079380c3f8fa570cbb0d2636 (diff) | |
download | gnu-guix-39e9f95d059e61a735a52f866d4c175906826744.tar gnu-guix-39e9f95d059e61a735a52f866d4c175906826744.tar.gz |
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.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 4415997252..7f8ed970d4 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -123,7 +123,7 @@ messages." (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. |