Add Chinese as a selectable language

This commit is contained in:
Raphael Michel
2019-03-28 17:06:13 +01:00
parent 2420d884fc
commit 598693fab2

View File

@@ -395,12 +395,15 @@ ALL_LANGUAGES = [
('pt-br', _('Portuguese (Brazil)')), ('pt-br', _('Portuguese (Brazil)')),
('es', _('Spanish')), ('es', _('Spanish')),
('tr', _('Turkish')), ('tr', _('Turkish')),
('pl', _('Polish')),
('it', _('Italian')),
('zh-hans', _('Chinese (simplified)')),
] ]
LANGUAGES_OFFICIAL = { LANGUAGES_OFFICIAL = {
'en', 'de', 'de-informal' 'en', 'de', 'de-informal'
} }
LANGUAGES_INCUBATING = { LANGUAGES_INCUBATING = {
'pt-br', 'da' 'pt-br', 'da', 'pl', 'it'
} }
if DEBUG: if DEBUG: