fix (babel): Fix missing localisations.

This commit is contained in:
2023-08-28 22:41:25 +03:00
parent 5a152e9be7
commit 6da2c762ad
3 changed files with 18 additions and 6 deletions

View File

@@ -35,6 +35,7 @@ class LocaleMap(Enum):
turkish = 'tr'
ukrainian = 'uk'
vietnamese = 'vi'
hebrew = 'he-IL'
locale_names = {
@@ -68,4 +69,6 @@ locale_names = {
'tr': _p('localenames|locale:tr', "Turkish"),
'uk': _p('localenames|locale:uk', "Ukrainian"),
'vi': _p('localenames|locale:vi', "Vietnamese"),
'he': _p('localenames|locale:he', "Hebrew"),
'he-IL': _p('localenames|locale:he_IL', "Hebrew (Israel)"),
}