Add partial (30%) Icelandic support

This commit is contained in:
Sveinn í Felli 2015-02-13 15:29:58 +01:00 committed by Jérôme Rapinat
parent 2fd3e42e91
commit 240252292d
3 changed files with 31821 additions and 1 deletions

View File

@ -86,6 +86,7 @@ _LOCALE_NAMES = {
'he': ('Hebrew_Israel', '1255', _("Hebrew")), 'he': ('Hebrew_Israel', '1255', _("Hebrew")),
'hr': ('Croatian_Croatia', '1250', _("Croatian")), 'hr': ('Croatian_Croatia', '1250', _("Croatian")),
'hu': ('Hungarian_Hungary', '1250', _("Hungarian")), 'hu': ('Hungarian_Hungary', '1250', _("Hungarian")),
'is': ('Icelandic', '1252', _("Icelandic")),
'it': ('Italian_Italy', '1252', _("Italian")), 'it': ('Italian_Italy', '1252', _("Italian")),
'ja': ('Japanese_Japan', '932', _("Japanese")), 'ja': ('Japanese_Japan', '932', _("Japanese")),
'lt': ('Lithuanian_Lithuania', '1252', _("Lithuanian")), 'lt': ('Lithuanian_Lithuania', '1252', _("Lithuanian")),

31819
po/is.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -52,7 +52,7 @@ import unittest
# this list MUST be a subset of _LOCALE_NAMES in gen/utils/grampslocale.py # this list MUST be a subset of _LOCALE_NAMES in gen/utils/grampslocale.py
# (that is, if you add a new language here, be sure it's in _LOCALE_NAMES too) # (that is, if you add a new language here, be sure it's in _LOCALE_NAMES too)
ALL_LINGUAS = ('ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en_GB', ALL_LINGUAS = ('ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en_GB',
'eo', 'es', 'fi', 'fr', 'he', 'hr', 'hu', 'it', 'eo', 'es', 'fi', 'fr', 'he', 'hr', 'hu', 'is', 'it',
'ja', 'lt', 'nb', 'nl', 'nn', 'pl', 'pt_BR', 'pt_PT', 'ja', 'lt', 'nb', 'nl', 'nn', 'pl', 'pt_BR', 'pt_PT',
'ru', 'sk', 'sl', 'sq', 'sr', 'sv', 'tr', 'uk', 'vi', 'ru', 'sk', 'sl', 'sq', 'sr', 'sv', 'tr', 'uk', 'vi',
'zh_CN', 'zh_TW') 'zh_CN', 'zh_TW')