Method: Yast::EncodingClass#main
- Defined in:
- library/general/src/modules/Encoding.rb
#main ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'library/general/src/modules/Encoding.rb', line 32 def main textdomain "base" Yast.import "Stage" # Current (ISO) encoding @console = "ISO-8859-1" @lang = "en_US" @utf8 = true @enc_map = { "euc-jp" => "932", "sjis" => "932", "gb2312" => "936", "iso8859-2" => "852", "big5" => "950", "euc-kr" => "949" } @lang_map = { "ja_JP" => "932", "zh_CN" => "936", "zh_TW" => "950", "zh_HK" => "950", "ko_KR" => "949" } Encoding() end |