mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 13:36:50 +00:00
Update release notes,
- Also adds locale support for more language codes
This commit is contained in:
parent
51f3be899b
commit
9b090723f9
@ -16,6 +16,11 @@ Make sure that the build number is incremented every time (or it will be rejecte
|
|||||||
|
|
||||||
Ensure that the translation files have been updated, and copied into the correct directory!!
|
Ensure that the translation files have been updated, and copied into the correct directory!!
|
||||||
|
|
||||||
|
```
|
||||||
|
cd lib/l10n
|
||||||
|
python update_translations.py
|
||||||
|
```
|
||||||
|
|
||||||
### Build Appbundle
|
### Build Appbundle
|
||||||
|
|
||||||
`flutter build appbundle`
|
`flutter build appbundle`
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
- Adds ability to edit StockItem
|
- Adds ability to edit StockItem
|
||||||
- Display purchase price (where available) for StockItem
|
- Display purchase price (where available) for StockItem
|
||||||
- Updated translations
|
- Updated translations
|
||||||
|
- Adds support for more languages
|
||||||
|
|
||||||
### 0.2.10 - July 2021
|
### 0.2.10 - July 2021
|
||||||
---
|
---
|
||||||
|
2
lib/l10n
2
lib/l10n
@ -1 +1 @@
|
|||||||
Subproject commit 46d08c9cc0043113fee5c0d134861c5d12554b71
|
Subproject commit 5889c96004c734ac81a9c67002e75fe477f632cd
|
@ -64,16 +64,24 @@ class InvenTreeApp extends StatelessWidget {
|
|||||||
GlobalCupertinoLocalizations.delegate,
|
GlobalCupertinoLocalizations.delegate,
|
||||||
],
|
],
|
||||||
supportedLocales: [
|
supportedLocales: [
|
||||||
const Locale('de', ''),
|
const Locale('de', ''), // German
|
||||||
const Locale('en', ''),
|
const Locale('el', ''), // Greek
|
||||||
const Locale('es', ''),
|
const Locale('en', ''), // English
|
||||||
const Locale('fr', ''),
|
const Locale('es', ''), // Spanish
|
||||||
const Locale('it', ''),
|
const Locale('fr', ''), // French
|
||||||
const Locale('ja', ''),
|
const Locale('he', ''), // Hebrew
|
||||||
const Locale('pl', ''),
|
const Locale('it', ''), // Italian
|
||||||
const Locale('ru', ''),
|
const Locale('ja', ''), // Japanese
|
||||||
const Locale('tr', ''),
|
const Locale('ko', ''), // Korean
|
||||||
const Locale('zh', ''),
|
const Locale('nl', ''), // Dutch
|
||||||
|
const Locale('no', ''), // Norwegian
|
||||||
|
const Locale('pl', ''), // Polish
|
||||||
|
const Locale('ru', ''), // Russian
|
||||||
|
const Locale('sv', ''), // Swedish
|
||||||
|
const Locale('th', ''), // Thai
|
||||||
|
const Locale('tr', ''), // Turkish
|
||||||
|
const Locale('vi', ''), // Vietnamese
|
||||||
|
const Locale('zh-CN', ''), // Chinese
|
||||||
],
|
],
|
||||||
|
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user