electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit b29038073dba9bc6d742bf02f600ce5e7b71c90c
parent 821a9f14ddccaf2dfde8402e6f57cb024db6fa22
Author: ThomasV <thomasv@gitorious>
Date:   Tue, 24 Feb 2015 19:32:59 +0100

add new languages to i18n

Diffstat:
Mlib/i18n.py | 16++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/lib/i18n.py b/lib/i18n.py @@ -33,21 +33,33 @@ def set_language(x): languages = { '':_('Default'), - 'pt_PT':_('Portuguese'), - 'pt_BR':_('Brasilian'), + 'ar_SA':_('Arabic'), 'cs_CZ':_('Czech'), + 'da_DK':_('Danish'), 'de_DE':_('German'), 'eo_UY':_('Esperanto'), + 'el_GR':_('Greek'), 'en_UK':_('English'), 'es_ES':_('Spanish'), 'fr_FR':_('French'), + 'hu_HU':_('Hungarian'), + 'hy_AM':_('Armenian'), + 'id_ID':_('Indonesian'), 'it_IT':_('Italian'), 'ja_JP':_('Japanese'), + 'ky_KG':_('Kyrgyz'), 'lv_LV':_('Latvian'), 'nl_NL':_('Dutch'), + 'no_NO':_('Norwegian'), + 'pl_PL':_('Polish'), + 'pt_BR':_('Brasilian'), + 'pt_PT':_('Portuguese'), + 'ro_RO':_('Romanian'), 'ru_RU':_('Russian'), + 'sk_SK':_('Slovak'), 'sl_SI':_('Slovenian'), 'ta_IN':_('Tamil'), + 'th_TH':_('Thai'), 'vi_VN':_('Vietnamese'), 'zh_CN':_('Chinese') }