2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 20:46:47 +00:00

Lithuanian (#8134)

* Add lithuanian support to backend

* Lithuanian support for frontend
This commit is contained in:
Oliver 2024-09-17 09:55:49 +10:00 committed by GitHub
parent 05707e6d65
commit 45aab46db3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 22311 additions and 0 deletions

View File

@ -10,6 +10,8 @@ Additionally, update the following files with the new locale code:
- /src/frontend/.linguirc file
- /src/frontend/src/contexts/LanguageContext.tsx
(and then run "invoke int.frontend-trans")
"""
from django.utils.translation import gettext_lazy as _
@ -34,6 +36,7 @@ LOCALES = [
('it', _('Italian')),
('ja', _('Japanese')),
('ko', _('Korean')),
('lt', _('Lithuanian')),
('lv', _('Latvian')),
('nl', _('Dutch')),
('no', _('Norwegian')),

File diff suppressed because it is too large Load Diff

View File

@ -19,6 +19,7 @@
"it",
"ja",
"ko",
"lt",
"lv",
"nl",
"no",

View File

@ -36,6 +36,7 @@ export const getSupportedLanguages = (): Record<string, string> => {
it: t`Italian`,
ja: t`Japanese`,
ko: t`Korean`,
lt: t`Lithuanian`,
lv: t`Latvian`,
nl: t`Dutch`,
no: t`Norwegian`,

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