system: Add "en_US.UTF-8" to the default locales, for backward compatibility.
* gnu/system/locale.scm (%default-locale-definitions): Add "en_US.UTF-8".
This commit is contained in:
parent
8f4b1dfb77
commit
24004073f0
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -89,6 +89,11 @@
|
|||
(utf8-locales (syntax-rules ()
|
||||
((_ name ...)
|
||||
(list (utf8-locale name) ...)))))
|
||||
;; Add "en_US.UTF-8" for compatibility with Guix 0.8.
|
||||
(cons (locale-definition
|
||||
(name "en_US.UTF-8")
|
||||
(source "en_US")
|
||||
(charset "UTF-8"))
|
||||
(utf8-locales "ca_ES"
|
||||
"cs_CZ"
|
||||
"da_DK"
|
||||
|
@ -121,6 +126,6 @@
|
|||
"tr_TR"
|
||||
"uk_UA"
|
||||
"vi_VN"
|
||||
"zh_CN")))
|
||||
"zh_CN"))))
|
||||
|
||||
;;; locale.scm ends here
|
||||
|
|
Loading…
Reference in New Issue