summaryrefslogtreecommitdiff
path: root/gnu/installer
diff options
context:
space:
mode:
authorFlorian Pelz <pelzflorian@pelzflorian.de>2025-10-22 10:43:02 +0200
committerFlorian Pelz <pelzflorian@pelzflorian.de>2025-10-22 10:43:48 +0200
commita68571005808649aaa165c5f577cc695760dbca0 (patch)
treebee43d7f40a97d019307a0d6708ba00e6aa7c8c7 /gnu/installer
parent1839efad14fe26fc68c51d3f42ccd56d4b172dba (diff)
installer: Do not use LatGrkCyr console font for Esperanto.
* gnu/installer/services.scm (system-services->configuration): Don't match `eo'. Change-Id: I46ba7dd737141c25ce9a9fcf164ae431e2ed4b33
Diffstat (limited to 'gnu/installer')
-rw-r--r--gnu/installer/services.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm
index 1ef82c96510..3e47caf4c27 100644
--- a/gnu/installer/services.scm
+++ b/gnu/installer/services.scm
@@ -197,7 +197,9 @@
197 '%base-services))) 197 '%base-services)))
198 (native-console-font (match (false-if-exception 198 (native-console-font (match (false-if-exception
199 (string-take (getenv "LANGUAGE") 2)) 199 (string-take (getenv "LANGUAGE") 2))
200 ((or "be" "bg" "el" "eo" "kk" "ky" 200 ((or "el" ;easier with more complete Greek font
201 ;; These need Cyrillic:
202 "be" "bg" "kk" "ky"
201 "mk" "mn" "ru" "sr" "tg" "uk") 203 "mk" "mn" "ru" "sr" "tg" "uk")
202 "LatGrkCyr-8x16") 204 "LatGrkCyr-8x16")
203 (_ #f))) 205 (_ #f)))