2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 18:25:26 +00:00

Update release notes,

- Also adds locale support for more language codes
This commit is contained in:
Oliver
2021-07-27 08:56:40 +10:00
parent 51f3be899b
commit 9b090723f9
4 changed files with 26 additions and 12 deletions

View File

@ -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!!
```
cd lib/l10n
python update_translations.py
```
### Build Appbundle
`flutter build appbundle`

View File

@ -10,7 +10,8 @@
- Improvements for StockLocation editing form
- Adds ability to edit StockItem
- Display purchase price (where available) for StockItem
- Updated translations
- Updated translations
- Adds support for more languages
### 0.2.10 - July 2021
---

View File

@ -64,16 +64,24 @@ class InvenTreeApp extends StatelessWidget {
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: [
const Locale('de', ''),
const Locale('en', ''),
const Locale('es', ''),
const Locale('fr', ''),
const Locale('it', ''),
const Locale('ja', ''),
const Locale('pl', ''),
const Locale('ru', ''),
const Locale('tr', ''),
const Locale('zh', ''),
const Locale('de', ''), // German
const Locale('el', ''), // Greek
const Locale('en', ''), // English
const Locale('es', ''), // Spanish
const Locale('fr', ''), // French
const Locale('he', ''), // Hebrew
const Locale('it', ''), // Italian
const Locale('ja', ''), // Japanese
const Locale('ko', ''), // Korean
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
],
);