1*a8fa202aSchristos#! /bin/sh 2*a8fa202aSchristos# Output a system dependent table of character encoding aliases. 3*a8fa202aSchristos# 4*a8fa202aSchristos# Copyright (C) 2000-2002 Free Software Foundation, Inc. 5*a8fa202aSchristos# 6*a8fa202aSchristos# This program is free software; you can redistribute it and/or modify it 7*a8fa202aSchristos# under the terms of the GNU Library General Public License as published 8*a8fa202aSchristos# by the Free Software Foundation; either version 2, or (at your option) 9*a8fa202aSchristos# any later version. 10*a8fa202aSchristos# 11*a8fa202aSchristos# This program is distributed in the hope that it will be useful, 12*a8fa202aSchristos# but WITHOUT ANY WARRANTY; without even the implied warranty of 13*a8fa202aSchristos# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14*a8fa202aSchristos# Library General Public License for more details. 15*a8fa202aSchristos# 16*a8fa202aSchristos# You should have received a copy of the GNU Library General Public 17*a8fa202aSchristos# License along with this program; if not, write to the Free Software 18*a8fa202aSchristos# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 19*a8fa202aSchristos# USA. 20*a8fa202aSchristos# 21*a8fa202aSchristos# The table consists of lines of the form 22*a8fa202aSchristos# ALIAS CANONICAL 23*a8fa202aSchristos# 24*a8fa202aSchristos# ALIAS is the (system dependent) result of "nl_langinfo (CODESET)". 25*a8fa202aSchristos# ALIAS is compared in a case sensitive way. 26*a8fa202aSchristos# 27*a8fa202aSchristos# CANONICAL is the GNU canonical name for this character encoding. 28*a8fa202aSchristos# It must be an encoding supported by libiconv. Support by GNU libc is 29*a8fa202aSchristos# also desirable. CANONICAL is case insensitive. Usually an upper case 30*a8fa202aSchristos# MIME charset name is preferred. 31*a8fa202aSchristos# The current list of GNU canonical charset names is as follows. 32*a8fa202aSchristos# 33*a8fa202aSchristos# name used by which systems a MIME name? 34*a8fa202aSchristos# ASCII, ANSI_X3.4-1968 glibc solaris freebsd 35*a8fa202aSchristos# ISO-8859-1 glibc aix hpux irix osf solaris freebsd yes 36*a8fa202aSchristos# ISO-8859-2 glibc aix hpux irix osf solaris freebsd yes 37*a8fa202aSchristos# ISO-8859-3 glibc yes 38*a8fa202aSchristos# ISO-8859-4 osf solaris freebsd yes 39*a8fa202aSchristos# ISO-8859-5 glibc aix hpux irix osf solaris freebsd yes 40*a8fa202aSchristos# ISO-8859-6 glibc aix hpux solaris yes 41*a8fa202aSchristos# ISO-8859-7 glibc aix hpux irix osf solaris yes 42*a8fa202aSchristos# ISO-8859-8 glibc aix hpux osf solaris yes 43*a8fa202aSchristos# ISO-8859-9 glibc aix hpux irix osf solaris yes 44*a8fa202aSchristos# ISO-8859-13 glibc 45*a8fa202aSchristos# ISO-8859-15 glibc aix osf solaris freebsd 46*a8fa202aSchristos# KOI8-R glibc solaris freebsd yes 47*a8fa202aSchristos# KOI8-U glibc freebsd yes 48*a8fa202aSchristos# CP437 dos 49*a8fa202aSchristos# CP775 dos 50*a8fa202aSchristos# CP850 aix osf dos 51*a8fa202aSchristos# CP852 dos 52*a8fa202aSchristos# CP855 dos 53*a8fa202aSchristos# CP856 aix 54*a8fa202aSchristos# CP857 dos 55*a8fa202aSchristos# CP861 dos 56*a8fa202aSchristos# CP862 dos 57*a8fa202aSchristos# CP864 dos 58*a8fa202aSchristos# CP865 dos 59*a8fa202aSchristos# CP866 freebsd dos 60*a8fa202aSchristos# CP869 dos 61*a8fa202aSchristos# CP874 win32 dos 62*a8fa202aSchristos# CP922 aix 63*a8fa202aSchristos# CP932 aix win32 dos 64*a8fa202aSchristos# CP943 aix 65*a8fa202aSchristos# CP949 osf win32 dos 66*a8fa202aSchristos# CP950 win32 dos 67*a8fa202aSchristos# CP1046 aix 68*a8fa202aSchristos# CP1124 aix 69*a8fa202aSchristos# CP1129 aix 70*a8fa202aSchristos# CP1250 win32 71*a8fa202aSchristos# CP1251 glibc win32 72*a8fa202aSchristos# CP1252 aix win32 73*a8fa202aSchristos# CP1253 win32 74*a8fa202aSchristos# CP1254 win32 75*a8fa202aSchristos# CP1255 win32 76*a8fa202aSchristos# CP1256 win32 77*a8fa202aSchristos# CP1257 win32 78*a8fa202aSchristos# GB2312 glibc aix hpux irix solaris freebsd yes 79*a8fa202aSchristos# EUC-JP glibc aix hpux irix osf solaris freebsd yes 80*a8fa202aSchristos# EUC-KR glibc aix hpux irix osf solaris freebsd yes 81*a8fa202aSchristos# EUC-TW glibc aix hpux irix osf solaris 82*a8fa202aSchristos# BIG5 glibc aix hpux osf solaris freebsd yes 83*a8fa202aSchristos# BIG5-HKSCS glibc 84*a8fa202aSchristos# GBK aix osf win32 dos 85*a8fa202aSchristos# GB18030 glibc 86*a8fa202aSchristos# SHIFT_JIS hpux osf solaris freebsd yes 87*a8fa202aSchristos# JOHAB glibc win32 88*a8fa202aSchristos# TIS-620 glibc aix hpux osf solaris 89*a8fa202aSchristos# VISCII glibc yes 90*a8fa202aSchristos# HP-ROMAN8 hpux 91*a8fa202aSchristos# HP-ARABIC8 hpux 92*a8fa202aSchristos# HP-GREEK8 hpux 93*a8fa202aSchristos# HP-HEBREW8 hpux 94*a8fa202aSchristos# HP-TURKISH8 hpux 95*a8fa202aSchristos# HP-KANA8 hpux 96*a8fa202aSchristos# DEC-KANJI osf 97*a8fa202aSchristos# DEC-HANYU osf 98*a8fa202aSchristos# UTF-8 glibc aix hpux osf solaris yes 99*a8fa202aSchristos# 100*a8fa202aSchristos# Note: Names which are not marked as being a MIME name should not be used in 101*a8fa202aSchristos# Internet protocols for information interchange (mail, news, etc.). 102*a8fa202aSchristos# 103*a8fa202aSchristos# Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications 104*a8fa202aSchristos# must understand both names and treat them as equivalent. 105*a8fa202aSchristos# 106*a8fa202aSchristos# The first argument passed to this file is the canonical host specification, 107*a8fa202aSchristos# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM 108*a8fa202aSchristos# or 109*a8fa202aSchristos# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM 110*a8fa202aSchristos 111*a8fa202aSchristoshost="$1" 112*a8fa202aSchristosos=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'` 113*a8fa202aSchristosecho "# This file contains a table of character encoding aliases," 114*a8fa202aSchristosecho "# suitable for operating system '${os}'." 115*a8fa202aSchristosecho "# It was automatically generated from config.charset." 116*a8fa202aSchristos# List of references, updated during installation: 117*a8fa202aSchristosecho "# Packages using this file: " 118*a8fa202aSchristoscase "$os" in 119*a8fa202aSchristos linux* | *-gnu*) 120*a8fa202aSchristos # With glibc-2.1 or newer, we don't need any canonicalization, 121*a8fa202aSchristos # because glibc has iconv and both glibc and libiconv support all 122*a8fa202aSchristos # GNU canonical names directly. Therefore, the Makefile does not 123*a8fa202aSchristos # need to install the alias file at all. 124*a8fa202aSchristos # The following applies only to glibc-2.0.x and older libcs. 125*a8fa202aSchristos echo "ISO_646.IRV:1983 ASCII" 126*a8fa202aSchristos ;; 127*a8fa202aSchristos aix*) 128*a8fa202aSchristos echo "ISO8859-1 ISO-8859-1" 129*a8fa202aSchristos echo "ISO8859-2 ISO-8859-2" 130*a8fa202aSchristos echo "ISO8859-5 ISO-8859-5" 131*a8fa202aSchristos echo "ISO8859-6 ISO-8859-6" 132*a8fa202aSchristos echo "ISO8859-7 ISO-8859-7" 133*a8fa202aSchristos echo "ISO8859-8 ISO-8859-8" 134*a8fa202aSchristos echo "ISO8859-9 ISO-8859-9" 135*a8fa202aSchristos echo "ISO8859-15 ISO-8859-15" 136*a8fa202aSchristos echo "IBM-850 CP850" 137*a8fa202aSchristos echo "IBM-856 CP856" 138*a8fa202aSchristos echo "IBM-921 ISO-8859-13" 139*a8fa202aSchristos echo "IBM-922 CP922" 140*a8fa202aSchristos echo "IBM-932 CP932" 141*a8fa202aSchristos echo "IBM-943 CP943" 142*a8fa202aSchristos echo "IBM-1046 CP1046" 143*a8fa202aSchristos echo "IBM-1124 CP1124" 144*a8fa202aSchristos echo "IBM-1129 CP1129" 145*a8fa202aSchristos echo "IBM-1252 CP1252" 146*a8fa202aSchristos echo "IBM-eucCN GB2312" 147*a8fa202aSchristos echo "IBM-eucJP EUC-JP" 148*a8fa202aSchristos echo "IBM-eucKR EUC-KR" 149*a8fa202aSchristos echo "IBM-eucTW EUC-TW" 150*a8fa202aSchristos echo "big5 BIG5" 151*a8fa202aSchristos echo "GBK GBK" 152*a8fa202aSchristos echo "TIS-620 TIS-620" 153*a8fa202aSchristos echo "UTF-8 UTF-8" 154*a8fa202aSchristos ;; 155*a8fa202aSchristos hpux*) 156*a8fa202aSchristos echo "iso88591 ISO-8859-1" 157*a8fa202aSchristos echo "iso88592 ISO-8859-2" 158*a8fa202aSchristos echo "iso88595 ISO-8859-5" 159*a8fa202aSchristos echo "iso88596 ISO-8859-6" 160*a8fa202aSchristos echo "iso88597 ISO-8859-7" 161*a8fa202aSchristos echo "iso88598 ISO-8859-8" 162*a8fa202aSchristos echo "iso88599 ISO-8859-9" 163*a8fa202aSchristos echo "iso885915 ISO-8859-15" 164*a8fa202aSchristos echo "roman8 HP-ROMAN8" 165*a8fa202aSchristos echo "arabic8 HP-ARABIC8" 166*a8fa202aSchristos echo "greek8 HP-GREEK8" 167*a8fa202aSchristos echo "hebrew8 HP-HEBREW8" 168*a8fa202aSchristos echo "turkish8 HP-TURKISH8" 169*a8fa202aSchristos echo "kana8 HP-KANA8" 170*a8fa202aSchristos echo "tis620 TIS-620" 171*a8fa202aSchristos echo "big5 BIG5" 172*a8fa202aSchristos echo "eucJP EUC-JP" 173*a8fa202aSchristos echo "eucKR EUC-KR" 174*a8fa202aSchristos echo "eucTW EUC-TW" 175*a8fa202aSchristos echo "hp15CN GB2312" 176*a8fa202aSchristos #echo "ccdc ?" # what is this? 177*a8fa202aSchristos echo "SJIS SHIFT_JIS" 178*a8fa202aSchristos echo "utf8 UTF-8" 179*a8fa202aSchristos ;; 180*a8fa202aSchristos irix*) 181*a8fa202aSchristos echo "ISO8859-1 ISO-8859-1" 182*a8fa202aSchristos echo "ISO8859-2 ISO-8859-2" 183*a8fa202aSchristos echo "ISO8859-5 ISO-8859-5" 184*a8fa202aSchristos echo "ISO8859-7 ISO-8859-7" 185*a8fa202aSchristos echo "ISO8859-9 ISO-8859-9" 186*a8fa202aSchristos echo "eucCN GB2312" 187*a8fa202aSchristos echo "eucJP EUC-JP" 188*a8fa202aSchristos echo "eucKR EUC-KR" 189*a8fa202aSchristos echo "eucTW EUC-TW" 190*a8fa202aSchristos ;; 191*a8fa202aSchristos osf*) 192*a8fa202aSchristos echo "ISO8859-1 ISO-8859-1" 193*a8fa202aSchristos echo "ISO8859-2 ISO-8859-2" 194*a8fa202aSchristos echo "ISO8859-4 ISO-8859-4" 195*a8fa202aSchristos echo "ISO8859-5 ISO-8859-5" 196*a8fa202aSchristos echo "ISO8859-7 ISO-8859-7" 197*a8fa202aSchristos echo "ISO8859-8 ISO-8859-8" 198*a8fa202aSchristos echo "ISO8859-9 ISO-8859-9" 199*a8fa202aSchristos echo "ISO8859-15 ISO-8859-15" 200*a8fa202aSchristos echo "cp850 CP850" 201*a8fa202aSchristos echo "big5 BIG5" 202*a8fa202aSchristos echo "dechanyu DEC-HANYU" 203*a8fa202aSchristos echo "dechanzi GB2312" 204*a8fa202aSchristos echo "deckanji DEC-KANJI" 205*a8fa202aSchristos echo "deckorean EUC-KR" 206*a8fa202aSchristos echo "eucJP EUC-JP" 207*a8fa202aSchristos echo "eucKR EUC-KR" 208*a8fa202aSchristos echo "eucTW EUC-TW" 209*a8fa202aSchristos echo "GBK GBK" 210*a8fa202aSchristos echo "KSC5601 CP949" 211*a8fa202aSchristos echo "sdeckanji EUC-JP" 212*a8fa202aSchristos echo "SJIS SHIFT_JIS" 213*a8fa202aSchristos echo "TACTIS TIS-620" 214*a8fa202aSchristos echo "UTF-8 UTF-8" 215*a8fa202aSchristos ;; 216*a8fa202aSchristos solaris*) 217*a8fa202aSchristos echo "646 ASCII" 218*a8fa202aSchristos echo "ISO8859-1 ISO-8859-1" 219*a8fa202aSchristos echo "ISO8859-2 ISO-8859-2" 220*a8fa202aSchristos echo "ISO8859-4 ISO-8859-4" 221*a8fa202aSchristos echo "ISO8859-5 ISO-8859-5" 222*a8fa202aSchristos echo "ISO8859-6 ISO-8859-6" 223*a8fa202aSchristos echo "ISO8859-7 ISO-8859-7" 224*a8fa202aSchristos echo "ISO8859-8 ISO-8859-8" 225*a8fa202aSchristos echo "ISO8859-9 ISO-8859-9" 226*a8fa202aSchristos echo "ISO8859-15 ISO-8859-15" 227*a8fa202aSchristos echo "koi8-r KOI8-R" 228*a8fa202aSchristos echo "BIG5 BIG5" 229*a8fa202aSchristos echo "gb2312 GB2312" 230*a8fa202aSchristos echo "cns11643 EUC-TW" 231*a8fa202aSchristos echo "5601 EUC-KR" 232*a8fa202aSchristos echo "eucJP EUC-JP" 233*a8fa202aSchristos echo "PCK SHIFT_JIS" 234*a8fa202aSchristos echo "TIS620.2533 TIS-620" 235*a8fa202aSchristos #echo "sun_eu_greek ?" # what is this? 236*a8fa202aSchristos echo "UTF-8 UTF-8" 237*a8fa202aSchristos ;; 238*a8fa202aSchristos freebsd* | os2*) 239*a8fa202aSchristos # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore 240*a8fa202aSchristos # localcharset.c falls back to using the full locale name 241*a8fa202aSchristos # from the environment variables. 242*a8fa202aSchristos # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just 243*a8fa202aSchristos # reuse FreeBSD's locale data for OS/2. 244*a8fa202aSchristos echo "C ASCII" 245*a8fa202aSchristos echo "US-ASCII ASCII" 246*a8fa202aSchristos for l in la_LN lt_LN; do 247*a8fa202aSchristos echo "$l.ASCII ASCII" 248*a8fa202aSchristos done 249*a8fa202aSchristos for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ 250*a8fa202aSchristos fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \ 251*a8fa202aSchristos lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do 252*a8fa202aSchristos echo "$l.ISO_8859-1 ISO-8859-1" 253*a8fa202aSchristos echo "$l.DIS_8859-15 ISO-8859-15" 254*a8fa202aSchristos done 255*a8fa202aSchristos for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do 256*a8fa202aSchristos echo "$l.ISO_8859-2 ISO-8859-2" 257*a8fa202aSchristos done 258*a8fa202aSchristos for l in la_LN lt_LT; do 259*a8fa202aSchristos echo "$l.ISO_8859-4 ISO-8859-4" 260*a8fa202aSchristos done 261*a8fa202aSchristos for l in ru_RU ru_SU; do 262*a8fa202aSchristos echo "$l.KOI8-R KOI8-R" 263*a8fa202aSchristos echo "$l.ISO_8859-5 ISO-8859-5" 264*a8fa202aSchristos echo "$l.CP866 CP866" 265*a8fa202aSchristos done 266*a8fa202aSchristos echo "uk_UA.KOI8-U KOI8-U" 267*a8fa202aSchristos echo "zh_TW.BIG5 BIG5" 268*a8fa202aSchristos echo "zh_TW.Big5 BIG5" 269*a8fa202aSchristos echo "zh_CN.EUC GB2312" 270*a8fa202aSchristos echo "ja_JP.EUC EUC-JP" 271*a8fa202aSchristos echo "ja_JP.SJIS SHIFT_JIS" 272*a8fa202aSchristos echo "ja_JP.Shift_JIS SHIFT_JIS" 273*a8fa202aSchristos echo "ko_KR.EUC EUC-KR" 274*a8fa202aSchristos ;; 275*a8fa202aSchristos beos*) 276*a8fa202aSchristos # BeOS has a single locale, and it has UTF-8 encoding. 277*a8fa202aSchristos echo "* UTF-8" 278*a8fa202aSchristos ;; 279*a8fa202aSchristos msdosdjgpp*) 280*a8fa202aSchristos # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore 281*a8fa202aSchristos # localcharset.c falls back to using the full locale name 282*a8fa202aSchristos # from the environment variables. 283*a8fa202aSchristos echo "#" 284*a8fa202aSchristos echo "# The encodings given here may not all be correct." 285*a8fa202aSchristos echo "# If you find that the encoding given for your language and" 286*a8fa202aSchristos echo "# country is not the one your DOS machine actually uses, just" 287*a8fa202aSchristos echo "# correct it in this file, and send a mail to" 288*a8fa202aSchristos echo "# Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>" 289*a8fa202aSchristos echo "# and Bruno Haible <haible@clisp.cons.org>." 290*a8fa202aSchristos echo "#" 291*a8fa202aSchristos echo "C ASCII" 292*a8fa202aSchristos # ISO-8859-1 languages 293*a8fa202aSchristos echo "ca CP850" 294*a8fa202aSchristos echo "ca_ES CP850" 295*a8fa202aSchristos echo "da CP865" # not CP850 ?? 296*a8fa202aSchristos echo "da_DK CP865" # not CP850 ?? 297*a8fa202aSchristos echo "de CP850" 298*a8fa202aSchristos echo "de_AT CP850" 299*a8fa202aSchristos echo "de_CH CP850" 300*a8fa202aSchristos echo "de_DE CP850" 301*a8fa202aSchristos echo "en CP850" 302*a8fa202aSchristos echo "en_AU CP850" # not CP437 ?? 303*a8fa202aSchristos echo "en_CA CP850" 304*a8fa202aSchristos echo "en_GB CP850" 305*a8fa202aSchristos echo "en_NZ CP437" 306*a8fa202aSchristos echo "en_US CP437" 307*a8fa202aSchristos echo "en_ZA CP850" # not CP437 ?? 308*a8fa202aSchristos echo "es CP850" 309*a8fa202aSchristos echo "es_AR CP850" 310*a8fa202aSchristos echo "es_BO CP850" 311*a8fa202aSchristos echo "es_CL CP850" 312*a8fa202aSchristos echo "es_CO CP850" 313*a8fa202aSchristos echo "es_CR CP850" 314*a8fa202aSchristos echo "es_CU CP850" 315*a8fa202aSchristos echo "es_DO CP850" 316*a8fa202aSchristos echo "es_EC CP850" 317*a8fa202aSchristos echo "es_ES CP850" 318*a8fa202aSchristos echo "es_GT CP850" 319*a8fa202aSchristos echo "es_HN CP850" 320*a8fa202aSchristos echo "es_MX CP850" 321*a8fa202aSchristos echo "es_NI CP850" 322*a8fa202aSchristos echo "es_PA CP850" 323*a8fa202aSchristos echo "es_PY CP850" 324*a8fa202aSchristos echo "es_PE CP850" 325*a8fa202aSchristos echo "es_SV CP850" 326*a8fa202aSchristos echo "es_UY CP850" 327*a8fa202aSchristos echo "es_VE CP850" 328*a8fa202aSchristos echo "et CP850" 329*a8fa202aSchristos echo "et_EE CP850" 330*a8fa202aSchristos echo "eu CP850" 331*a8fa202aSchristos echo "eu_ES CP850" 332*a8fa202aSchristos echo "fi CP850" 333*a8fa202aSchristos echo "fi_FI CP850" 334*a8fa202aSchristos echo "fr CP850" 335*a8fa202aSchristos echo "fr_BE CP850" 336*a8fa202aSchristos echo "fr_CA CP850" 337*a8fa202aSchristos echo "fr_CH CP850" 338*a8fa202aSchristos echo "fr_FR CP850" 339*a8fa202aSchristos echo "ga CP850" 340*a8fa202aSchristos echo "ga_IE CP850" 341*a8fa202aSchristos echo "gd CP850" 342*a8fa202aSchristos echo "gd_GB CP850" 343*a8fa202aSchristos echo "gl CP850" 344*a8fa202aSchristos echo "gl_ES CP850" 345*a8fa202aSchristos echo "id CP850" # not CP437 ?? 346*a8fa202aSchristos echo "id_ID CP850" # not CP437 ?? 347*a8fa202aSchristos echo "is CP861" # not CP850 ?? 348*a8fa202aSchristos echo "is_IS CP861" # not CP850 ?? 349*a8fa202aSchristos echo "it CP850" 350*a8fa202aSchristos echo "it_CH CP850" 351*a8fa202aSchristos echo "it_IT CP850" 352*a8fa202aSchristos echo "lt CP775" 353*a8fa202aSchristos echo "lt_LT CP775" 354*a8fa202aSchristos echo "lv CP775" 355*a8fa202aSchristos echo "lv_LV CP775" 356*a8fa202aSchristos echo "nb CP865" # not CP850 ?? 357*a8fa202aSchristos echo "nb_NO CP865" # not CP850 ?? 358*a8fa202aSchristos echo "nl CP850" 359*a8fa202aSchristos echo "nl_BE CP850" 360*a8fa202aSchristos echo "nl_NL CP850" 361*a8fa202aSchristos echo "nn CP865" # not CP850 ?? 362*a8fa202aSchristos echo "nn_NO CP865" # not CP850 ?? 363*a8fa202aSchristos echo "no CP865" # not CP850 ?? 364*a8fa202aSchristos echo "no_NO CP865" # not CP850 ?? 365*a8fa202aSchristos echo "pt CP850" 366*a8fa202aSchristos echo "pt_BR CP850" 367*a8fa202aSchristos echo "pt_PT CP850" 368*a8fa202aSchristos echo "sv CP850" 369*a8fa202aSchristos echo "sv_SE CP850" 370*a8fa202aSchristos # ISO-8859-2 languages 371*a8fa202aSchristos echo "cs CP852" 372*a8fa202aSchristos echo "cs_CZ CP852" 373*a8fa202aSchristos echo "hr CP852" 374*a8fa202aSchristos echo "hr_HR CP852" 375*a8fa202aSchristos echo "hu CP852" 376*a8fa202aSchristos echo "hu_HU CP852" 377*a8fa202aSchristos echo "pl CP852" 378*a8fa202aSchristos echo "pl_PL CP852" 379*a8fa202aSchristos echo "ro CP852" 380*a8fa202aSchristos echo "ro_RO CP852" 381*a8fa202aSchristos echo "sk CP852" 382*a8fa202aSchristos echo "sk_SK CP852" 383*a8fa202aSchristos echo "sl CP852" 384*a8fa202aSchristos echo "sl_SI CP852" 385*a8fa202aSchristos echo "sq CP852" 386*a8fa202aSchristos echo "sq_AL CP852" 387*a8fa202aSchristos echo "sr CP852" # CP852 or CP866 or CP855 ?? 388*a8fa202aSchristos echo "sr_YU CP852" # CP852 or CP866 or CP855 ?? 389*a8fa202aSchristos # ISO-8859-3 languages 390*a8fa202aSchristos echo "mt CP850" 391*a8fa202aSchristos echo "mt_MT CP850" 392*a8fa202aSchristos # ISO-8859-5 languages 393*a8fa202aSchristos echo "be CP866" 394*a8fa202aSchristos echo "be_BE CP866" 395*a8fa202aSchristos echo "bg CP866" # not CP855 ?? 396*a8fa202aSchristos echo "bg_BG CP866" # not CP855 ?? 397*a8fa202aSchristos echo "mk CP866" # not CP855 ?? 398*a8fa202aSchristos echo "mk_MK CP866" # not CP855 ?? 399*a8fa202aSchristos echo "ru KOI8-R" # not CP866 ?? 400*a8fa202aSchristos echo "ru_RU KOI8-R" # not CP866 ?? 401*a8fa202aSchristos # ISO-8859-6 languages 402*a8fa202aSchristos echo "ar CP864" 403*a8fa202aSchristos echo "ar_AE CP864" 404*a8fa202aSchristos echo "ar_DZ CP864" 405*a8fa202aSchristos echo "ar_EG CP864" 406*a8fa202aSchristos echo "ar_IQ CP864" 407*a8fa202aSchristos echo "ar_IR CP864" 408*a8fa202aSchristos echo "ar_JO CP864" 409*a8fa202aSchristos echo "ar_KW CP864" 410*a8fa202aSchristos echo "ar_MA CP864" 411*a8fa202aSchristos echo "ar_OM CP864" 412*a8fa202aSchristos echo "ar_QA CP864" 413*a8fa202aSchristos echo "ar_SA CP864" 414*a8fa202aSchristos echo "ar_SY CP864" 415*a8fa202aSchristos # ISO-8859-7 languages 416*a8fa202aSchristos echo "el CP869" 417*a8fa202aSchristos echo "el_GR CP869" 418*a8fa202aSchristos # ISO-8859-8 languages 419*a8fa202aSchristos echo "he CP862" 420*a8fa202aSchristos echo "he_IL CP862" 421*a8fa202aSchristos # ISO-8859-9 languages 422*a8fa202aSchristos echo "tr CP857" 423*a8fa202aSchristos echo "tr_TR CP857" 424*a8fa202aSchristos # Japanese 425*a8fa202aSchristos echo "ja CP932" 426*a8fa202aSchristos echo "ja_JP CP932" 427*a8fa202aSchristos # Chinese 428*a8fa202aSchristos echo "zh_CN GBK" 429*a8fa202aSchristos echo "zh_TW CP950" # not CP938 ?? 430*a8fa202aSchristos # Korean 431*a8fa202aSchristos echo "kr CP949" # not CP934 ?? 432*a8fa202aSchristos echo "kr_KR CP949" # not CP934 ?? 433*a8fa202aSchristos # Thai 434*a8fa202aSchristos echo "th CP874" 435*a8fa202aSchristos echo "th_TH CP874" 436*a8fa202aSchristos # Other 437*a8fa202aSchristos echo "eo CP850" 438*a8fa202aSchristos echo "eo_EO CP850" 439*a8fa202aSchristos ;; 440*a8fa202aSchristosesac 441