Skip to content

Commit 12524f3

Browse files
committed
🌐(i18n) remove chinese language
We're going to make languages ​​configurable per instance, but until we manage that, we're going to remove Chinese from the default language list. - Remove the chinese language from the default language list. - Change Spanish to Español
1 parent f8a40cf commit 12524f3

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/backend/core/tests/test_api_config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ def test_api_config(is_authenticated):
5050
["fr-fr", "Français"],
5151
["de-de", "Deutsch"],
5252
["nl-nl", "Nederlands"],
53-
["es-es", "Spanish"],
54-
["cn-cn", "Chinese"],
53+
["es-es", "Español"],
5554
],
5655
"LANGUAGE_CODE": "en-us",
5756
"MEDIA_BASE_URL": "http://testserver/",

src/backend/impress/settings.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,7 @@ class Base(Configuration):
239239
("fr-fr", "Français"),
240240
("de-de", "Deutsch"),
241241
("nl-nl", "Nederlands"),
242-
("es-es", "Spanish"),
243-
("cn-cn", "Chinese"),
242+
("es-es", "Español"),
244243
)
245244
)
246245

src/frontend/apps/e2e/__tests__/app-impress/common.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ export const CONFIG = {
1515
['fr-fr', 'Français'],
1616
['de-de', 'Deutsch'],
1717
['nl-nl', 'Nederlands'],
18-
['es-es', 'Spanish'],
19-
['cn-cn', 'Chinese'],
18+
['es-es', 'Español'],
2019
],
2120
LANGUAGE_CODE: 'en-us',
2221
POSTHOG_KEY: {},

0 commit comments

Comments
 (0)