diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2003-01-23 22:14:55 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2003-01-23 22:14:55 +0000 |
commit | 83e1152dfea7d8942f9ddd5ff54348ca0334213b (patch) | |
tree | ebdea726c363d2bb737ded0a743e7002ab7c4cd9 /perl-install/lang.pm | |
parent | e5a6233c07149ded32706bbd5dfc2af1def9206c (diff) | |
download | drakx-83e1152dfea7d8942f9ddd5ff54348ca0334213b.tar drakx-83e1152dfea7d8942f9ddd5ff54348ca0334213b.tar.gz drakx-83e1152dfea7d8942f9ddd5ff54348ca0334213b.tar.bz2 drakx-83e1152dfea7d8942f9ddd5ff54348ca0334213b.tar.xz drakx-83e1152dfea7d8942f9ddd5ff54348ca0334213b.zip |
fixed some (locally used) charset names
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 52a6fd826..860544481 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -325,7 +325,7 @@ my %charsets = ( "tis-620", "874", std2("tis620.2533-1",12) ], #- "tcvn" => [ "tcvn8x16", undef, "tcvn", #- undef, undef, std2("tcvn-5712", 13), std2("tcvn-5712", 10) ], - "tcvn" => [ "tcvn8x16", undef, "viscii", + "tcvn" => [ "tcvn8x16", undef, "tcvn", undef, undef, std2("tcvn-5712", 13), std2("tcvn-5712", 10) ], #- Tamil uses pseudo iso-8859-1 fonts "tscii" => [ "tamil", undef, "tscii-0", @@ -522,14 +522,14 @@ my %charset2kde_font = ( 'gb2312' => [ "default-ming,16" ], 'Big5' => [ "taipei-fixed,16" ], 'tis620' => [ "misc-norasi,17", ], - 'utf_vi' => [ "misc-fixed,13", "misc-fixed,13", "misc-fixed,10", ], + 'tcvn' => [ "misc-fixed,13", "misc-fixed,13", "misc-fixed,10", ], #- TSCII uses pseudo iso-8859-1 fonts, it is important to choose them #- correctly 'tscii' => [ "tsc_avarangal,14", "tsc_avarangalfxd,10", "tsc_avarangal,12", ], #- the following should be changed to better defaults when better fonts #- get available - 'utf_hy' => [ "clearlyu,17" ], - 'utf_ka' => [ "clearlyu,17" ], + 'armscii-8' => [ "clearlyu,17" ], + 'georgian-ps' => [ "clearlyu,17" ], 'utf_am' => [ "clearlyu,17" ], 'default' => [ "misc-fixed,13", "misc-fixed,13", "misc-fixed,10", ], ); @@ -552,9 +552,9 @@ sub charset2kde_font { my %charset2pango_font = ( 'tis620' => "Norasi", 'tscii' => "TSC_Avarangal", - 'utf_vi' => "ClearlyU", - 'utf_hy' => "Artsounk", - 'utf_ka' => "ClearlyU", + 'tcvn' => "ClearlyU", + 'armscii-8' => "Artsounk", + 'georgian-ps' =>"ClearlyU", 'iso-8859-6' => "ClearlyU", 'iso-8859-7' => "Kerkis", 'iso-8859-8' => "KacstBook", |