diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2015-01-16 15:40:10 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2015-01-16 21:11:55 +0100 |
| commit | 24004073f06ed0e79c39c5deed9f859e0fb7971e (patch) | |
| tree | bd20699b484312c188dcbc508df7110da7d111e0 /gnu | |
| parent | 8f4b1dfb77f01ee97263ea4d0dfd3c715ded527c (diff) | |
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".
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/system/locale.scm | 73 |
1 files changed, 39 insertions, 34 deletions
diff --git a/gnu/system/locale.scm b/gnu/system/locale.scm index 17b1dead58a..be9abcb81dc 100644 --- a/gnu/system/locale.scm +++ b/gnu/system/locale.scm | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> | 2 | ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> |
| 3 | ;;; | 3 | ;;; |
| 4 | ;;; This file is part of GNU Guix. | 4 | ;;; This file is part of GNU Guix. |
| 5 | ;;; | 5 | ;;; |
| @@ -89,38 +89,43 @@ | |||
| 89 | (utf8-locales (syntax-rules () | 89 | (utf8-locales (syntax-rules () |
| 90 | ((_ name ...) | 90 | ((_ name ...) |
| 91 | (list (utf8-locale name) ...))))) | 91 | (list (utf8-locale name) ...))))) |
| 92 | (utf8-locales "ca_ES" | 92 | ;; Add "en_US.UTF-8" for compatibility with Guix 0.8. |
| 93 | "cs_CZ" | 93 | (cons (locale-definition |
| 94 | "da_DK" | 94 | (name "en_US.UTF-8") |
| 95 | "de_DE" | 95 | (source "en_US") |
| 96 | "el_GR" | 96 | (charset "UTF-8")) |
| 97 | "en_AU" | 97 | (utf8-locales "ca_ES" |
| 98 | "en_CA" | 98 | "cs_CZ" |
| 99 | "en_GB" | 99 | "da_DK" |
| 100 | "en_US" | 100 | "de_DE" |
| 101 | "es_AR" | 101 | "el_GR" |
| 102 | "es_CL" | 102 | "en_AU" |
| 103 | "es_ES" | 103 | "en_CA" |
| 104 | "es_MX" | 104 | "en_GB" |
| 105 | "fi_FI" | 105 | "en_US" |
| 106 | "fr_BE" | 106 | "es_AR" |
| 107 | "fr_CA" | 107 | "es_CL" |
| 108 | "fr_CH" | 108 | "es_ES" |
| 109 | "fr_FR" | 109 | "es_MX" |
| 110 | "ga_IE" | 110 | "fi_FI" |
| 111 | "it_IT" | 111 | "fr_BE" |
| 112 | "ja_JP" | 112 | "fr_CA" |
| 113 | "ko_KR" | 113 | "fr_CH" |
| 114 | "nb_NO" | 114 | "fr_FR" |
| 115 | "nl_NL" | 115 | "ga_IE" |
| 116 | "pl_PL" | 116 | "it_IT" |
| 117 | "pt_PT" | 117 | "ja_JP" |
| 118 | "ro_RO" | 118 | "ko_KR" |
| 119 | "ru_RU" | 119 | "nb_NO" |
| 120 | "sv_SE" | 120 | "nl_NL" |
| 121 | "tr_TR" | 121 | "pl_PL" |
| 122 | "uk_UA" | 122 | "pt_PT" |
| 123 | "vi_VN" | 123 | "ro_RO" |
| 124 | "zh_CN"))) | 124 | "ru_RU" |
| 125 | "sv_SE" | ||
| 126 | "tr_TR" | ||
| 127 | "uk_UA" | ||
| 128 | "vi_VN" | ||
| 129 | "zh_CN")))) | ||
| 125 | 130 | ||
| 126 | ;;; locale.scm ends here | 131 | ;;; locale.scm ends here |
