File locate: ./app/configs/settings.js
Language file locate: ./app/localization/..
.
How to add more language in your application ?
Add more json data language file in the folder ./app/localization/*.json
The file name base on your language code with format ISO-2. Please refer language ISO-2 in here https://www.loc.gov/standards/iso639-2/php/code_list.php
Open ./app/configs/settings.js
and update setting
export const Setting = { ... defaultLanguage: 'en', languageSupport: [ 'en', 'vi', 'ar', 'da', 'de', 'el', 'fr', 'he', 'id', 'ja', 'ko', 'lo', 'nl', 'zh', 'fa', 'km', ], ... }