Issue #20076: Added non derived UTF-8 aliases to locale aliases table.

The makelocalealias.py script no longer ignores UTF-8 mapping.
This commit is contained in:
Serhiy Storchaka 2014-10-02 00:11:21 +03:00
commit c383ad8d9c
3 changed files with 13 additions and 4 deletions

View file

@ -45,10 +45,6 @@ def parse(filename):
encoding = encoding.replace('-', '')
encoding = encoding.replace('_', '')
locale = lang + '.' + encoding
if encoding.lower() == 'utf8':
# Ignore UTF-8 mappings - this encoding should be
# available for all locales
continue
data[locale] = alias
return data