1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Fixed #29213 -- Fixed autocomplete widget's translations for zh-hans/zh-hant.

This commit is contained in:
dzhuang
2018-03-13 00:50:43 +08:00
committed by Tim Graham
parent 4ab027b944
commit e17088a108
3 changed files with 7 additions and 2 deletions

View File

@@ -120,7 +120,8 @@ class AutocompleteMixinTests(TestCase):
('00', None),
# Language files are case sensitive.
('sr-cyrl', 'sr-Cyrl'),
('zh-cn', 'zh-CN'),
('zh-hans', 'zh-CN'),
('zh-hant', 'zh-TW'),
)
for lang, select_lang in languages:
with self.subTest(lang=lang):