vue-i18n-extract
vue-i18n-extract copied to clipboard
Manage vue-i18n localization with static analysis
Hi, I want after export will auto add value to miss translate. This value will same with key. Ex: "Key1":"Key1" Thanks.
We're using `.js` files for our locale files so we can include date formatting functions in our locales e.g: ``` function formatDate(i18nContext, month) { return `${i18nContext.named('day') ? i18nContext.named('day') + '....
Doesn't support international scan in the JS file?
In our project the different language-files have the following structure: `{ "en": { "key": "value", "key2": "value", }} ` The tool does not like that and see the key as...
I'm using this tool for per-component translation, like this: ``` vue-i18n-extract -a -v src/ComponentName.vue -l locale/en/ComponentName.yml ``` For new components i must create empty yml file, but it would be...
Updates the .gitignore file to match Yarn 2’s documentation. Specifically, this avoids the issue of needing to follow the SDK setup instructions (e.g. running `yarn dlx @yarnpkg/sdks vscode`) each time...
Adds the `files` property to the package.json file including the paths `bin` and `dist` which contain the essential distribution files of the package. Previously, the entire source code was packaged...
**feat: add outputOrder option** Adds a new optional config and CLI option `outputOrder` which when set to `'lexical'` sorts reports and language files (when using the `add` option) alphabetically. By...