]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blobdiff - src/initscripts/init.d/console
Unsere Konsole ist jetzt UTF8-Fit.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / console
index cbf3aaf68b4b7c6a5a3316210f856684633c765d..cb61a405ff03963723ad7598976ccd4b61a6e7f6 100644 (file)
 . ${rc_functions}
 eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
 
-FONT="lat0-16"
-KEYMAP_CORRECTIONS="euro2"
+if [ "$LANGUAGE" == "de" ]; then
+       #KEYMAP="de-latin1"
+       KEYMAP_CORRECTIONS="euro2"
+       LEGACY_CHARSET="iso-8859-15"
+       #FONT="LatArCyrHeb-16 -m 8859-15"
+       FONT="lat0-16 -m 8859-15"
+else
+       # English
+       FONT="lat0-16"
+       KEYMAP_CORRECTIONS="euro2"
+fi
+
+UNICODE="1"
+BROKEN_COMPOSE="0"
 
 is_true() {
        [ "$1" = "1" ] || [ "$1" = "yes" ] || [ "$1" = "true" ]