home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Bureautique / gImageReader / gimagereader_0.9-1_win32.exe / bin / locale.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2011-03-24  |  49KB  |  1,702 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. """ Locale support.
  5.  
  6.     The module provides low-level access to the C lib's locale APIs
  7.     and adds high level number formatting APIs as well as a locale
  8.     aliasing engine to complement these.
  9.  
  10.     The aliasing engine includes support for many commonly used locale
  11.     names and maps them to values suitable for passing to the C lib's
  12.     setlocale() function. It also includes default encodings for all
  13.     supported locale names.
  14.  
  15. """
  16. import sys
  17. import encodings
  18. import encodings.aliases as encodings
  19. import re
  20. import operator
  21. import functools
  22. __all__ = [
  23.     'getlocale',
  24.     'getdefaultlocale',
  25.     'getpreferredencoding',
  26.     'Error',
  27.     'setlocale',
  28.     'resetlocale',
  29.     'localeconv',
  30.     'strcoll',
  31.     'strxfrm',
  32.     'str',
  33.     'atof',
  34.     'atoi',
  35.     'format',
  36.     'format_string',
  37.     'currency',
  38.     'normalize',
  39.     'LC_CTYPE',
  40.     'LC_COLLATE',
  41.     'LC_TIME',
  42.     'LC_MONETARY',
  43.     'LC_NUMERIC',
  44.     'LC_ALL',
  45.     'CHAR_MAX']
  46.  
  47. try:
  48.     from _locale import *
  49. except ImportError:
  50.     CHAR_MAX = 127
  51.     LC_ALL = 6
  52.     LC_COLLATE = 3
  53.     LC_CTYPE = 0
  54.     LC_MESSAGES = 5
  55.     LC_MONETARY = 4
  56.     LC_NUMERIC = 1
  57.     LC_TIME = 2
  58.     Error = ValueError
  59.     
  60.     def localeconv():
  61.         ''' localeconv() -> dict.
  62.             Returns numeric and monetary locale-specific parameters.
  63.         '''
  64.         return {
  65.             'grouping': [
  66.                 127],
  67.             'currency_symbol': '',
  68.             'n_sign_posn': 127,
  69.             'p_cs_precedes': 127,
  70.             'n_cs_precedes': 127,
  71.             'mon_grouping': [],
  72.             'n_sep_by_space': 127,
  73.             'decimal_point': '.',
  74.             'negative_sign': '',
  75.             'positive_sign': '',
  76.             'p_sep_by_space': 127,
  77.             'int_curr_symbol': '',
  78.             'p_sign_posn': 127,
  79.             'thousands_sep': '',
  80.             'mon_thousands_sep': '',
  81.             'frac_digits': 127,
  82.             'mon_decimal_point': '',
  83.             'int_frac_digits': 127 }
  84.  
  85.     
  86.     def setlocale(category, value = None):
  87.         ''' setlocale(integer,string=None) -> string.
  88.             Activates/queries locale processing.
  89.         '''
  90.         if value not in (None, '', 'C'):
  91.             raise Error, '_locale emulation only supports "C" locale'
  92.         return 'C'
  93.  
  94.     
  95.     def strcoll(a, b):
  96.         ''' strcoll(string,string) -> int.
  97.             Compares two strings according to the locale.
  98.         '''
  99.         return cmp(a, b)
  100.  
  101.     
  102.     def strxfrm(s):
  103.         ''' strxfrm(string) -> string.
  104.             Returns a string that behaves for cmp locale-aware.
  105.         '''
  106.         return s
  107.  
  108.  
  109. _localeconv = localeconv
  110. _override_localeconv = { }
  111.  
  112. def localeconv():
  113.     d = _localeconv()
  114.     if _override_localeconv:
  115.         d.update(_override_localeconv)
  116.     return d
  117.  
  118. localeconv = functools.wraps(_localeconv)(localeconv)
  119.  
  120. def _grouping_intervals(grouping):
  121.     last_interval = None
  122.     for interval in grouping:
  123.         if interval == CHAR_MAX:
  124.             return None
  125.         if None == 0:
  126.             if last_interval is None:
  127.                 raise ValueError('invalid grouping')
  128.             while True:
  129.                 yield last_interval
  130.         yield interval
  131.         last_interval = interval
  132.     
  133.  
  134.  
  135. def _group(s, monetary = False):
  136.     conv = localeconv()
  137.     if not monetary or 'mon_thousands_sep':
  138.         pass
  139.     thousands_sep = conv['thousands_sep']
  140.     if not monetary or 'mon_grouping':
  141.         pass
  142.     grouping = conv['grouping']
  143.     if not grouping:
  144.         return (s, 0)
  145.     result = None
  146.     seps = 0
  147.     if s[-1] == ' ':
  148.         stripped = s.rstrip()
  149.         right_spaces = s[len(stripped):]
  150.         s = stripped
  151.     else:
  152.         right_spaces = ''
  153.     left_spaces = ''
  154.     groups = []
  155.     for interval in _grouping_intervals(grouping):
  156.         if not s or s[-1] not in '0123456789':
  157.             left_spaces = s
  158.             s = ''
  159.             break
  160.         groups.append(s[-interval:])
  161.         s = s[:-interval]
  162.     
  163.     if s:
  164.         groups.append(s)
  165.     groups.reverse()
  166.     return (left_spaces + thousands_sep.join(groups) + right_spaces, len(thousands_sep) * (len(groups) - 1))
  167.  
  168.  
  169. def _strip_padding(s, amount):
  170.     lpos = 0
  171.     while amount and s[lpos] == ' ':
  172.         lpos += 1
  173.         amount -= 1
  174.     rpos = len(s) - 1
  175.     while amount and s[rpos] == ' ':
  176.         rpos -= 1
  177.         amount -= 1
  178.     return s[lpos:rpos + 1]
  179.  
  180. _percent_re = re.compile('%(?:\\((?P<key>.*?)\\))?(?P<modifiers>[-#0-9 +*.hlL]*?)[eEfFgGdiouxXcrs%]')
  181.  
  182. def format(percent, value, grouping = False, monetary = False, *additional):
  183.     """Returns the locale-aware substitution of a %? specifier
  184.     (percent).
  185.  
  186.     additional is for format strings which contain one or more
  187.     '*' modifiers."""
  188.     match = _percent_re.match(percent)
  189.     if not match or len(match.group()) != len(percent):
  190.         raise ValueError('format() must be given exactly one %%char format specifier, %s not valid' % repr(percent))
  191.     return _format(percent, value, grouping, monetary, *additional)
  192.  
  193.  
  194. def _format(percent, value, grouping = False, monetary = False, *additional):
  195.     if additional:
  196.         formatted = percent % ((value,) + additional)
  197.     else:
  198.         formatted = percent % value
  199.     if percent[-1] in 'eEfFgG':
  200.         seps = 0
  201.         parts = formatted.split('.')
  202.         decimal_point = None[localeconv() if grouping else 'decimal_point']
  203.         formatted = decimal_point.join(parts)
  204.         if seps:
  205.             formatted = _strip_padding(formatted, seps)
  206.         
  207.     elif percent[-1] in 'diu':
  208.         seps = 0
  209.         if grouping:
  210.             (formatted, seps) = _group(formatted, monetary = monetary)
  211.         if seps:
  212.             formatted = _strip_padding(formatted, seps)
  213.         
  214.     return formatted
  215.  
  216.  
  217. def format_string(f, val, grouping = False):
  218.     '''Formats a string in the same way that the % formatting would use,
  219.     but takes the current locale into account.
  220.     Grouping is applied if the third parameter is true.'''
  221.     percents = list(_percent_re.finditer(f))
  222.     new_f = _percent_re.sub('%s', f)
  223.     if operator.isMappingType(val):
  224.         new_val = []
  225.         for perc in percents:
  226.             if perc.group()[-1] == '%':
  227.                 new_val.append('%')
  228.                 continue
  229.             new_val.append(format(perc.group(), val, grouping))
  230.         
  231.     elif not isinstance(val, tuple):
  232.         val = (val,)
  233.     new_val = []
  234.     i = 0
  235.     for perc in percents:
  236.         if perc.group()[-1] == '%':
  237.             new_val.append('%')
  238.             continue
  239.         starcount = perc.group('modifiers').count('*')
  240.         new_val.append(_format(perc.group(), val[i], grouping, False, *val[i + 1:i + 1 + starcount]))
  241.         i += 1 + starcount
  242.     
  243.     val = tuple(new_val)
  244.     return new_f % val
  245.  
  246.  
  247. def currency(val, symbol = True, grouping = False, international = False):
  248.     '''Formats val according to the currency settings
  249.     in the current locale.'''
  250.     conv = localeconv()
  251.     if not international or 'int_frac_digits':
  252.         pass
  253.     digits = conv['frac_digits']
  254.     if digits == 127:
  255.         raise ValueError("Currency formatting is not possible using the 'C' locale.")
  256.     s = format('%%.%if' % digits, abs(val), grouping, monetary = True)
  257.     s = '<' + s + '>'
  258.     sign_pos = None[conv if symbol else 'p_sign_posn']
  259.     if not val < 0 or 'negative_sign':
  260.         pass
  261.     sign = conv['positive_sign']
  262.     if sign_pos == 0:
  263.         s = '(' + s + ')'
  264.     elif sign_pos == 1:
  265.         s = sign + s
  266.     elif sign_pos == 2:
  267.         s = s + sign
  268.     elif sign_pos == 3:
  269.         s = s.replace('<', sign)
  270.     elif sign_pos == 4:
  271.         s = s.replace('>', sign)
  272.     else:
  273.         s = sign + s
  274.     return s.replace('<', '').replace('>', '')
  275.  
  276.  
  277. def str(val):
  278.     '''Convert float to integer, taking the locale into account.'''
  279.     return format('%.12g', val)
  280.  
  281.  
  282. def atof(string, func = float):
  283.     '''Parses a string as a float according to the locale settings.'''
  284.     ts = localeconv()['thousands_sep']
  285.     if ts:
  286.         string = string.replace(ts, '')
  287.     dd = localeconv()['decimal_point']
  288.     if dd:
  289.         string = string.replace(dd, '.')
  290.     return func(string)
  291.  
  292.  
  293. def atoi(str):
  294.     '''Converts a string to an integer according to the locale settings.'''
  295.     return atof(str, int)
  296.  
  297.  
  298. def _test():
  299.     setlocale(LC_ALL, '')
  300.     s1 = format('%d', 123456789, 1)
  301.     print s1, 'is', atoi(s1)
  302.     s1 = str(3.14)
  303.     print s1, 'is', atof(s1)
  304.  
  305. _setlocale = setlocale
  306.  
  307. def normalize(localename):
  308.     ''' Returns a normalized locale code for the given locale
  309.         name.
  310.  
  311.         The returned locale code is formatted for use with
  312.         setlocale().
  313.  
  314.         If normalization fails, the original name is returned
  315.         unchanged.
  316.  
  317.         If the given encoding is not known, the function defaults to
  318.         the default encoding for the locale code just like setlocale()
  319.         does.
  320.  
  321.     '''
  322.     fullname = localename.lower()
  323.     if ':' in fullname:
  324.         fullname = fullname.replace(':', '.')
  325.     if '.' in fullname:
  326.         (langname, encoding) = fullname.split('.')[:2]
  327.         fullname = langname + '.' + encoding
  328.     else:
  329.         langname = fullname
  330.         encoding = ''
  331.     norm_encoding = encoding.replace('-', '')
  332.     norm_encoding = norm_encoding.replace('_', '')
  333.     lookup_name = langname + '.' + encoding
  334.     code = locale_alias.get(lookup_name, None)
  335.     if code is not None:
  336.         return code
  337.     code = None.get(langname, None)
  338.     if code is not None:
  339.         if '.' in code:
  340.             (langname, defenc) = code.split('.')
  341.         else:
  342.             langname = code
  343.             defenc = ''
  344.         if encoding:
  345.             norm_encoding = encodings.normalize_encoding(encoding)
  346.             norm_encoding = encodings.aliases.aliases.get(norm_encoding, norm_encoding)
  347.             encoding = locale_encoding_alias.get(norm_encoding, norm_encoding)
  348.         else:
  349.             encoding = defenc
  350.         if encoding:
  351.             return langname + '.' + encoding
  352.         return None
  353.     return localename
  354.  
  355.  
  356. def _parse_localename(localename):
  357.     ''' Parses the locale code for localename and returns the
  358.         result as tuple (language code, encoding).
  359.  
  360.         The localename is normalized and passed through the locale
  361.         alias engine. A ValueError is raised in case the locale name
  362.         cannot be parsed.
  363.  
  364.         The language code corresponds to RFC 1766.  code and encoding
  365.         can be None in case the values cannot be determined or are
  366.         unknown to this implementation.
  367.  
  368.     '''
  369.     code = normalize(localename)
  370.     if '@' in code:
  371.         (code, modifier) = code.split('@')
  372.         if modifier == 'euro' and '.' not in code:
  373.             return (code, 'iso-8859-15')
  374.     if '.' in code:
  375.         return tuple(code.split('.')[:2])
  376.     if None == 'C':
  377.         return (None, None)
  378.     raise None, 'unknown locale: %s' % localename
  379.  
  380.  
  381. def _build_localename(localetuple):
  382.     ''' Builds a locale code from the given tuple (language code,
  383.         encoding).
  384.  
  385.         No aliasing or normalizing takes place.
  386.  
  387.     '''
  388.     (language, encoding) = localetuple
  389.     if language is None:
  390.         language = 'C'
  391.     if encoding is None:
  392.         return language
  393.     return None + '.' + encoding
  394.  
  395.  
  396. def getdefaultlocale(envvars = ('LC_ALL', 'LC_CTYPE', 'LANG', 'LANGUAGE')):
  397.     ''' Tries to determine the default locale settings and returns
  398.         them as tuple (language code, encoding).
  399.  
  400.         According to POSIX, a program which has not called
  401.         setlocale(LC_ALL, "") runs using the portable \'C\' locale.
  402.         Calling setlocale(LC_ALL, "") lets it use the default locale as
  403.         defined by the LANG variable. Since we don\'t want to interfere
  404.         with the current locale setting we thus emulate the behavior
  405.         in the way described above.
  406.  
  407.         To maintain compatibility with other platforms, not only the
  408.         LANG variable is tested, but a list of variables given as
  409.         envvars parameter. The first found to be defined will be
  410.         used. envvars defaults to the search path used in GNU gettext;
  411.         it must always contain the variable name \'LANG\'.
  412.  
  413.         Except for the code \'C\', the language code corresponds to RFC
  414.         1766.  code and encoding can be None in case the values cannot
  415.         be determined.
  416.  
  417.     '''
  418.     
  419.     try:
  420.         import _locale as _locale
  421.         (code, encoding) = _locale._getdefaultlocale()
  422.     except (ImportError, AttributeError):
  423.         pass
  424.  
  425.     if sys.platform == 'win32' and code and code[:2] == '0x':
  426.         code = windows_locale.get(int(code, 0))
  427.     return (code, encoding)
  428.     import os as os
  429.     lookup = os.environ.get
  430.     for variable in envvars:
  431.         localename = lookup(variable, None)
  432.         if localename or variable == 'LANGUAGE':
  433.             localename = localename.split(':')[0]
  434.         break
  435.         continue
  436.     else:
  437.         localename = 'C'
  438.     return _parse_localename(localename)
  439.  
  440.  
  441. def getlocale(category = LC_CTYPE):
  442.     """ Returns the current setting for the given locale category as
  443.         tuple (language code, encoding).
  444.  
  445.         category may be one of the LC_* value except LC_ALL. It
  446.         defaults to LC_CTYPE.
  447.  
  448.         Except for the code 'C', the language code corresponds to RFC
  449.         1766.  code and encoding can be None in case the values cannot
  450.         be determined.
  451.  
  452.     """
  453.     localename = _setlocale(category)
  454.     if category == LC_ALL and ';' in localename:
  455.         raise TypeError, 'category LC_ALL is not supported'
  456.     return _parse_localename(localename)
  457.  
  458.  
  459. def setlocale(category, locale = None):
  460.     ''' Set the locale for the given category.  The locale can be
  461.         a string, a locale tuple (language code, encoding), or None.
  462.  
  463.         Locale tuples are converted to strings the locale aliasing
  464.         engine.  Locale strings are passed directly to the C lib.
  465.  
  466.         category may be given as one of the LC_* values.
  467.  
  468.     '''
  469.     if locale and type(locale) is not type(''):
  470.         locale = normalize(_build_localename(locale))
  471.     return _setlocale(category, locale)
  472.  
  473.  
  474. def resetlocale(category = LC_ALL):
  475.     ''' Sets the locale for category to the default setting.
  476.  
  477.         The default setting is determined by calling
  478.         getdefaultlocale(). category defaults to LC_ALL.
  479.  
  480.     '''
  481.     _setlocale(category, _build_localename(getdefaultlocale()))
  482.  
  483. if sys.platform.startswith('win'):
  484.     
  485.     def getpreferredencoding(do_setlocale = True):
  486.         '''Return the charset that the user is likely using.'''
  487.         import _locale
  488.         return _locale._getdefaultlocale()[1]
  489.  
  490. else:
  491.     
  492.     try:
  493.         CODESET
  494.     except NameError:
  495.         
  496.         def getpreferredencoding(do_setlocale = True):
  497.             '''Return the charset that the user is likely using,
  498.             by looking at environment variables.'''
  499.             return getdefaultlocale()[1]
  500.  
  501.  
  502.     
  503.     def getpreferredencoding(do_setlocale = True):
  504.         '''Return the charset that the user is likely using,
  505.             according to the system configuration.'''
  506.         if do_setlocale:
  507.             oldloc = setlocale(LC_CTYPE)
  508.             
  509.             try:
  510.                 setlocale(LC_CTYPE, '')
  511.             except Error:
  512.                 pass
  513.  
  514.             result = nl_langinfo(CODESET)
  515.             setlocale(LC_CTYPE, oldloc)
  516.             return result
  517.         return None(CODESET)
  518.  
  519. locale_encoding_alias = {
  520.     '437': 'C',
  521.     'c': 'C',
  522.     'en': 'ISO8859-1',
  523.     'jis': 'JIS7',
  524.     'jis7': 'JIS7',
  525.     'ajec': 'eucJP',
  526.     'ascii': 'ISO8859-1',
  527.     'latin_1': 'ISO8859-1',
  528.     'iso8859_1': 'ISO8859-1',
  529.     'iso8859_10': 'ISO8859-10',
  530.     'iso8859_11': 'ISO8859-11',
  531.     'iso8859_13': 'ISO8859-13',
  532.     'iso8859_14': 'ISO8859-14',
  533.     'iso8859_15': 'ISO8859-15',
  534.     'iso8859_16': 'ISO8859-16',
  535.     'iso8859_2': 'ISO8859-2',
  536.     'iso8859_3': 'ISO8859-3',
  537.     'iso8859_4': 'ISO8859-4',
  538.     'iso8859_5': 'ISO8859-5',
  539.     'iso8859_6': 'ISO8859-6',
  540.     'iso8859_7': 'ISO8859-7',
  541.     'iso8859_8': 'ISO8859-8',
  542.     'iso8859_9': 'ISO8859-9',
  543.     'iso2022_jp': 'JIS7',
  544.     'shift_jis': 'SJIS',
  545.     'tactis': 'TACTIS',
  546.     'euc_jp': 'eucJP',
  547.     'euc_kr': 'eucKR',
  548.     'utf_8': 'UTF8',
  549.     'koi8_r': 'KOI8-R',
  550.     'koi8_u': 'KOI8-U' }
  551. locale_alias = {
  552.     'a3': 'a3_AZ.KOI8-C',
  553.     'a3_az': 'a3_AZ.KOI8-C',
  554.     'a3_az.koi8c': 'a3_AZ.KOI8-C',
  555.     'af': 'af_ZA.ISO8859-1',
  556.     'af_za': 'af_ZA.ISO8859-1',
  557.     'af_za.iso88591': 'af_ZA.ISO8859-1',
  558.     'am': 'am_ET.UTF-8',
  559.     'am_et': 'am_ET.UTF-8',
  560.     'american': 'en_US.ISO8859-1',
  561.     'american.iso88591': 'en_US.ISO8859-1',
  562.     'ar': 'ar_AA.ISO8859-6',
  563.     'ar_aa': 'ar_AA.ISO8859-6',
  564.     'ar_aa.iso88596': 'ar_AA.ISO8859-6',
  565.     'ar_ae': 'ar_AE.ISO8859-6',
  566.     'ar_ae.iso88596': 'ar_AE.ISO8859-6',
  567.     'ar_bh': 'ar_BH.ISO8859-6',
  568.     'ar_bh.iso88596': 'ar_BH.ISO8859-6',
  569.     'ar_dz': 'ar_DZ.ISO8859-6',
  570.     'ar_dz.iso88596': 'ar_DZ.ISO8859-6',
  571.     'ar_eg': 'ar_EG.ISO8859-6',
  572.     'ar_eg.iso88596': 'ar_EG.ISO8859-6',
  573.     'ar_iq': 'ar_IQ.ISO8859-6',
  574.     'ar_iq.iso88596': 'ar_IQ.ISO8859-6',
  575.     'ar_jo': 'ar_JO.ISO8859-6',
  576.     'ar_jo.iso88596': 'ar_JO.ISO8859-6',
  577.     'ar_kw': 'ar_KW.ISO8859-6',
  578.     'ar_kw.iso88596': 'ar_KW.ISO8859-6',
  579.     'ar_lb': 'ar_LB.ISO8859-6',
  580.     'ar_lb.iso88596': 'ar_LB.ISO8859-6',
  581.     'ar_ly': 'ar_LY.ISO8859-6',
  582.     'ar_ly.iso88596': 'ar_LY.ISO8859-6',
  583.     'ar_ma': 'ar_MA.ISO8859-6',
  584.     'ar_ma.iso88596': 'ar_MA.ISO8859-6',
  585.     'ar_om': 'ar_OM.ISO8859-6',
  586.     'ar_om.iso88596': 'ar_OM.ISO8859-6',
  587.     'ar_qa': 'ar_QA.ISO8859-6',
  588.     'ar_qa.iso88596': 'ar_QA.ISO8859-6',
  589.     'ar_sa': 'ar_SA.ISO8859-6',
  590.     'ar_sa.iso88596': 'ar_SA.ISO8859-6',
  591.     'ar_sd': 'ar_SD.ISO8859-6',
  592.     'ar_sd.iso88596': 'ar_SD.ISO8859-6',
  593.     'ar_sy': 'ar_SY.ISO8859-6',
  594.     'ar_sy.iso88596': 'ar_SY.ISO8859-6',
  595.     'ar_tn': 'ar_TN.ISO8859-6',
  596.     'ar_tn.iso88596': 'ar_TN.ISO8859-6',
  597.     'ar_ye': 'ar_YE.ISO8859-6',
  598.     'ar_ye.iso88596': 'ar_YE.ISO8859-6',
  599.     'arabic': 'ar_AA.ISO8859-6',
  600.     'arabic.iso88596': 'ar_AA.ISO8859-6',
  601.     'as': 'as_IN.UTF-8',
  602.     'az': 'az_AZ.ISO8859-9E',
  603.     'az_az': 'az_AZ.ISO8859-9E',
  604.     'az_az.iso88599e': 'az_AZ.ISO8859-9E',
  605.     'be': 'be_BY.CP1251',
  606.     'be@latin': 'be_BY.UTF-8@latin',
  607.     'be_by': 'be_BY.CP1251',
  608.     'be_by.cp1251': 'be_BY.CP1251',
  609.     'be_by.microsoftcp1251': 'be_BY.CP1251',
  610.     'be_by.utf8@latin': 'be_BY.UTF-8@latin',
  611.     'be_by@latin': 'be_BY.UTF-8@latin',
  612.     'bg': 'bg_BG.CP1251',
  613.     'bg_bg': 'bg_BG.CP1251',
  614.     'bg_bg.cp1251': 'bg_BG.CP1251',
  615.     'bg_bg.iso88595': 'bg_BG.ISO8859-5',
  616.     'bg_bg.koi8r': 'bg_BG.KOI8-R',
  617.     'bg_bg.microsoftcp1251': 'bg_BG.CP1251',
  618.     'bn_in': 'bn_IN.UTF-8',
  619.     'bokmal': 'nb_NO.ISO8859-1',
  620.     'bokm\xe5l': 'nb_NO.ISO8859-1',
  621.     'br': 'br_FR.ISO8859-1',
  622.     'br_fr': 'br_FR.ISO8859-1',
  623.     'br_fr.iso88591': 'br_FR.ISO8859-1',
  624.     'br_fr.iso885914': 'br_FR.ISO8859-14',
  625.     'br_fr.iso885915': 'br_FR.ISO8859-15',
  626.     'br_fr.iso885915@euro': 'br_FR.ISO8859-15',
  627.     'br_fr.utf8@euro': 'br_FR.UTF-8',
  628.     'br_fr@euro': 'br_FR.ISO8859-15',
  629.     'bs': 'bs_BA.ISO8859-2',
  630.     'bs_ba': 'bs_BA.ISO8859-2',
  631.     'bs_ba.iso88592': 'bs_BA.ISO8859-2',
  632.     'bulgarian': 'bg_BG.CP1251',
  633.     'c': 'C',
  634.     'c-french': 'fr_CA.ISO8859-1',
  635.     'c-french.iso88591': 'fr_CA.ISO8859-1',
  636.     'c.en': 'C',
  637.     'c.iso88591': 'en_US.ISO8859-1',
  638.     'c_c': 'C',
  639.     'c_c.c': 'C',
  640.     'ca': 'ca_ES.ISO8859-1',
  641.     'ca_ad': 'ca_AD.ISO8859-1',
  642.     'ca_ad.iso88591': 'ca_AD.ISO8859-1',
  643.     'ca_ad.iso885915': 'ca_AD.ISO8859-15',
  644.     'ca_ad.iso885915@euro': 'ca_AD.ISO8859-15',
  645.     'ca_ad.utf8@euro': 'ca_AD.UTF-8',
  646.     'ca_ad@euro': 'ca_AD.ISO8859-15',
  647.     'ca_es': 'ca_ES.ISO8859-1',
  648.     'ca_es.iso88591': 'ca_ES.ISO8859-1',
  649.     'ca_es.iso885915': 'ca_ES.ISO8859-15',
  650.     'ca_es.iso885915@euro': 'ca_ES.ISO8859-15',
  651.     'ca_es.utf8@euro': 'ca_ES.UTF-8',
  652.     'ca_es@euro': 'ca_ES.ISO8859-15',
  653.     'ca_fr': 'ca_FR.ISO8859-1',
  654.     'ca_fr.iso88591': 'ca_FR.ISO8859-1',
  655.     'ca_fr.iso885915': 'ca_FR.ISO8859-15',
  656.     'ca_fr.iso885915@euro': 'ca_FR.ISO8859-15',
  657.     'ca_fr.utf8@euro': 'ca_FR.UTF-8',
  658.     'ca_fr@euro': 'ca_FR.ISO8859-15',
  659.     'ca_it': 'ca_IT.ISO8859-1',
  660.     'ca_it.iso88591': 'ca_IT.ISO8859-1',
  661.     'ca_it.iso885915': 'ca_IT.ISO8859-15',
  662.     'ca_it.iso885915@euro': 'ca_IT.ISO8859-15',
  663.     'ca_it.utf8@euro': 'ca_IT.UTF-8',
  664.     'ca_it@euro': 'ca_IT.ISO8859-15',
  665.     'catalan': 'ca_ES.ISO8859-1',
  666.     'cextend': 'en_US.ISO8859-1',
  667.     'cextend.en': 'en_US.ISO8859-1',
  668.     'chinese-s': 'zh_CN.eucCN',
  669.     'chinese-t': 'zh_TW.eucTW',
  670.     'croatian': 'hr_HR.ISO8859-2',
  671.     'cs': 'cs_CZ.ISO8859-2',
  672.     'cs_cs': 'cs_CZ.ISO8859-2',
  673.     'cs_cs.iso88592': 'cs_CS.ISO8859-2',
  674.     'cs_cz': 'cs_CZ.ISO8859-2',
  675.     'cs_cz.iso88592': 'cs_CZ.ISO8859-2',
  676.     'cy': 'cy_GB.ISO8859-1',
  677.     'cy_gb': 'cy_GB.ISO8859-1',
  678.     'cy_gb.iso88591': 'cy_GB.ISO8859-1',
  679.     'cy_gb.iso885914': 'cy_GB.ISO8859-14',
  680.     'cy_gb.iso885915': 'cy_GB.ISO8859-15',
  681.     'cy_gb@euro': 'cy_GB.ISO8859-15',
  682.     'cz': 'cs_CZ.ISO8859-2',
  683.     'cz_cz': 'cs_CZ.ISO8859-2',
  684.     'czech': 'cs_CZ.ISO8859-2',
  685.     'da': 'da_DK.ISO8859-1',
  686.     'da.iso885915': 'da_DK.ISO8859-15',
  687.     'da_dk': 'da_DK.ISO8859-1',
  688.     'da_dk.88591': 'da_DK.ISO8859-1',
  689.     'da_dk.885915': 'da_DK.ISO8859-15',
  690.     'da_dk.iso88591': 'da_DK.ISO8859-1',
  691.     'da_dk.iso885915': 'da_DK.ISO8859-15',
  692.     'da_dk@euro': 'da_DK.ISO8859-15',
  693.     'danish': 'da_DK.ISO8859-1',
  694.     'danish.iso88591': 'da_DK.ISO8859-1',
  695.     'dansk': 'da_DK.ISO8859-1',
  696.     'de': 'de_DE.ISO8859-1',
  697.     'de.iso885915': 'de_DE.ISO8859-15',
  698.     'de_at': 'de_AT.ISO8859-1',
  699.     'de_at.iso88591': 'de_AT.ISO8859-1',
  700.     'de_at.iso885915': 'de_AT.ISO8859-15',
  701.     'de_at.iso885915@euro': 'de_AT.ISO8859-15',
  702.     'de_at.utf8@euro': 'de_AT.UTF-8',
  703.     'de_at@euro': 'de_AT.ISO8859-15',
  704.     'de_be': 'de_BE.ISO8859-1',
  705.     'de_be.iso88591': 'de_BE.ISO8859-1',
  706.     'de_be.iso885915': 'de_BE.ISO8859-15',
  707.     'de_be.iso885915@euro': 'de_BE.ISO8859-15',
  708.     'de_be.utf8@euro': 'de_BE.UTF-8',
  709.     'de_be@euro': 'de_BE.ISO8859-15',
  710.     'de_ch': 'de_CH.ISO8859-1',
  711.     'de_ch.iso88591': 'de_CH.ISO8859-1',
  712.     'de_ch.iso885915': 'de_CH.ISO8859-15',
  713.     'de_ch@euro': 'de_CH.ISO8859-15',
  714.     'de_de': 'de_DE.ISO8859-1',
  715.     'de_de.88591': 'de_DE.ISO8859-1',
  716.     'de_de.885915': 'de_DE.ISO8859-15',
  717.     'de_de.885915@euro': 'de_DE.ISO8859-15',
  718.     'de_de.iso88591': 'de_DE.ISO8859-1',
  719.     'de_de.iso885915': 'de_DE.ISO8859-15',
  720.     'de_de.iso885915@euro': 'de_DE.ISO8859-15',
  721.     'de_de.utf8@euro': 'de_DE.UTF-8',
  722.     'de_de@euro': 'de_DE.ISO8859-15',
  723.     'de_lu': 'de_LU.ISO8859-1',
  724.     'de_lu.iso88591': 'de_LU.ISO8859-1',
  725.     'de_lu.iso885915': 'de_LU.ISO8859-15',
  726.     'de_lu.iso885915@euro': 'de_LU.ISO8859-15',
  727.     'de_lu.utf8@euro': 'de_LU.UTF-8',
  728.     'de_lu@euro': 'de_LU.ISO8859-15',
  729.     'deutsch': 'de_DE.ISO8859-1',
  730.     'dutch': 'nl_NL.ISO8859-1',
  731.     'dutch.iso88591': 'nl_BE.ISO8859-1',
  732.     'ee': 'ee_EE.ISO8859-4',
  733.     'ee_ee': 'ee_EE.ISO8859-4',
  734.     'ee_ee.iso88594': 'ee_EE.ISO8859-4',
  735.     'eesti': 'et_EE.ISO8859-1',
  736.     'el': 'el_GR.ISO8859-7',
  737.     'el_gr': 'el_GR.ISO8859-7',
  738.     'el_gr.iso88597': 'el_GR.ISO8859-7',
  739.     'el_gr@euro': 'el_GR.ISO8859-15',
  740.     'en': 'en_US.ISO8859-1',
  741.     'en.iso88591': 'en_US.ISO8859-1',
  742.     'en_au': 'en_AU.ISO8859-1',
  743.     'en_au.iso88591': 'en_AU.ISO8859-1',
  744.     'en_be': 'en_BE.ISO8859-1',
  745.     'en_be@euro': 'en_BE.ISO8859-15',
  746.     'en_bw': 'en_BW.ISO8859-1',
  747.     'en_bw.iso88591': 'en_BW.ISO8859-1',
  748.     'en_ca': 'en_CA.ISO8859-1',
  749.     'en_ca.iso88591': 'en_CA.ISO8859-1',
  750.     'en_gb': 'en_GB.ISO8859-1',
  751.     'en_gb.88591': 'en_GB.ISO8859-1',
  752.     'en_gb.iso88591': 'en_GB.ISO8859-1',
  753.     'en_gb.iso885915': 'en_GB.ISO8859-15',
  754.     'en_gb@euro': 'en_GB.ISO8859-15',
  755.     'en_hk': 'en_HK.ISO8859-1',
  756.     'en_hk.iso88591': 'en_HK.ISO8859-1',
  757.     'en_ie': 'en_IE.ISO8859-1',
  758.     'en_ie.iso88591': 'en_IE.ISO8859-1',
  759.     'en_ie.iso885915': 'en_IE.ISO8859-15',
  760.     'en_ie.iso885915@euro': 'en_IE.ISO8859-15',
  761.     'en_ie.utf8@euro': 'en_IE.UTF-8',
  762.     'en_ie@euro': 'en_IE.ISO8859-15',
  763.     'en_in': 'en_IN.ISO8859-1',
  764.     'en_nz': 'en_NZ.ISO8859-1',
  765.     'en_nz.iso88591': 'en_NZ.ISO8859-1',
  766.     'en_ph': 'en_PH.ISO8859-1',
  767.     'en_ph.iso88591': 'en_PH.ISO8859-1',
  768.     'en_sg': 'en_SG.ISO8859-1',
  769.     'en_sg.iso88591': 'en_SG.ISO8859-1',
  770.     'en_uk': 'en_GB.ISO8859-1',
  771.     'en_us': 'en_US.ISO8859-1',
  772.     'en_us.88591': 'en_US.ISO8859-1',
  773.     'en_us.885915': 'en_US.ISO8859-15',
  774.     'en_us.iso88591': 'en_US.ISO8859-1',
  775.     'en_us.iso885915': 'en_US.ISO8859-15',
  776.     'en_us.iso885915@euro': 'en_US.ISO8859-15',
  777.     'en_us@euro': 'en_US.ISO8859-15',
  778.     'en_us@euro@euro': 'en_US.ISO8859-15',
  779.     'en_za': 'en_ZA.ISO8859-1',
  780.     'en_za.88591': 'en_ZA.ISO8859-1',
  781.     'en_za.iso88591': 'en_ZA.ISO8859-1',
  782.     'en_za.iso885915': 'en_ZA.ISO8859-15',
  783.     'en_za@euro': 'en_ZA.ISO8859-15',
  784.     'en_zw': 'en_ZW.ISO8859-1',
  785.     'en_zw.iso88591': 'en_ZW.ISO8859-1',
  786.     'eng_gb': 'en_GB.ISO8859-1',
  787.     'eng_gb.8859': 'en_GB.ISO8859-1',
  788.     'english': 'en_EN.ISO8859-1',
  789.     'english.iso88591': 'en_EN.ISO8859-1',
  790.     'english_uk': 'en_GB.ISO8859-1',
  791.     'english_uk.8859': 'en_GB.ISO8859-1',
  792.     'english_united-states': 'en_US.ISO8859-1',
  793.     'english_united-states.437': 'C',
  794.     'english_us': 'en_US.ISO8859-1',
  795.     'english_us.8859': 'en_US.ISO8859-1',
  796.     'english_us.ascii': 'en_US.ISO8859-1',
  797.     'eo': 'eo_XX.ISO8859-3',
  798.     'eo_eo': 'eo_EO.ISO8859-3',
  799.     'eo_eo.iso88593': 'eo_EO.ISO8859-3',
  800.     'eo_xx': 'eo_XX.ISO8859-3',
  801.     'eo_xx.iso88593': 'eo_XX.ISO8859-3',
  802.     'es': 'es_ES.ISO8859-1',
  803.     'es_ar': 'es_AR.ISO8859-1',
  804.     'es_ar.iso88591': 'es_AR.ISO8859-1',
  805.     'es_bo': 'es_BO.ISO8859-1',
  806.     'es_bo.iso88591': 'es_BO.ISO8859-1',
  807.     'es_cl': 'es_CL.ISO8859-1',
  808.     'es_cl.iso88591': 'es_CL.ISO8859-1',
  809.     'es_co': 'es_CO.ISO8859-1',
  810.     'es_co.iso88591': 'es_CO.ISO8859-1',
  811.     'es_cr': 'es_CR.ISO8859-1',
  812.     'es_cr.iso88591': 'es_CR.ISO8859-1',
  813.     'es_do': 'es_DO.ISO8859-1',
  814.     'es_do.iso88591': 'es_DO.ISO8859-1',
  815.     'es_ec': 'es_EC.ISO8859-1',
  816.     'es_ec.iso88591': 'es_EC.ISO8859-1',
  817.     'es_es': 'es_ES.ISO8859-1',
  818.     'es_es.88591': 'es_ES.ISO8859-1',
  819.     'es_es.iso88591': 'es_ES.ISO8859-1',
  820.     'es_es.iso885915': 'es_ES.ISO8859-15',
  821.     'es_es.iso885915@euro': 'es_ES.ISO8859-15',
  822.     'es_es.utf8@euro': 'es_ES.UTF-8',
  823.     'es_es@euro': 'es_ES.ISO8859-15',
  824.     'es_gt': 'es_GT.ISO8859-1',
  825.     'es_gt.iso88591': 'es_GT.ISO8859-1',
  826.     'es_hn': 'es_HN.ISO8859-1',
  827.     'es_hn.iso88591': 'es_HN.ISO8859-1',
  828.     'es_mx': 'es_MX.ISO8859-1',
  829.     'es_mx.iso88591': 'es_MX.ISO8859-1',
  830.     'es_ni': 'es_NI.ISO8859-1',
  831.     'es_ni.iso88591': 'es_NI.ISO8859-1',
  832.     'es_pa': 'es_PA.ISO8859-1',
  833.     'es_pa.iso88591': 'es_PA.ISO8859-1',
  834.     'es_pa.iso885915': 'es_PA.ISO8859-15',
  835.     'es_pa@euro': 'es_PA.ISO8859-15',
  836.     'es_pe': 'es_PE.ISO8859-1',
  837.     'es_pe.iso88591': 'es_PE.ISO8859-1',
  838.     'es_pe.iso885915': 'es_PE.ISO8859-15',
  839.     'es_pe@euro': 'es_PE.ISO8859-15',
  840.     'es_pr': 'es_PR.ISO8859-1',
  841.     'es_pr.iso88591': 'es_PR.ISO8859-1',
  842.     'es_py': 'es_PY.ISO8859-1',
  843.     'es_py.iso88591': 'es_PY.ISO8859-1',
  844.     'es_py.iso885915': 'es_PY.ISO8859-15',
  845.     'es_py@euro': 'es_PY.ISO8859-15',
  846.     'es_sv': 'es_SV.ISO8859-1',
  847.     'es_sv.iso88591': 'es_SV.ISO8859-1',
  848.     'es_sv.iso885915': 'es_SV.ISO8859-15',
  849.     'es_sv@euro': 'es_SV.ISO8859-15',
  850.     'es_us': 'es_US.ISO8859-1',
  851.     'es_us.iso88591': 'es_US.ISO8859-1',
  852.     'es_uy': 'es_UY.ISO8859-1',
  853.     'es_uy.iso88591': 'es_UY.ISO8859-1',
  854.     'es_uy.iso885915': 'es_UY.ISO8859-15',
  855.     'es_uy@euro': 'es_UY.ISO8859-15',
  856.     'es_ve': 'es_VE.ISO8859-1',
  857.     'es_ve.iso88591': 'es_VE.ISO8859-1',
  858.     'es_ve.iso885915': 'es_VE.ISO8859-15',
  859.     'es_ve@euro': 'es_VE.ISO8859-15',
  860.     'estonian': 'et_EE.ISO8859-1',
  861.     'et': 'et_EE.ISO8859-15',
  862.     'et_ee': 'et_EE.ISO8859-15',
  863.     'et_ee.iso88591': 'et_EE.ISO8859-1',
  864.     'et_ee.iso885913': 'et_EE.ISO8859-13',
  865.     'et_ee.iso885915': 'et_EE.ISO8859-15',
  866.     'et_ee.iso88594': 'et_EE.ISO8859-4',
  867.     'et_ee@euro': 'et_EE.ISO8859-15',
  868.     'eu': 'eu_ES.ISO8859-1',
  869.     'eu_es': 'eu_ES.ISO8859-1',
  870.     'eu_es.iso88591': 'eu_ES.ISO8859-1',
  871.     'eu_es.iso885915': 'eu_ES.ISO8859-15',
  872.     'eu_es.iso885915@euro': 'eu_ES.ISO8859-15',
  873.     'eu_es.utf8@euro': 'eu_ES.UTF-8',
  874.     'eu_es@euro': 'eu_ES.ISO8859-15',
  875.     'fa': 'fa_IR.UTF-8',
  876.     'fa_ir': 'fa_IR.UTF-8',
  877.     'fa_ir.isiri3342': 'fa_IR.ISIRI-3342',
  878.     'fi': 'fi_FI.ISO8859-15',
  879.     'fi.iso885915': 'fi_FI.ISO8859-15',
  880.     'fi_fi': 'fi_FI.ISO8859-15',
  881.     'fi_fi.88591': 'fi_FI.ISO8859-1',
  882.     'fi_fi.iso88591': 'fi_FI.ISO8859-1',
  883.     'fi_fi.iso885915': 'fi_FI.ISO8859-15',
  884.     'fi_fi.iso885915@euro': 'fi_FI.ISO8859-15',
  885.     'fi_fi.utf8@euro': 'fi_FI.UTF-8',
  886.     'fi_fi@euro': 'fi_FI.ISO8859-15',
  887.     'finnish': 'fi_FI.ISO8859-1',
  888.     'finnish.iso88591': 'fi_FI.ISO8859-1',
  889.     'fo': 'fo_FO.ISO8859-1',
  890.     'fo_fo': 'fo_FO.ISO8859-1',
  891.     'fo_fo.iso88591': 'fo_FO.ISO8859-1',
  892.     'fo_fo.iso885915': 'fo_FO.ISO8859-15',
  893.     'fo_fo@euro': 'fo_FO.ISO8859-15',
  894.     'fr': 'fr_FR.ISO8859-1',
  895.     'fr.iso885915': 'fr_FR.ISO8859-15',
  896.     'fr_be': 'fr_BE.ISO8859-1',
  897.     'fr_be.88591': 'fr_BE.ISO8859-1',
  898.     'fr_be.iso88591': 'fr_BE.ISO8859-1',
  899.     'fr_be.iso885915': 'fr_BE.ISO8859-15',
  900.     'fr_be.iso885915@euro': 'fr_BE.ISO8859-15',
  901.     'fr_be.utf8@euro': 'fr_BE.UTF-8',
  902.     'fr_be@euro': 'fr_BE.ISO8859-15',
  903.     'fr_ca': 'fr_CA.ISO8859-1',
  904.     'fr_ca.88591': 'fr_CA.ISO8859-1',
  905.     'fr_ca.iso88591': 'fr_CA.ISO8859-1',
  906.     'fr_ca.iso885915': 'fr_CA.ISO8859-15',
  907.     'fr_ca@euro': 'fr_CA.ISO8859-15',
  908.     'fr_ch': 'fr_CH.ISO8859-1',
  909.     'fr_ch.88591': 'fr_CH.ISO8859-1',
  910.     'fr_ch.iso88591': 'fr_CH.ISO8859-1',
  911.     'fr_ch.iso885915': 'fr_CH.ISO8859-15',
  912.     'fr_ch@euro': 'fr_CH.ISO8859-15',
  913.     'fr_fr': 'fr_FR.ISO8859-1',
  914.     'fr_fr.88591': 'fr_FR.ISO8859-1',
  915.     'fr_fr.iso88591': 'fr_FR.ISO8859-1',
  916.     'fr_fr.iso885915': 'fr_FR.ISO8859-15',
  917.     'fr_fr.iso885915@euro': 'fr_FR.ISO8859-15',
  918.     'fr_fr.utf8@euro': 'fr_FR.UTF-8',
  919.     'fr_fr@euro': 'fr_FR.ISO8859-15',
  920.     'fr_lu': 'fr_LU.ISO8859-1',
  921.     'fr_lu.88591': 'fr_LU.ISO8859-1',
  922.     'fr_lu.iso88591': 'fr_LU.ISO8859-1',
  923.     'fr_lu.iso885915': 'fr_LU.ISO8859-15',
  924.     'fr_lu.iso885915@euro': 'fr_LU.ISO8859-15',
  925.     'fr_lu.utf8@euro': 'fr_LU.UTF-8',
  926.     'fr_lu@euro': 'fr_LU.ISO8859-15',
  927.     'fran\xe7ais': 'fr_FR.ISO8859-1',
  928.     'fre_fr': 'fr_FR.ISO8859-1',
  929.     'fre_fr.8859': 'fr_FR.ISO8859-1',
  930.     'french': 'fr_FR.ISO8859-1',
  931.     'french.iso88591': 'fr_CH.ISO8859-1',
  932.     'french_france': 'fr_FR.ISO8859-1',
  933.     'french_france.8859': 'fr_FR.ISO8859-1',
  934.     'ga': 'ga_IE.ISO8859-1',
  935.     'ga_ie': 'ga_IE.ISO8859-1',
  936.     'ga_ie.iso88591': 'ga_IE.ISO8859-1',
  937.     'ga_ie.iso885914': 'ga_IE.ISO8859-14',
  938.     'ga_ie.iso885915': 'ga_IE.ISO8859-15',
  939.     'ga_ie.iso885915@euro': 'ga_IE.ISO8859-15',
  940.     'ga_ie.utf8@euro': 'ga_IE.UTF-8',
  941.     'ga_ie@euro': 'ga_IE.ISO8859-15',
  942.     'galego': 'gl_ES.ISO8859-1',
  943.     'galician': 'gl_ES.ISO8859-1',
  944.     'gd': 'gd_GB.ISO8859-1',
  945.     'gd_gb': 'gd_GB.ISO8859-1',
  946.     'gd_gb.iso88591': 'gd_GB.ISO8859-1',
  947.     'gd_gb.iso885914': 'gd_GB.ISO8859-14',
  948.     'gd_gb.iso885915': 'gd_GB.ISO8859-15',
  949.     'gd_gb@euro': 'gd_GB.ISO8859-15',
  950.     'ger_de': 'de_DE.ISO8859-1',
  951.     'ger_de.8859': 'de_DE.ISO8859-1',
  952.     'german': 'de_DE.ISO8859-1',
  953.     'german.iso88591': 'de_CH.ISO8859-1',
  954.     'german_germany': 'de_DE.ISO8859-1',
  955.     'german_germany.8859': 'de_DE.ISO8859-1',
  956.     'gl': 'gl_ES.ISO8859-1',
  957.     'gl_es': 'gl_ES.ISO8859-1',
  958.     'gl_es.iso88591': 'gl_ES.ISO8859-1',
  959.     'gl_es.iso885915': 'gl_ES.ISO8859-15',
  960.     'gl_es.iso885915@euro': 'gl_ES.ISO8859-15',
  961.     'gl_es.utf8@euro': 'gl_ES.UTF-8',
  962.     'gl_es@euro': 'gl_ES.ISO8859-15',
  963.     'greek': 'el_GR.ISO8859-7',
  964.     'greek.iso88597': 'el_GR.ISO8859-7',
  965.     'gu_in': 'gu_IN.UTF-8',
  966.     'gv': 'gv_GB.ISO8859-1',
  967.     'gv_gb': 'gv_GB.ISO8859-1',
  968.     'gv_gb.iso88591': 'gv_GB.ISO8859-1',
  969.     'gv_gb.iso885914': 'gv_GB.ISO8859-14',
  970.     'gv_gb.iso885915': 'gv_GB.ISO8859-15',
  971.     'gv_gb@euro': 'gv_GB.ISO8859-15',
  972.     'he': 'he_IL.ISO8859-8',
  973.     'he_il': 'he_IL.ISO8859-8',
  974.     'he_il.cp1255': 'he_IL.CP1255',
  975.     'he_il.iso88598': 'he_IL.ISO8859-8',
  976.     'he_il.microsoftcp1255': 'he_IL.CP1255',
  977.     'hebrew': 'iw_IL.ISO8859-8',
  978.     'hebrew.iso88598': 'iw_IL.ISO8859-8',
  979.     'hi': 'hi_IN.ISCII-DEV',
  980.     'hi_in': 'hi_IN.ISCII-DEV',
  981.     'hi_in.isciidev': 'hi_IN.ISCII-DEV',
  982.     'hne': 'hne_IN.UTF-8',
  983.     'hr': 'hr_HR.ISO8859-2',
  984.     'hr_hr': 'hr_HR.ISO8859-2',
  985.     'hr_hr.iso88592': 'hr_HR.ISO8859-2',
  986.     'hrvatski': 'hr_HR.ISO8859-2',
  987.     'hu': 'hu_HU.ISO8859-2',
  988.     'hu_hu': 'hu_HU.ISO8859-2',
  989.     'hu_hu.iso88592': 'hu_HU.ISO8859-2',
  990.     'hungarian': 'hu_HU.ISO8859-2',
  991.     'icelandic': 'is_IS.ISO8859-1',
  992.     'icelandic.iso88591': 'is_IS.ISO8859-1',
  993.     'id': 'id_ID.ISO8859-1',
  994.     'id_id': 'id_ID.ISO8859-1',
  995.     'in': 'id_ID.ISO8859-1',
  996.     'in_id': 'id_ID.ISO8859-1',
  997.     'is': 'is_IS.ISO8859-1',
  998.     'is_is': 'is_IS.ISO8859-1',
  999.     'is_is.iso88591': 'is_IS.ISO8859-1',
  1000.     'is_is.iso885915': 'is_IS.ISO8859-15',
  1001.     'is_is@euro': 'is_IS.ISO8859-15',
  1002.     'iso-8859-1': 'en_US.ISO8859-1',
  1003.     'iso-8859-15': 'en_US.ISO8859-15',
  1004.     'iso8859-1': 'en_US.ISO8859-1',
  1005.     'iso8859-15': 'en_US.ISO8859-15',
  1006.     'iso_8859_1': 'en_US.ISO8859-1',
  1007.     'iso_8859_15': 'en_US.ISO8859-15',
  1008.     'it': 'it_IT.ISO8859-1',
  1009.     'it.iso885915': 'it_IT.ISO8859-15',
  1010.     'it_ch': 'it_CH.ISO8859-1',
  1011.     'it_ch.iso88591': 'it_CH.ISO8859-1',
  1012.     'it_ch.iso885915': 'it_CH.ISO8859-15',
  1013.     'it_ch@euro': 'it_CH.ISO8859-15',
  1014.     'it_it': 'it_IT.ISO8859-1',
  1015.     'it_it.88591': 'it_IT.ISO8859-1',
  1016.     'it_it.iso88591': 'it_IT.ISO8859-1',
  1017.     'it_it.iso885915': 'it_IT.ISO8859-15',
  1018.     'it_it.iso885915@euro': 'it_IT.ISO8859-15',
  1019.     'it_it.utf8@euro': 'it_IT.UTF-8',
  1020.     'it_it@euro': 'it_IT.ISO8859-15',
  1021.     'italian': 'it_IT.ISO8859-1',
  1022.     'italian.iso88591': 'it_IT.ISO8859-1',
  1023.     'iu': 'iu_CA.NUNACOM-8',
  1024.     'iu_ca': 'iu_CA.NUNACOM-8',
  1025.     'iu_ca.nunacom8': 'iu_CA.NUNACOM-8',
  1026.     'iw': 'he_IL.ISO8859-8',
  1027.     'iw_il': 'he_IL.ISO8859-8',
  1028.     'iw_il.iso88598': 'he_IL.ISO8859-8',
  1029.     'ja': 'ja_JP.eucJP',
  1030.     'ja.jis': 'ja_JP.JIS7',
  1031.     'ja.sjis': 'ja_JP.SJIS',
  1032.     'ja_jp': 'ja_JP.eucJP',
  1033.     'ja_jp.ajec': 'ja_JP.eucJP',
  1034.     'ja_jp.euc': 'ja_JP.eucJP',
  1035.     'ja_jp.eucjp': 'ja_JP.eucJP',
  1036.     'ja_jp.iso-2022-jp': 'ja_JP.JIS7',
  1037.     'ja_jp.iso2022jp': 'ja_JP.JIS7',
  1038.     'ja_jp.jis': 'ja_JP.JIS7',
  1039.     'ja_jp.jis7': 'ja_JP.JIS7',
  1040.     'ja_jp.mscode': 'ja_JP.SJIS',
  1041.     'ja_jp.pck': 'ja_JP.SJIS',
  1042.     'ja_jp.sjis': 'ja_JP.SJIS',
  1043.     'ja_jp.ujis': 'ja_JP.eucJP',
  1044.     'japan': 'ja_JP.eucJP',
  1045.     'japanese': 'ja_JP.eucJP',
  1046.     'japanese-euc': 'ja_JP.eucJP',
  1047.     'japanese.euc': 'ja_JP.eucJP',
  1048.     'japanese.sjis': 'ja_JP.SJIS',
  1049.     'jp_jp': 'ja_JP.eucJP',
  1050.     'ka': 'ka_GE.GEORGIAN-ACADEMY',
  1051.     'ka_ge': 'ka_GE.GEORGIAN-ACADEMY',
  1052.     'ka_ge.georgianacademy': 'ka_GE.GEORGIAN-ACADEMY',
  1053.     'ka_ge.georgianps': 'ka_GE.GEORGIAN-PS',
  1054.     'ka_ge.georgianrs': 'ka_GE.GEORGIAN-ACADEMY',
  1055.     'kl': 'kl_GL.ISO8859-1',
  1056.     'kl_gl': 'kl_GL.ISO8859-1',
  1057.     'kl_gl.iso88591': 'kl_GL.ISO8859-1',
  1058.     'kl_gl.iso885915': 'kl_GL.ISO8859-15',
  1059.     'kl_gl@euro': 'kl_GL.ISO8859-15',
  1060.     'km_kh': 'km_KH.UTF-8',
  1061.     'kn': 'kn_IN.UTF-8',
  1062.     'kn_in': 'kn_IN.UTF-8',
  1063.     'ko': 'ko_KR.eucKR',
  1064.     'ko_kr': 'ko_KR.eucKR',
  1065.     'ko_kr.euc': 'ko_KR.eucKR',
  1066.     'ko_kr.euckr': 'ko_KR.eucKR',
  1067.     'korean': 'ko_KR.eucKR',
  1068.     'korean.euc': 'ko_KR.eucKR',
  1069.     'ks': 'ks_IN.UTF-8',
  1070.     'ks_in@devanagari': 'ks_IN@devanagari.UTF-8',
  1071.     'kw': 'kw_GB.ISO8859-1',
  1072.     'kw_gb': 'kw_GB.ISO8859-1',
  1073.     'kw_gb.iso88591': 'kw_GB.ISO8859-1',
  1074.     'kw_gb.iso885914': 'kw_GB.ISO8859-14',
  1075.     'kw_gb.iso885915': 'kw_GB.ISO8859-15',
  1076.     'kw_gb@euro': 'kw_GB.ISO8859-15',
  1077.     'ky': 'ky_KG.UTF-8',
  1078.     'ky_kg': 'ky_KG.UTF-8',
  1079.     'lithuanian': 'lt_LT.ISO8859-13',
  1080.     'lo': 'lo_LA.MULELAO-1',
  1081.     'lo_la': 'lo_LA.MULELAO-1',
  1082.     'lo_la.cp1133': 'lo_LA.IBM-CP1133',
  1083.     'lo_la.ibmcp1133': 'lo_LA.IBM-CP1133',
  1084.     'lo_la.mulelao1': 'lo_LA.MULELAO-1',
  1085.     'lt': 'lt_LT.ISO8859-13',
  1086.     'lt_lt': 'lt_LT.ISO8859-13',
  1087.     'lt_lt.iso885913': 'lt_LT.ISO8859-13',
  1088.     'lt_lt.iso88594': 'lt_LT.ISO8859-4',
  1089.     'lv': 'lv_LV.ISO8859-13',
  1090.     'lv_lv': 'lv_LV.ISO8859-13',
  1091.     'lv_lv.iso885913': 'lv_LV.ISO8859-13',
  1092.     'lv_lv.iso88594': 'lv_LV.ISO8859-4',
  1093.     'mai': 'mai_IN.UTF-8',
  1094.     'mi': 'mi_NZ.ISO8859-1',
  1095.     'mi_nz': 'mi_NZ.ISO8859-1',
  1096.     'mi_nz.iso88591': 'mi_NZ.ISO8859-1',
  1097.     'mk': 'mk_MK.ISO8859-5',
  1098.     'mk_mk': 'mk_MK.ISO8859-5',
  1099.     'mk_mk.cp1251': 'mk_MK.CP1251',
  1100.     'mk_mk.iso88595': 'mk_MK.ISO8859-5',
  1101.     'mk_mk.microsoftcp1251': 'mk_MK.CP1251',
  1102.     'ml': 'ml_IN.UTF-8',
  1103.     'mr': 'mr_IN.UTF-8',
  1104.     'mr_in': 'mr_IN.UTF-8',
  1105.     'ms': 'ms_MY.ISO8859-1',
  1106.     'ms_my': 'ms_MY.ISO8859-1',
  1107.     'ms_my.iso88591': 'ms_MY.ISO8859-1',
  1108.     'mt': 'mt_MT.ISO8859-3',
  1109.     'mt_mt': 'mt_MT.ISO8859-3',
  1110.     'mt_mt.iso88593': 'mt_MT.ISO8859-3',
  1111.     'nb': 'nb_NO.ISO8859-1',
  1112.     'nb_no': 'nb_NO.ISO8859-1',
  1113.     'nb_no.88591': 'nb_NO.ISO8859-1',
  1114.     'nb_no.iso88591': 'nb_NO.ISO8859-1',
  1115.     'nb_no.iso885915': 'nb_NO.ISO8859-15',
  1116.     'nb_no@euro': 'nb_NO.ISO8859-15',
  1117.     'nl': 'nl_NL.ISO8859-1',
  1118.     'nl.iso885915': 'nl_NL.ISO8859-15',
  1119.     'nl_be': 'nl_BE.ISO8859-1',
  1120.     'nl_be.88591': 'nl_BE.ISO8859-1',
  1121.     'nl_be.iso88591': 'nl_BE.ISO8859-1',
  1122.     'nl_be.iso885915': 'nl_BE.ISO8859-15',
  1123.     'nl_be.iso885915@euro': 'nl_BE.ISO8859-15',
  1124.     'nl_be.utf8@euro': 'nl_BE.UTF-8',
  1125.     'nl_be@euro': 'nl_BE.ISO8859-15',
  1126.     'nl_nl': 'nl_NL.ISO8859-1',
  1127.     'nl_nl.88591': 'nl_NL.ISO8859-1',
  1128.     'nl_nl.iso88591': 'nl_NL.ISO8859-1',
  1129.     'nl_nl.iso885915': 'nl_NL.ISO8859-15',
  1130.     'nl_nl.iso885915@euro': 'nl_NL.ISO8859-15',
  1131.     'nl_nl.utf8@euro': 'nl_NL.UTF-8',
  1132.     'nl_nl@euro': 'nl_NL.ISO8859-15',
  1133.     'nn': 'nn_NO.ISO8859-1',
  1134.     'nn_no': 'nn_NO.ISO8859-1',
  1135.     'nn_no.88591': 'nn_NO.ISO8859-1',
  1136.     'nn_no.iso88591': 'nn_NO.ISO8859-1',
  1137.     'nn_no.iso885915': 'nn_NO.ISO8859-15',
  1138.     'nn_no@euro': 'nn_NO.ISO8859-15',
  1139.     'no': 'no_NO.ISO8859-1',
  1140.     'no@nynorsk': 'ny_NO.ISO8859-1',
  1141.     'no_no': 'no_NO.ISO8859-1',
  1142.     'no_no.88591': 'no_NO.ISO8859-1',
  1143.     'no_no.iso88591': 'no_NO.ISO8859-1',
  1144.     'no_no.iso885915': 'no_NO.ISO8859-15',
  1145.     'no_no.iso88591@bokmal': 'no_NO.ISO8859-1',
  1146.     'no_no.iso88591@nynorsk': 'no_NO.ISO8859-1',
  1147.     'no_no@euro': 'no_NO.ISO8859-15',
  1148.     'norwegian': 'no_NO.ISO8859-1',
  1149.     'norwegian.iso88591': 'no_NO.ISO8859-1',
  1150.     'nr': 'nr_ZA.ISO8859-1',
  1151.     'nr_za': 'nr_ZA.ISO8859-1',
  1152.     'nr_za.iso88591': 'nr_ZA.ISO8859-1',
  1153.     'nso': 'nso_ZA.ISO8859-15',
  1154.     'nso_za': 'nso_ZA.ISO8859-15',
  1155.     'nso_za.iso885915': 'nso_ZA.ISO8859-15',
  1156.     'ny': 'ny_NO.ISO8859-1',
  1157.     'ny_no': 'ny_NO.ISO8859-1',
  1158.     'ny_no.88591': 'ny_NO.ISO8859-1',
  1159.     'ny_no.iso88591': 'ny_NO.ISO8859-1',
  1160.     'ny_no.iso885915': 'ny_NO.ISO8859-15',
  1161.     'ny_no@euro': 'ny_NO.ISO8859-15',
  1162.     'nynorsk': 'nn_NO.ISO8859-1',
  1163.     'oc': 'oc_FR.ISO8859-1',
  1164.     'oc_fr': 'oc_FR.ISO8859-1',
  1165.     'oc_fr.iso88591': 'oc_FR.ISO8859-1',
  1166.     'oc_fr.iso885915': 'oc_FR.ISO8859-15',
  1167.     'oc_fr@euro': 'oc_FR.ISO8859-15',
  1168.     'or': 'or_IN.UTF-8',
  1169.     'pa': 'pa_IN.UTF-8',
  1170.     'pa_in': 'pa_IN.UTF-8',
  1171.     'pd': 'pd_US.ISO8859-1',
  1172.     'pd_de': 'pd_DE.ISO8859-1',
  1173.     'pd_de.iso88591': 'pd_DE.ISO8859-1',
  1174.     'pd_de.iso885915': 'pd_DE.ISO8859-15',
  1175.     'pd_de@euro': 'pd_DE.ISO8859-15',
  1176.     'pd_us': 'pd_US.ISO8859-1',
  1177.     'pd_us.iso88591': 'pd_US.ISO8859-1',
  1178.     'pd_us.iso885915': 'pd_US.ISO8859-15',
  1179.     'pd_us@euro': 'pd_US.ISO8859-15',
  1180.     'ph': 'ph_PH.ISO8859-1',
  1181.     'ph_ph': 'ph_PH.ISO8859-1',
  1182.     'ph_ph.iso88591': 'ph_PH.ISO8859-1',
  1183.     'pl': 'pl_PL.ISO8859-2',
  1184.     'pl_pl': 'pl_PL.ISO8859-2',
  1185.     'pl_pl.iso88592': 'pl_PL.ISO8859-2',
  1186.     'polish': 'pl_PL.ISO8859-2',
  1187.     'portuguese': 'pt_PT.ISO8859-1',
  1188.     'portuguese.iso88591': 'pt_PT.ISO8859-1',
  1189.     'portuguese_brazil': 'pt_BR.ISO8859-1',
  1190.     'portuguese_brazil.8859': 'pt_BR.ISO8859-1',
  1191.     'posix': 'C',
  1192.     'posix-utf2': 'C',
  1193.     'pp': 'pp_AN.ISO8859-1',
  1194.     'pp_an': 'pp_AN.ISO8859-1',
  1195.     'pp_an.iso88591': 'pp_AN.ISO8859-1',
  1196.     'pt': 'pt_PT.ISO8859-1',
  1197.     'pt.iso885915': 'pt_PT.ISO8859-15',
  1198.     'pt_br': 'pt_BR.ISO8859-1',
  1199.     'pt_br.88591': 'pt_BR.ISO8859-1',
  1200.     'pt_br.iso88591': 'pt_BR.ISO8859-1',
  1201.     'pt_br.iso885915': 'pt_BR.ISO8859-15',
  1202.     'pt_br@euro': 'pt_BR.ISO8859-15',
  1203.     'pt_pt': 'pt_PT.ISO8859-1',
  1204.     'pt_pt.88591': 'pt_PT.ISO8859-1',
  1205.     'pt_pt.iso88591': 'pt_PT.ISO8859-1',
  1206.     'pt_pt.iso885915': 'pt_PT.ISO8859-15',
  1207.     'pt_pt.iso885915@euro': 'pt_PT.ISO8859-15',
  1208.     'pt_pt.utf8@euro': 'pt_PT.UTF-8',
  1209.     'pt_pt@euro': 'pt_PT.ISO8859-15',
  1210.     'ro': 'ro_RO.ISO8859-2',
  1211.     'ro_ro': 'ro_RO.ISO8859-2',
  1212.     'ro_ro.iso88592': 'ro_RO.ISO8859-2',
  1213.     'romanian': 'ro_RO.ISO8859-2',
  1214.     'ru': 'ru_RU.UTF-8',
  1215.     'ru.koi8r': 'ru_RU.KOI8-R',
  1216.     'ru_ru': 'ru_RU.UTF-8',
  1217.     'ru_ru.cp1251': 'ru_RU.CP1251',
  1218.     'ru_ru.iso88595': 'ru_RU.ISO8859-5',
  1219.     'ru_ru.koi8r': 'ru_RU.KOI8-R',
  1220.     'ru_ru.microsoftcp1251': 'ru_RU.CP1251',
  1221.     'ru_ua': 'ru_UA.KOI8-U',
  1222.     'ru_ua.cp1251': 'ru_UA.CP1251',
  1223.     'ru_ua.koi8u': 'ru_UA.KOI8-U',
  1224.     'ru_ua.microsoftcp1251': 'ru_UA.CP1251',
  1225.     'rumanian': 'ro_RO.ISO8859-2',
  1226.     'russian': 'ru_RU.ISO8859-5',
  1227.     'rw': 'rw_RW.ISO8859-1',
  1228.     'rw_rw': 'rw_RW.ISO8859-1',
  1229.     'rw_rw.iso88591': 'rw_RW.ISO8859-1',
  1230.     'sd': 'sd_IN@devanagari.UTF-8',
  1231.     'se_no': 'se_NO.UTF-8',
  1232.     'serbocroatian': 'sr_RS.UTF-8@latin',
  1233.     'sh': 'sr_RS.UTF-8@latin',
  1234.     'sh_ba.iso88592@bosnia': 'sr_CS.ISO8859-2',
  1235.     'sh_hr': 'sh_HR.ISO8859-2',
  1236.     'sh_hr.iso88592': 'hr_HR.ISO8859-2',
  1237.     'sh_sp': 'sr_CS.ISO8859-2',
  1238.     'sh_yu': 'sr_RS.UTF-8@latin',
  1239.     'si': 'si_LK.UTF-8',
  1240.     'si_lk': 'si_LK.UTF-8',
  1241.     'sinhala': 'si_LK.UTF-8',
  1242.     'sk': 'sk_SK.ISO8859-2',
  1243.     'sk_sk': 'sk_SK.ISO8859-2',
  1244.     'sk_sk.iso88592': 'sk_SK.ISO8859-2',
  1245.     'sl': 'sl_SI.ISO8859-2',
  1246.     'sl_cs': 'sl_CS.ISO8859-2',
  1247.     'sl_si': 'sl_SI.ISO8859-2',
  1248.     'sl_si.iso88592': 'sl_SI.ISO8859-2',
  1249.     'slovak': 'sk_SK.ISO8859-2',
  1250.     'slovene': 'sl_SI.ISO8859-2',
  1251.     'slovenian': 'sl_SI.ISO8859-2',
  1252.     'sp': 'sr_CS.ISO8859-5',
  1253.     'sp_yu': 'sr_CS.ISO8859-5',
  1254.     'spanish': 'es_ES.ISO8859-1',
  1255.     'spanish.iso88591': 'es_ES.ISO8859-1',
  1256.     'spanish_spain': 'es_ES.ISO8859-1',
  1257.     'spanish_spain.8859': 'es_ES.ISO8859-1',
  1258.     'sq': 'sq_AL.ISO8859-2',
  1259.     'sq_al': 'sq_AL.ISO8859-2',
  1260.     'sq_al.iso88592': 'sq_AL.ISO8859-2',
  1261.     'sr': 'sr_RS.UTF-8',
  1262.     'sr@cyrillic': 'sr_RS.UTF-8',
  1263.     'sr@latin': 'sr_RS.UTF-8@latin',
  1264.     'sr@latn': 'sr_RS.UTF-8@latin',
  1265.     'sr_cs': 'sr_RS.UTF-8',
  1266.     'sr_cs.iso88592': 'sr_CS.ISO8859-2',
  1267.     'sr_cs.iso88592@latn': 'sr_CS.ISO8859-2',
  1268.     'sr_cs.iso88595': 'sr_CS.ISO8859-5',
  1269.     'sr_cs.utf8@latn': 'sr_RS.UTF-8@latin',
  1270.     'sr_cs@latn': 'sr_RS.UTF-8@latin',
  1271.     'sr_me': 'sr_ME.UTF-8',
  1272.     'sr_rs': 'sr_RS.UTF-8',
  1273.     'sr_rs.utf8@latn': 'sr_RS.UTF-8@latin',
  1274.     'sr_rs@latin': 'sr_RS.UTF-8@latin',
  1275.     'sr_rs@latn': 'sr_RS.UTF-8@latin',
  1276.     'sr_sp': 'sr_CS.ISO8859-2',
  1277.     'sr_yu': 'sr_RS.UTF-8@latin',
  1278.     'sr_yu.cp1251@cyrillic': 'sr_CS.CP1251',
  1279.     'sr_yu.iso88592': 'sr_CS.ISO8859-2',
  1280.     'sr_yu.iso88595': 'sr_CS.ISO8859-5',
  1281.     'sr_yu.iso88595@cyrillic': 'sr_CS.ISO8859-5',
  1282.     'sr_yu.microsoftcp1251@cyrillic': 'sr_CS.CP1251',
  1283.     'sr_yu.utf8@cyrillic': 'sr_RS.UTF-8',
  1284.     'sr_yu@cyrillic': 'sr_RS.UTF-8',
  1285.     'ss': 'ss_ZA.ISO8859-1',
  1286.     'ss_za': 'ss_ZA.ISO8859-1',
  1287.     'ss_za.iso88591': 'ss_ZA.ISO8859-1',
  1288.     'st': 'st_ZA.ISO8859-1',
  1289.     'st_za': 'st_ZA.ISO8859-1',
  1290.     'st_za.iso88591': 'st_ZA.ISO8859-1',
  1291.     'sv': 'sv_SE.ISO8859-1',
  1292.     'sv.iso885915': 'sv_SE.ISO8859-15',
  1293.     'sv_fi': 'sv_FI.ISO8859-1',
  1294.     'sv_fi.iso88591': 'sv_FI.ISO8859-1',
  1295.     'sv_fi.iso885915': 'sv_FI.ISO8859-15',
  1296.     'sv_fi.iso885915@euro': 'sv_FI.ISO8859-15',
  1297.     'sv_fi.utf8@euro': 'sv_FI.UTF-8',
  1298.     'sv_fi@euro': 'sv_FI.ISO8859-15',
  1299.     'sv_se': 'sv_SE.ISO8859-1',
  1300.     'sv_se.88591': 'sv_SE.ISO8859-1',
  1301.     'sv_se.iso88591': 'sv_SE.ISO8859-1',
  1302.     'sv_se.iso885915': 'sv_SE.ISO8859-15',
  1303.     'sv_se@euro': 'sv_SE.ISO8859-15',
  1304.     'swedish': 'sv_SE.ISO8859-1',
  1305.     'swedish.iso88591': 'sv_SE.ISO8859-1',
  1306.     'ta': 'ta_IN.TSCII-0',
  1307.     'ta_in': 'ta_IN.TSCII-0',
  1308.     'ta_in.tscii': 'ta_IN.TSCII-0',
  1309.     'ta_in.tscii0': 'ta_IN.TSCII-0',
  1310.     'te': 'te_IN.UTF-8',
  1311.     'tg': 'tg_TJ.KOI8-C',
  1312.     'tg_tj': 'tg_TJ.KOI8-C',
  1313.     'tg_tj.koi8c': 'tg_TJ.KOI8-C',
  1314.     'th': 'th_TH.ISO8859-11',
  1315.     'th_th': 'th_TH.ISO8859-11',
  1316.     'th_th.iso885911': 'th_TH.ISO8859-11',
  1317.     'th_th.tactis': 'th_TH.TIS620',
  1318.     'th_th.tis620': 'th_TH.TIS620',
  1319.     'thai': 'th_TH.ISO8859-11',
  1320.     'tl': 'tl_PH.ISO8859-1',
  1321.     'tl_ph': 'tl_PH.ISO8859-1',
  1322.     'tl_ph.iso88591': 'tl_PH.ISO8859-1',
  1323.     'tn': 'tn_ZA.ISO8859-15',
  1324.     'tn_za': 'tn_ZA.ISO8859-15',
  1325.     'tn_za.iso885915': 'tn_ZA.ISO8859-15',
  1326.     'tr': 'tr_TR.ISO8859-9',
  1327.     'tr_tr': 'tr_TR.ISO8859-9',
  1328.     'tr_tr.iso88599': 'tr_TR.ISO8859-9',
  1329.     'ts': 'ts_ZA.ISO8859-1',
  1330.     'ts_za': 'ts_ZA.ISO8859-1',
  1331.     'ts_za.iso88591': 'ts_ZA.ISO8859-1',
  1332.     'tt': 'tt_RU.TATAR-CYR',
  1333.     'tt_ru': 'tt_RU.TATAR-CYR',
  1334.     'tt_ru.koi8c': 'tt_RU.KOI8-C',
  1335.     'tt_ru.tatarcyr': 'tt_RU.TATAR-CYR',
  1336.     'turkish': 'tr_TR.ISO8859-9',
  1337.     'turkish.iso88599': 'tr_TR.ISO8859-9',
  1338.     'uk': 'uk_UA.KOI8-U',
  1339.     'uk_ua': 'uk_UA.KOI8-U',
  1340.     'uk_ua.cp1251': 'uk_UA.CP1251',
  1341.     'uk_ua.iso88595': 'uk_UA.ISO8859-5',
  1342.     'uk_ua.koi8u': 'uk_UA.KOI8-U',
  1343.     'uk_ua.microsoftcp1251': 'uk_UA.CP1251',
  1344.     'univ': 'en_US.utf',
  1345.     'universal': 'en_US.utf',
  1346.     'universal.utf8@ucs4': 'en_US.UTF-8',
  1347.     'ur': 'ur_PK.CP1256',
  1348.     'ur_pk': 'ur_PK.CP1256',
  1349.     'ur_pk.cp1256': 'ur_PK.CP1256',
  1350.     'ur_pk.microsoftcp1256': 'ur_PK.CP1256',
  1351.     'uz': 'uz_UZ.UTF-8',
  1352.     'uz_uz': 'uz_UZ.UTF-8',
  1353.     'uz_uz.iso88591': 'uz_UZ.ISO8859-1',
  1354.     'uz_uz.utf8@cyrillic': 'uz_UZ.UTF-8',
  1355.     'uz_uz@cyrillic': 'uz_UZ.UTF-8',
  1356.     've': 've_ZA.UTF-8',
  1357.     've_za': 've_ZA.UTF-8',
  1358.     'vi': 'vi_VN.TCVN',
  1359.     'vi_vn': 'vi_VN.TCVN',
  1360.     'vi_vn.tcvn': 'vi_VN.TCVN',
  1361.     'vi_vn.tcvn5712': 'vi_VN.TCVN',
  1362.     'vi_vn.viscii': 'vi_VN.VISCII',
  1363.     'vi_vn.viscii111': 'vi_VN.VISCII',
  1364.     'wa': 'wa_BE.ISO8859-1',
  1365.     'wa_be': 'wa_BE.ISO8859-1',
  1366.     'wa_be.iso88591': 'wa_BE.ISO8859-1',
  1367.     'wa_be.iso885915': 'wa_BE.ISO8859-15',
  1368.     'wa_be.iso885915@euro': 'wa_BE.ISO8859-15',
  1369.     'wa_be@euro': 'wa_BE.ISO8859-15',
  1370.     'xh': 'xh_ZA.ISO8859-1',
  1371.     'xh_za': 'xh_ZA.ISO8859-1',
  1372.     'xh_za.iso88591': 'xh_ZA.ISO8859-1',
  1373.     'yi': 'yi_US.CP1255',
  1374.     'yi_us': 'yi_US.CP1255',
  1375.     'yi_us.cp1255': 'yi_US.CP1255',
  1376.     'yi_us.microsoftcp1255': 'yi_US.CP1255',
  1377.     'zh': 'zh_CN.eucCN',
  1378.     'zh_cn': 'zh_CN.gb2312',
  1379.     'zh_cn.big5': 'zh_TW.big5',
  1380.     'zh_cn.euc': 'zh_CN.eucCN',
  1381.     'zh_cn.gb18030': 'zh_CN.gb18030',
  1382.     'zh_cn.gb2312': 'zh_CN.gb2312',
  1383.     'zh_cn.gbk': 'zh_CN.gbk',
  1384.     'zh_hk': 'zh_HK.big5hkscs',
  1385.     'zh_hk.big5': 'zh_HK.big5',
  1386.     'zh_hk.big5hk': 'zh_HK.big5hkscs',
  1387.     'zh_hk.big5hkscs': 'zh_HK.big5hkscs',
  1388.     'zh_tw': 'zh_TW.big5',
  1389.     'zh_tw.big5': 'zh_TW.big5',
  1390.     'zh_tw.euc': 'zh_TW.eucTW',
  1391.     'zh_tw.euctw': 'zh_TW.eucTW',
  1392.     'zu': 'zu_ZA.ISO8859-1',
  1393.     'zu_za': 'zu_ZA.ISO8859-1',
  1394.     'zu_za.iso88591': 'zu_ZA.ISO8859-1' }
  1395. windows_locale = {
  1396.     1078: 'af_ZA',
  1397.     1052: 'sq_AL',
  1398.     1156: 'gsw_FR',
  1399.     1118: 'am_ET',
  1400.     1025: 'ar_SA',
  1401.     2049: 'ar_IQ',
  1402.     3073: 'ar_EG',
  1403.     4097: 'ar_LY',
  1404.     5121: 'ar_DZ',
  1405.     6145: 'ar_MA',
  1406.     7169: 'ar_TN',
  1407.     8193: 'ar_OM',
  1408.     9217: 'ar_YE',
  1409.     10241: 'ar_SY',
  1410.     11265: 'ar_JO',
  1411.     12289: 'ar_LB',
  1412.     13313: 'ar_KW',
  1413.     14337: 'ar_AE',
  1414.     15361: 'ar_BH',
  1415.     16385: 'ar_QA',
  1416.     1067: 'hy_AM',
  1417.     1101: 'as_IN',
  1418.     1068: 'az_AZ',
  1419.     2092: 'az_AZ',
  1420.     1133: 'ba_RU',
  1421.     1069: 'eu_ES',
  1422.     1059: 'be_BY',
  1423.     1093: 'bn_IN',
  1424.     8218: 'bs_BA',
  1425.     5146: 'bs_BA',
  1426.     1150: 'br_FR',
  1427.     1026: 'bg_BG',
  1428.     1027: 'ca_ES',
  1429.     4: 'zh_CHS',
  1430.     1028: 'zh_TW',
  1431.     2052: 'zh_CN',
  1432.     3076: 'zh_HK',
  1433.     4100: 'zh_SG',
  1434.     5124: 'zh_MO',
  1435.     31748: 'zh_CHT',
  1436.     1155: 'co_FR',
  1437.     1050: 'hr_HR',
  1438.     4122: 'hr_BA',
  1439.     1029: 'cs_CZ',
  1440.     1030: 'da_DK',
  1441.     1164: 'gbz_AF',
  1442.     1125: 'div_MV',
  1443.     1043: 'nl_NL',
  1444.     2067: 'nl_BE',
  1445.     1033: 'en_US',
  1446.     2057: 'en_GB',
  1447.     3081: 'en_AU',
  1448.     4105: 'en_CA',
  1449.     5129: 'en_NZ',
  1450.     6153: 'en_IE',
  1451.     7177: 'en_ZA',
  1452.     8201: 'en_JA',
  1453.     9225: 'en_CB',
  1454.     10249: 'en_BZ',
  1455.     11273: 'en_TT',
  1456.     12297: 'en_ZW',
  1457.     13321: 'en_PH',
  1458.     16393: 'en_IN',
  1459.     17417: 'en_MY',
  1460.     18441: 'en_IN',
  1461.     1061: 'et_EE',
  1462.     1080: 'fo_FO',
  1463.     1124: 'fil_PH',
  1464.     1035: 'fi_FI',
  1465.     1036: 'fr_FR',
  1466.     2060: 'fr_BE',
  1467.     3084: 'fr_CA',
  1468.     4108: 'fr_CH',
  1469.     5132: 'fr_LU',
  1470.     6156: 'fr_MC',
  1471.     1122: 'fy_NL',
  1472.     1110: 'gl_ES',
  1473.     1079: 'ka_GE',
  1474.     1031: 'de_DE',
  1475.     2055: 'de_CH',
  1476.     3079: 'de_AT',
  1477.     4103: 'de_LU',
  1478.     5127: 'de_LI',
  1479.     1032: 'el_GR',
  1480.     1135: 'kl_GL',
  1481.     1095: 'gu_IN',
  1482.     1128: 'ha_NG',
  1483.     1037: 'he_IL',
  1484.     1081: 'hi_IN',
  1485.     1038: 'hu_HU',
  1486.     1039: 'is_IS',
  1487.     1057: 'id_ID',
  1488.     1117: 'iu_CA',
  1489.     2141: 'iu_CA',
  1490.     2108: 'ga_IE',
  1491.     1040: 'it_IT',
  1492.     2064: 'it_CH',
  1493.     1041: 'ja_JP',
  1494.     1099: 'kn_IN',
  1495.     1087: 'kk_KZ',
  1496.     1107: 'kh_KH',
  1497.     1158: 'qut_GT',
  1498.     1159: 'rw_RW',
  1499.     1111: 'kok_IN',
  1500.     1042: 'ko_KR',
  1501.     1088: 'ky_KG',
  1502.     1108: 'lo_LA',
  1503.     1062: 'lv_LV',
  1504.     1063: 'lt_LT',
  1505.     2094: 'dsb_DE',
  1506.     1134: 'lb_LU',
  1507.     1071: 'mk_MK',
  1508.     1086: 'ms_MY',
  1509.     2110: 'ms_BN',
  1510.     1100: 'ml_IN',
  1511.     1082: 'mt_MT',
  1512.     1153: 'mi_NZ',
  1513.     1146: 'arn_CL',
  1514.     1102: 'mr_IN',
  1515.     1148: 'moh_CA',
  1516.     1104: 'mn_MN',
  1517.     2128: 'mn_CN',
  1518.     1121: 'ne_NP',
  1519.     1044: 'nb_NO',
  1520.     2068: 'nn_NO',
  1521.     1154: 'oc_FR',
  1522.     1096: 'or_IN',
  1523.     1123: 'ps_AF',
  1524.     1065: 'fa_IR',
  1525.     1045: 'pl_PL',
  1526.     1046: 'pt_BR',
  1527.     2070: 'pt_PT',
  1528.     1094: 'pa_IN',
  1529.     1131: 'quz_BO',
  1530.     2155: 'quz_EC',
  1531.     3179: 'quz_PE',
  1532.     1048: 'ro_RO',
  1533.     1047: 'rm_CH',
  1534.     1049: 'ru_RU',
  1535.     9275: 'smn_FI',
  1536.     4155: 'smj_NO',
  1537.     5179: 'smj_SE',
  1538.     1083: 'se_NO',
  1539.     2107: 'se_SE',
  1540.     3131: 'se_FI',
  1541.     8251: 'sms_FI',
  1542.     6203: 'sma_NO',
  1543.     7227: 'sma_SE',
  1544.     1103: 'sa_IN',
  1545.     3098: 'sr_SP',
  1546.     7194: 'sr_BA',
  1547.     2074: 'sr_SP',
  1548.     6170: 'sr_BA',
  1549.     1115: 'si_LK',
  1550.     1132: 'ns_ZA',
  1551.     1074: 'tn_ZA',
  1552.     1051: 'sk_SK',
  1553.     1060: 'sl_SI',
  1554.     1034: 'es_ES',
  1555.     2058: 'es_MX',
  1556.     3082: 'es_ES',
  1557.     4106: 'es_GT',
  1558.     5130: 'es_CR',
  1559.     6154: 'es_PA',
  1560.     7178: 'es_DO',
  1561.     8202: 'es_VE',
  1562.     9226: 'es_CO',
  1563.     10250: 'es_PE',
  1564.     11274: 'es_AR',
  1565.     12298: 'es_EC',
  1566.     13322: 'es_CL',
  1567.     14346: 'es_UR',
  1568.     15370: 'es_PY',
  1569.     16394: 'es_BO',
  1570.     17418: 'es_SV',
  1571.     18442: 'es_HN',
  1572.     19466: 'es_NI',
  1573.     20490: 'es_PR',
  1574.     21514: 'es_US',
  1575.     1089: 'sw_KE',
  1576.     1053: 'sv_SE',
  1577.     2077: 'sv_FI',
  1578.     1114: 'syr_SY',
  1579.     1064: 'tg_TJ',
  1580.     2143: 'tmz_DZ',
  1581.     1097: 'ta_IN',
  1582.     1092: 'tt_RU',
  1583.     1098: 'te_IN',
  1584.     1054: 'th_TH',
  1585.     2129: 'bo_BT',
  1586.     1105: 'bo_CN',
  1587.     1055: 'tr_TR',
  1588.     1090: 'tk_TM',
  1589.     1152: 'ug_CN',
  1590.     1058: 'uk_UA',
  1591.     1070: 'wen_DE',
  1592.     1056: 'ur_PK',
  1593.     2080: 'ur_IN',
  1594.     1091: 'uz_UZ',
  1595.     2115: 'uz_UZ',
  1596.     1066: 'vi_VN',
  1597.     1106: 'cy_GB',
  1598.     1160: 'wo_SN',
  1599.     1076: 'xh_ZA',
  1600.     1157: 'sah_RU',
  1601.     1144: 'ii_CN',
  1602.     1130: 'yo_NG',
  1603.     1077: 'zu_ZA' }
  1604.  
  1605. def _print_locale():
  1606.     ''' Test function.
  1607.     '''
  1608.     categories = { }
  1609.     
  1610.     def _init_categories(categories = categories):
  1611.         for k, v in globals().items():
  1612.             if k[:3] == 'LC_':
  1613.                 categories[k] = v
  1614.                 continue
  1615.  
  1616.     _init_categories()
  1617.     del categories['LC_ALL']
  1618.     print 'Locale defaults as determined by getdefaultlocale():'
  1619.     print '-' * 72
  1620.     (lang, enc) = getdefaultlocale()
  1621.     print 'Language: ',
  1622.     if not lang:
  1623.         pass
  1624.     print '(undefined)'
  1625.     print 'Encoding: ',
  1626.     if not enc:
  1627.         pass
  1628.     print '(undefined)'
  1629.     print 
  1630.     print 'Locale settings on startup:'
  1631.     print '-' * 72
  1632.     for name, category in categories.items():
  1633.         print name, '...'
  1634.         (lang, enc) = getlocale(category)
  1635.         print '   Language: ',
  1636.         if not lang:
  1637.             pass
  1638.         print '(undefined)'
  1639.         print '   Encoding: ',
  1640.         if not enc:
  1641.             pass
  1642.         print '(undefined)'
  1643.         print 
  1644.     
  1645.     print 
  1646.     print 'Locale settings after calling resetlocale():'
  1647.     print '-' * 72
  1648.     resetlocale()
  1649.     for name, category in categories.items():
  1650.         print name, '...'
  1651.         (lang, enc) = getlocale(category)
  1652.         print '   Language: ',
  1653.         if not lang:
  1654.             pass
  1655.         print '(undefined)'
  1656.         print '   Encoding: ',
  1657.         if not enc:
  1658.             pass
  1659.         print '(undefined)'
  1660.         print 
  1661.     
  1662.     
  1663.     try:
  1664.         setlocale(LC_ALL, '')
  1665.     except:
  1666.         print 'NOTE:'
  1667.         print 'setlocale(LC_ALL, "") does not support the default locale'
  1668.         print 'given in the OS environment variables.'
  1669.  
  1670.     print 
  1671.     print 'Locale settings after calling setlocale(LC_ALL, ""):'
  1672.     print '-' * 72
  1673.     for name, category in categories.items():
  1674.         print name, '...'
  1675.         (lang, enc) = getlocale(category)
  1676.         print '   Language: ',
  1677.         if not lang:
  1678.             pass
  1679.         print '(undefined)'
  1680.         print '   Encoding: ',
  1681.         if not enc:
  1682.             pass
  1683.         print '(undefined)'
  1684.         print 
  1685.     
  1686.  
  1687.  
  1688. try:
  1689.     LC_MESSAGES
  1690. except NameError:
  1691.     pass
  1692.  
  1693. __all__.append('LC_MESSAGES')
  1694. if __name__ == '__main__':
  1695.     print 'Locale aliasing:'
  1696.     print 
  1697.     _print_locale()
  1698.     print 
  1699.     print 'Number formatting:'
  1700.     print 
  1701.     _test()
  1702.