mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Add ukrainian as a language option (#7129)
* Add ukrainian as a language option * change lang code * add dts
This commit is contained in:
parent
0f501177cd
commit
3f879f047d
@ -45,6 +45,7 @@ LOCALES = [
|
||||
('sv', _('Swedish')),
|
||||
('th', _('Thai')),
|
||||
('tr', _('Turkish')),
|
||||
('uk', _('Ukrainian')),
|
||||
('vi', _('Vietnamese')),
|
||||
('zh-hans', _('Chinese (Simplified)')),
|
||||
('zh-hant', _('Chinese (Traditional)')),
|
||||
|
@ -14245,4 +14245,3 @@ msgstr ""
|
||||
#: users/models.py:426
|
||||
msgid "Permission to delete items"
|
||||
msgstr ""
|
||||
|
||||
|
@ -30,6 +30,7 @@
|
||||
"sv",
|
||||
"th",
|
||||
"tr",
|
||||
"uk",
|
||||
"vi",
|
||||
"zh-hans",
|
||||
"zh-hant",
|
||||
|
@ -46,6 +46,7 @@ export const getSupportedLanguages = (): Record<string, string> => {
|
||||
sv: t`Swedish`,
|
||||
th: t`Thai`,
|
||||
tr: t`Turkish`,
|
||||
uk: t`Ukrainian`,
|
||||
vi: t`Vietnamese`,
|
||||
'zh-hans': t`Chinese (Simplified)`,
|
||||
'zh-hant': t`Chinese (Traditional)`
|
||||
|
3
src/frontend/src/locales/uk/messages.d.ts
vendored
Normal file
3
src/frontend/src/locales/uk/messages.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
import { Messages } from '@lingui/core';
|
||||
declare const messages: Messages;
|
||||
export { messages };
|
@ -6375,4 +6375,3 @@ msgstr ""
|
||||
#: src/views/MobileAppView.tsx:35
|
||||
msgid "Ignore and continue to Desktop view"
|
||||
msgstr ""
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user