console: Load right console font for Turkish language.

This commit is contained in:
Michael Tremer
2013-05-21 21:21:21 +02:00
parent 49dd4438fd
commit 4987c2b7fe
2 changed files with 16 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
etc/system-release
etc/issue
etc/rc.d/init.d/console
var/ipfire/langs/list
var/ipfire/langs/tr.pl

View File

@@ -21,19 +21,21 @@ eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
FONT="lat0-16"
KEYMAP_CORRECTIONS="euro2"
if [ "$LANGUAGE" == "de" ]; then
LEGACY_CHARSET="iso-8859-15"
#FONT="LatArCyrHeb-16 -m 8859-15"
FONT="lat0-16 -m 8859-15"
fi
if [ "$LANGUAGE" == "pl" ]; then
FONT="lat2-16"
fi
if [ "$LANGUAGE" == "ru" ]; then
FONT="LatArCyrHeb-16"
fi
case "${LANGUAGE}" in
# German
de)
LEGACY_CHARSET="iso-8859-15"
FONT="lat0-16 -m 8859-15"
;;
# Polish
pl)
FONT="lat2-16"
;;
# Russish/Turkish
ru|tr)
FONT="LatArCyrHeb-16"
;;
esac
UNICODE="1"
BROKEN_COMPOSE="0"