Add support for Slovak (#6351)

This commit is contained in:
Oliver 2024-01-29 10:56:58 +11:00 committed by GitHub
parent f6ba180cc4
commit cf7a20e1b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 17821 additions and 0 deletions

View File

@ -36,6 +36,7 @@ LOCALES = [
('pt', _('Portuguese')),
('pt-br', _('Portuguese (Brazilian)')),
('ru', _('Russian')),
('sk', _('Slovak')),
('sl', _('Slovenian')),
('sr', _('Serbian')),
('sv', _('Swedish')),

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,7 @@
"pt",
"pt-br",
"ru",
"sk",
"sl",
"sr",
"sv",

View File

@ -37,6 +37,7 @@ export const languages: Record<string, string> = {
pt: t`Portuguese`,
'pt-br': t`Portuguese (Brazilian)`,
ru: t`Russian`,
sk: t`Slovak`,
sl: t`Slovenian`,
sv: t`Swedish`,
th: t`Thai`,

View File

@ -0,0 +1,4 @@
import { Messages } from '@lingui/core';
declare const messages: Messages;
export { messages };

File diff suppressed because it is too large Load Diff