2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 03:26:45 +00:00

Add estonian language support (#7647)

This commit is contained in:
Oliver 2024-07-14 13:28:16 +10:00 committed by GitHub
parent e5814ea486
commit 0db280ad74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 21018 additions and 0 deletions

View File

@ -24,6 +24,7 @@ LOCALES = [
('en', _('English')),
('es', _('Spanish')),
('es-mx', _('Spanish (Mexican)')),
('et', _('Estonian')),
('fa', _('Farsi / Persian')),
('fi', _('Finnish')),
('fr', _('French')),

File diff suppressed because it is too large Load Diff

View File

@ -9,6 +9,7 @@
"en",
"es",
"es-mx",
"et",
"fa",
"fi",
"fr",

View File

@ -26,6 +26,7 @@ export const getSupportedLanguages = (): Record<string, string> => {
en: t`English`,
es: t`Spanish`,
'es-mx': t`Spanish (Mexican)`,
et: t`Estonian`,
fa: t`Farsi / Persian`,
fi: t`Finnish`,
fr: t`French`,

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