[2.0.x] Fixed #29213 -- Fixed autocomplete widget's translations for zh-hans/zh-hant.
Backport of e17088a108
from master
This commit is contained in:
parent
172e5132ba
commit
59f39ccad8
|
@ -390,8 +390,9 @@ SELECT2_TRANSLATIONS = {x.lower(): x for x in [
|
|||
'eu', 'fa', 'fi', 'fr', 'gl', 'he', 'hi', 'hr', 'hu', 'id', 'is',
|
||||
'it', 'ja', 'km', 'ko', 'lt', 'lv', 'mk', 'ms', 'nb', 'nl', 'pl',
|
||||
'pt-BR', 'pt', 'ro', 'ru', 'sk', 'sr-Cyrl', 'sr', 'sv', 'th',
|
||||
'tr', 'uk', 'vi', 'zh-CN', 'zh-TW',
|
||||
'tr', 'uk', 'vi',
|
||||
]}
|
||||
SELECT2_TRANSLATIONS.update({'zh-hans': 'zh-CN', 'zh-hant': 'zh-TW'})
|
||||
|
||||
|
||||
class AutocompleteMixin:
|
||||
|
|
|
@ -11,3 +11,6 @@ Bugfixes
|
|||
|
||||
* Fixed a crash when filtering with an ``Exists()`` annotation of a queryset
|
||||
containing a single field (:ticket:`29195`).
|
||||
|
||||
* Fixed admin autocomplete widget's translations for `zh-hans` and `zh-hant`
|
||||
languages (:ticket:`29213`).
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue