vue-i18n-extract
vue-i18n-extract is built to work with your Vue.js projects using vue-i18n. When run vue-18n-extract analyses your Vue.js source code for any vue-i18n key usages (ex. $t(''), $tc(''), ...) as well as your language files (ex. de_DE.js, en_EN.json, ...), in order to:
- [x] I18NReport keys that are missing in the language files.
- [x] I18NReport unused keys in the language files.
:rocket: Getting Started
Install vue-i18n-extract
using Yarn
Or NPM
Note:
vue-i18n-extract
documentation usesyarn
commands, butnpm
will also work. You can compareyarn
andnpm
commands in theyarn
docs, here.
Add the following section to your package.json
:
Finally, run:
This will print out a table of missing keys in your language files, as well as unused keys in your language files.
Running from command line
You can run vue-i18n-extract
directly from the CLI if you have install it globally
From anywhere you can now run:
Outputting report to file
To generate a json file of missing and unused keys use the -output
or -o
argument with the desired path to the file.
Usage in NodeJS
Make sure you have vue-i18n-extract
installed locally and then just import
Note:
vue-i18n-extract
has Typescript typings built in! :tada:
:key: Supported keys
- Static in template or script:
- i18n component:
Note: As of right now there is no support for binding in path like
:path="condition ? 'string1' : 'string2'"
there is just support strings as shown above.
- v-t directive with string literal:
Note: As of right now there is no object support to reference that path from component data
Demo & Tests
Clone this git repository:
Install dependencies:
Compile typescript:
Then run the demo:
This will use the data in the demo folder to generate a report.
To run tests:
:grey_question: Why?
I'm a big fan of vue-i18n. It's the best and most used internationalization plugin for Vue.js
Setting up a Vue.js website with internationalization (i18n) support it easy nowadays: Once you have installed the plugin and injected into the Vue instance, you can just put ‘{{ $t(‘Hello World’) }}‘ inside Vue.js component templates to use the plugin. However, in my personal experience I found it very difficult to keep the language files and the placeholders in the .vue files in sync.
That's why I wrote vue-i18n-extract; I needed a way to analyze and compare my language files to my Vue.js source files, then report the result in a useful way.
:white_check_mark: To-Do
- [ ] Write test
- [x] I18NReport unused keys in the language files
- [x] Add "static (without $)" support
- [x] Add template string support