@dobbel It is really very easy.
Follow the instructions here to set up internationalization
https://quasar.dev/options/app-internationalization
Sign up to the Localazy service to get your application keys
Add the localazy.json file to the root of your app with content like this:
{
"writeKey": "[your write key]",
"readKey": "[your read key]",
"upload": {
"type": "js",
"files": "src/i18n/en-us/index.js"
},
"download": {
"files": "src/i18n/${lang}/index.js"
}
}
(this is based on the folders created with the default i18n installation)
then use the commands:
localazy upload
check your translations and
localazy download
It is as simple as that.