When translating the complex sentences it will be good to have something like
… src/i18n/en/index.js …
complex: (arg1, arg2) => (‘xxx: ’ + arg1 + ’ yyy:’ + arg2)
…
… some.vue …
<q-toolbar-title>{{ $t(‘complex’, arg1, arg2) }}</q-toolbar-title>
…
How it can be done if possible ?