mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
installer: Call setlocale after init gettext.
* gnu/installer.scm (installer-program)[init-gettext]: Change locale from C, installed at the program start.
This commit is contained in:
parent
cfe9c7eceb
commit
d76b668cd6
1 changed files with 2 additions and 1 deletions
|
@ -308,7 +308,8 @@ (define init-gettext
|
||||||
;; translated.
|
;; translated.
|
||||||
#~(begin
|
#~(begin
|
||||||
(bindtextdomain "guix" (string-append #$guix "/share/locale"))
|
(bindtextdomain "guix" (string-append #$guix "/share/locale"))
|
||||||
(textdomain "guix")))
|
(textdomain "guix")
|
||||||
|
(setlocale LC_ALL "")))
|
||||||
|
|
||||||
(define set-installer-path
|
(define set-installer-path
|
||||||
;; Add the specified binary to PATH for later use by the installer.
|
;; Add the specified binary to PATH for later use by the installer.
|
||||||
|
|
Loading…
Reference in a new issue