···284284285285Check [Pluralization rule callback](https://vue-i18n.intlify.dev/guide/essentials/pluralization.html#custom-pluralization) for more info.
286286287287+### Update translation
288288+289289+We track the current progress of translations with [Lunaria](https://lunaria.dev/) on this site: https://i18n.npmx.dev/
290290+If you see any outdated translations in your language, feel free to update the keys to match then English version.
291291+292292+In order to make sure you have everything up-to-date, you can run:
293293+294294+```bash
295295+pnpm i18n:check <country-code>
296296+```
297297+298298+For example to check if all Japanese translation keys are up-to-date, run:
299299+300300+```bash
301301+pnpm i18n:check ja-JP
302302+```
303303+287304#### Country variants (advanced)
288305289306Most languages only need a single locale file. Country variants are only needed when you want to support regional differences (e.g., `es-ES` for Spain vs `es-419` for Latin America).