vue-cli-plugin-i18n
vue-cli-plugin-i18n copied to clipboard
:globe_with_meridians: Vue CLI plugin to add vue-i18n to your Vue Project
### System - "vue-i18n": "^8.17.3", - @vue/cli 4.5.10 - OS Windows 10 Default value by vue cli `"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"` In vue ui, when I run...
### Reporting a bug? If i use a i18n in a pure ts file in my assets foulder the Missing Entry detection from i18n:report doesn't work correctly: ```ts import i18n...
I've read other issues and believe this error is similar but sufficiently different from other reported cases, including this one here: https://github.com/kazupon/vue-cli-plugin-i18n/issues/9, Running ```vue add i18n``` fails to complete (the...
**Module versions:** - Vue CLI: 4.x - `vue-cli-plugin-i18n`: 2.x **To Reproduce** Steps to reproduce the behavior: 1. Create e new Vue app using the CLI 2. Install the Vue I18n...
**Module versions ** - `Vue CLI:` 4.5.11 - `vue-cli-plugin-i18n`: ^2.1.0 **To Reproduce** Steps to reproduce the behavior: ex: 1. Execute vue ui 1. Go to 'Localizations' 2. Click on '+...
* Update `defaultLocaleMessages`
While invoking the plugin (both from the UI and through `vue invoke`), with defaults kept as is, the Vue CLI crashes with the following stacktrace: ``` Error: Line 15: Unexpected...
since we already have a report function to generate a report, I wonder is it going to be difficult to just create these keys in lang.json?
# Summary I would like to ignore specific paths in the `i18n:report`. # Background I have some components that fetch keys dynamically, e.g. `` with ``{{ $t(`languages.${code}`) }}``. # Problem...
Is there any documentation how to use i18n:report? I have this script in my package.json: `"i18n:report": "vue-cli-service i18n:report --src ./src/pages/user/* --locales src/lang/*"` and it works. But when i want to...