summaryrefslogtreecommitdiffstats
path: root/core/modules/german
diff options
context:
space:
mode:
authorSimon Rettberg2023-08-02 15:18:50 +0200
committerSimon Rettberg2023-08-02 15:18:50 +0200
commit1393db81317b2108ef42c3898d242da415950218 (patch)
tree58eb1c58e1279eab48c2b04f48b09ec719640dff /core/modules/german
parent[system-tweaks] Move a few more specific things to bwlp-stage4-tweaks (diff)
downloadmltk-1393db81317b2108ef42c3898d242da415950218.tar.gz
mltk-1393db81317b2108ef42c3898d242da415950218.tar.xz
mltk-1393db81317b2108ef42c3898d242da415950218.zip
[german] Add new LANGUAGE env var
Diffstat (limited to 'core/modules/german')
-rw-r--r--core/modules/german/module.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modules/german/module.build b/core/modules/german/module.build
index 19a72022..8d7be14f 100644
--- a/core/modules/german/module.build
+++ b/core/modules/german/module.build
@@ -39,7 +39,8 @@ build() {
post_copy() {
for i in LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION; do
- add_env $i de_DE.UTF-8 || perror "$i: add_env function failed."
+ add_env "$i" "de_DE.UTF-8" || perror "$i: add_env function failed."
done
+ add_env "LANGUAGE" "de_DE:de"
}