You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the solution you'd like
We should add a language system based on JSON to handle multiple languages. So it looks like that:
{
"welcome": "Welcome {0}, how is your day going?"
}
and stored in src/assets/locale/en.json.
There should be a language registry in src/assets/locale/config.json contains:
{
"languages": [
{
"name": "de", # TypeOS will search in src/assets/locale/de.json"fullName": "German", # Full english name of language"nativeName": "Deutsch"# Native language name
}
]
}
The text was updated successfully, but these errors were encountered:
Describe the solution you'd like
We should add a language system based on JSON to handle multiple languages. So it looks like that:
and stored in
src/assets/locale/en.json
.There should be a language registry in
src/assets/locale/config.json
contains:The text was updated successfully, but these errors were encountered: