vue-i18n
vue-i18n copied to clipboard
Vue I18n for Vue 3
### Reporting a bug? Hi! I'm developing an application, but sometimes I get this error while navigating back to a page:  as you can see, it says that my...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | esbuild-register | [`^2.3.0` -> `^3.0.0`](https://renovatebot.com/diffs/npm/esbuild-register/2.6.0/3.3.3) | [](https://docs.renovatebot.com/merge-confidence/)...
### Reporting a bug? I'm not using `globalInjection`, but the typing for this library is adding some properties to `ComponentCustomProperties`, and this is causing problems for me. I want to...
### Reporting a bug? I'm using "vue-i18n" and "@intlify/vite-plugin-vue-i18n", while everything is fine in development, in production build I keep getting "TypeError: a is not a function" which is referring...
### Reporting a bug? I get the following error when I try to call `$t`, in an async method that makes the current component not being rendered anymore: ``` Uncaught...
### Clear and concise description of the problem Allow calling i18n.global.setLocaleMessage() in . ### Suggested solution Do app.provide() an i18n instance with a 'user-known' name or symbol, so that the...
### Reporting a bug? Hi, Thanks for this great package. I'm running into an issue on a project with Vue 3 and Vite. You'll find my package.json below. When I...
### Clear and concise description of the problem If I understand the docs correctly, it's only possible to lazy load other locales via dynamic import: https://vue-i18n.intlify.dev/guide/advanced/lazy.html This doesn't work for...
### Clear and concise description of the problem I would like to be able to organise my translations into multiple namespaces, to better organise my code. ### Suggested solution Add...
### Clear and concise description of the problem Consider this translation: ``` "en": { "total": "0 results | {n} result | {n} results", } ``` Here is the output: `$tc('total',...