diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-09-13 00:48:07 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-09-13 00:48:07 +0000 |
commit | 9b290a58ab4f97e8c7422d5f6055c294f2540e30 (patch) | |
tree | b7e5ab0b7e8e94d75725d22b3d28fd39535df869 | |
parent | 0c8103b1b4af956c687c64db20a3e532f2efbbe0 (diff) | |
download | bootsplash-9b290a58ab4f97e8c7422d5f6055c294f2540e30.tar bootsplash-9b290a58ab4f97e8c7422d5f6055c294f2540e30.tar.gz bootsplash-9b290a58ab4f97e8c7422d5f6055c294f2540e30.tar.bz2 bootsplash-9b290a58ab4f97e8c7422d5f6055c294f2540e30.tar.xz bootsplash-9b290a58ab4f97e8c7422d5f6055c294f2540e30.zip |
fixed font use to match what we provide in 10.1
-rw-r--r-- | scripts/splash.sh | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/scripts/splash.sh b/scripts/splash.sh index 2fb94cc..904cedf 100644 --- a/scripts/splash.sh +++ b/scripts/splash.sh @@ -114,23 +114,26 @@ if [ "$progress" == 1 -o "$1" == "start" ]; then case "${GP_LANG}${LANGUAGE}" in # languages written in latin that use letters not included in luxi az*|cy*|gn*|vi*) - font=/usr/share/fonts/otf/mdk/mdk_teams.otf ;; + font=/usr/share/fonts/default/Type1/n019023l.pfb ;; # basic cyrillic, covered by cp1251 be*|bg*|mk*|ru*|sr*|uk*) font=/usr/share/fonts/default/Type1/n019023l.pfb ;; # extended cyrillic, not covered by cp1251 ky*|mn*|tg*|uz*) - font=/usr/share/fonts/otf/mdk/mdk_teams.otf ;; + font=/usr/share/fonts/default/Type1/n019023l.pfb ;; # other scripts am*) font=/usr/share/fonts/ttf/ethiopic/gfzemenu.ttf ;; - ar*|fa*|ur*) font=/usr/share/fonts/ttf/arabic/Kacst-Qr.ttf ;; - as*|bn*) font=/usr/share/fonts/ttf/bengali/MuktiBold.ttf ;; + ber*) font=/usr/share/fonts/ttf/tifinagh/hapaxber.ttf ;; + ar*) font=/usr/share/fonts/ttf/arabic/Kacst-Qr.ttf ;; + fa*) font=/usr/share/fonts/ttf/arabic/farsi/roya.ttf ;; + ur*) font=/usr/share/fonts/ttf/arabic/farsi/nastaliq_unicode.ttf ;; + as*|bn*) font=/usr/share/fonts/ttf/bengali/MuktiNarrow.ttf ;; el*) font=/usr/share/fonts/type1/greek/Kerkis-Italic.pfb ;; he*|yi*) font=/usr/share/fonts/type1/hebrew/Nachlieli-Bold.pfa ;; # this font doesn't has ascii chars hi*|_mr*) font=/usr/share/fonts/otf/mdk/raghu.ttf ;; hy*) font=/usr/share/fonts/ttf/armenian/artsnk_b.ttf ;; - ja*) font=/usr/share/fonts/ttf/japanese/kochi-gothic.ttf ;; + ja*) font=/usr/share/fonts/ttf/japanese/sazanami-gothic.ttf ;; # this font doesn't has ascii chars _kn*) font=/usr/share/fonts/ttf/kannada/Sampige.ttf ;; ko*) font=/usr/share/fonts/ttf/korean/gulim.ttf ;; @@ -143,10 +146,10 @@ if [ "$progress" == 1 -o "$1" == "start" ]; then af*|br*|ca*|da*|de*|es*|et*|eu*|fi*|fr*|fur*|ga*|gl*|id*|is*|it*|li*) font=default ;; # languages supported by the default font; latin1, more - ms*|nb*|nds*|nl*|nn*|no*|oc*|ph*|pt*|sv*|tl*|wa*) + ms*|nb*|nds*|nl*|nn*|no*|oc*|ph*|pt*|sc*|sv*|tl*|wa*) font=default ;; # languages supported by the default font; latin2 - bs*|cs*|hr*|hu*|pl*|ro*|sk*|sl*|sq*) + bs*|cs*|hr*|hu*|pl*|ro*|sk*|sl*|sq*|tk*) font=default ;; # languages supported by the default font; other latin coverages eo*|ku*|lt*|lv*|mt*|tr*) |