Replace the language selection 'Brazilian' with 'Portuguese (Brazilian). Fixes #7693

This commit is contained in:
Akshay Joshi 2022-09-12 14:51:18 +05:30
parent 1bff94d0ea
commit 703cefd9ae
4 changed files with 2 additions and 1 deletions

View File

@ -35,3 +35,4 @@ Bug fixes
| `Issue #7649 <https://redmine.postgresql.org/issues/7649>`_ - Fixed an issue with the non-visibility of columns added prior to import/export data. | `Issue #7649 <https://redmine.postgresql.org/issues/7649>`_ - Fixed an issue with the non-visibility of columns added prior to import/export data.
| `Issue #7656 <https://redmine.postgresql.org/issues/7656>`_ - Fixed an issue where textarea of the JSON Editor does not resize with dialog. | `Issue #7656 <https://redmine.postgresql.org/issues/7656>`_ - Fixed an issue where textarea of the JSON Editor does not resize with dialog.
| `Issue #7663 <https://redmine.postgresql.org/issues/7663>`_ - Fixed ModuleNotFoundError when running setup.py to load/dump servers. | `Issue #7663 <https://redmine.postgresql.org/issues/7663>`_ - Fixed ModuleNotFoundError when running setup.py to load/dump servers.
| `Issue #7693 <https://redmine.postgresql.org/issues/7693>`_ - Replace the language selection 'Brazilian' with 'Portuguese (Brazilian).

View File

@ -74,7 +74,6 @@ HELP_PATH = '../../../docs/en_US/_build/html/'
# Languages we support in the UI # Languages we support in the UI
LANGUAGES = { LANGUAGES = {
'en': 'English', 'en': 'English',
'br': 'Brazilian',
'zh': 'Chinese (Simplified)', 'zh': 'Chinese (Simplified)',
'cs': 'Czech', 'cs': 'Czech',
'fr': 'French', 'fr': 'French',
@ -83,6 +82,7 @@ LANGUAGES = {
'ja': 'Japanese', 'ja': 'Japanese',
'ko': 'Korean', 'ko': 'Korean',
'pl': 'Polish', 'pl': 'Polish',
'pt_BR': 'Portuguese (Brazilian)',
'ru': 'Russian', 'ru': 'Russian',
'es': 'Spanish', 'es': 'Spanish',
} }