2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-01 21:16:46 +00:00

Add support for serbian language (#6091)

This commit is contained in:
Oliver 2023-12-15 10:06:41 +11:00 committed by GitHub
parent 2aa993bcf5
commit 72167630ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13643 additions and 0 deletions

View File

@ -826,6 +826,8 @@ LANGUAGE_COOKIE_AGE = 2592000
# If a new language translation is supported, it must be added here # If a new language translation is supported, it must be added here
# After adding a new language, run the following command: # After adding a new language, run the following command:
# python manage.py makemessages -l <language_code> -e html,js,py --no-wrap # python manage.py makemessages -l <language_code> -e html,js,py --no-wrap
# where <language_code> is the code for the new language
# Additionally, update the /src/frontend/.linguirc file
LANGUAGES = [ LANGUAGES = [
('bg', _('Bulgarian')), ('bg', _('Bulgarian')),
('cs', _('Czech')), ('cs', _('Czech')),
@ -851,6 +853,7 @@ LANGUAGES = [
('pt-br', _('Portuguese (Brazilian)')), ('pt-br', _('Portuguese (Brazilian)')),
('ru', _('Russian')), ('ru', _('Russian')),
('sl', _('Slovenian')), ('sl', _('Slovenian')),
('sr', _('Serbian')),
('sv', _('Swedish')), ('sv', _('Swedish')),
('th', _('Thai')), ('th', _('Thai')),
('tr', _('Turkish')), ('tr', _('Turkish')),

File diff suppressed because it is too large Load Diff

View File

@ -24,6 +24,7 @@
"pt-br", "pt-br",
"ru", "ru",
"sl", "sl",
"sr",
"sv", "sv",
"th", "th",
"tr", "tr",