diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 75935df0e1..f985302ce7 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -136,6 +136,7 @@ LANGUAGES = [ ('udm', gettext_noop('Udmurt')), ('uk', gettext_noop('Ukrainian')), ('ur', gettext_noop('Urdu')), + ('uz', gettext_noop('Uzbek')), ('vi', gettext_noop('Vietnamese')), ('zh-hans', gettext_noop('Simplified Chinese')), ('zh-hant', gettext_noop('Traditional Chinese')), diff --git a/django/conf/locale/__init__.py b/django/conf/locale/__init__.py index 051738c9d3..6af72b6c33 100644 --- a/django/conf/locale/__init__.py +++ b/django/conf/locale/__init__.py @@ -536,6 +536,12 @@ LANG_INFO = { 'name': 'Urdu', 'name_local': 'اردو', }, + 'uz': { + 'bidi': False, + 'code': 'uz', + 'name': 'Uzbek', + 'name_local': 'oʻzbek tili', + }, 'vi': { 'bidi': False, 'code': 'vi', diff --git a/django/conf/locale/en/LC_MESSAGES/django.po b/django/conf/locale/en/LC_MESSAGES/django.po index 074432bc2e..a980f47b45 100644 --- a/django/conf/locale/en/LC_MESSAGES/django.po +++ b/django/conf/locale/en/LC_MESSAGES/django.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-08 17:27+0200\n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" "PO-Revision-Date: 2010-05-13 15:35+0200\n" "Last-Translator: Django team\n" "Language-Team: English \n" @@ -362,6 +362,10 @@ msgstr "" msgid "Urdu" msgstr "" +#: conf/global_settings.py:139 +msgid "Uzbek" +msgstr "" + #: conf/global_settings.py:139 msgid "Vietnamese" msgstr "" diff --git a/docs/releases/3.0.txt b/docs/releases/3.0.txt index 1738d83e6a..801be32b54 100644 --- a/docs/releases/3.0.txt +++ b/docs/releases/3.0.txt @@ -219,6 +219,8 @@ Internationalization language cookies. The default values of these settings preserve the previous behavior. +* Added support and translations for the Uzbek language. + Logging ~~~~~~~