gnu: icedove: Use the locale of the system.

* gnu/packages/gnuzilla.scm (icedove-source): Set the intl.locale.requested
option to the empty string.
This commit is contained in:
Maxim Cournoyer 2023-02-13 14:39:35 -05:00
parent acf7d01fc3
commit 74a5634ad8
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1281,7 +1281,12 @@ (define icedove-source
;; system global application directory, such as the language ;; system global application directory, such as the language
;; packs. ;; packs.
(("\"extensions.autoDisableScopes\", 15") (("\"extensions.autoDisableScopes\", 15")
"\"extensions.autoDisableScopes\", 3")) "\"extensions.autoDisableScopes\", 3")
;; Set the default locale to that of the operating system.
((".*extensions.autoDisableScopes.*" anchor)
(string-append anchor
"pref(\"intl.locale.requested\", \"\");\n")))
;; Step out of the directory and create the tarball. ;; Step out of the directory and create the tarball.
(chdir "..") (chdir "..")