Adds support for Romanian locale tranaslations (#7428)

This commit is contained in:
Oliver 2024-06-11 12:03:46 +10:00 committed by GitHub
parent 9962d85570
commit c834759f07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14396 additions and 0 deletions

View File

@ -38,6 +38,7 @@ LOCALES = [
('pl', _('Polish')),
('pt', _('Portuguese')),
('pt-br', _('Portuguese (Brazilian)')),
('ro', _('Romanian')),
('ru', _('Russian')),
('sk', _('Slovak')),
('sl', _('Slovenian')),

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,7 @@
"pl",
"pt",
"pt-br",
"ro",
"ru",
"sk",
"sl",

View File

@ -40,6 +40,7 @@ export const getSupportedLanguages = (): Record<string, string> => {
pl: t`Polish`,
pt: t`Portuguese`,
'pt-br': t`Portuguese (Brazilian)`,
ro: t`Romanian`,
ru: t`Russian`,
sk: t`Slovak`,
sl: t`Slovenian`,