nuxt3 icon indicating copy to clipboard operation
nuxt3 copied to clipboard

Nuxt 3 Module for vue-i18n-next

Results 51 nuxt3 issues
Sort by recently updated
recently updated
newest added

With Nuxt2, it was easy to define paths for each locale (https://i18n.nuxtjs.org/routing) Is it possible using this package? I can't see in the doc, and I looked at the code...

Translation in single file components doesn't work for me. ``` {{ $t('hello', {name:'Peter'}) }} { "en": { "hello": "Hola {name}" }, "es": { "hello": "Hello {name} " } } ```...

Hi as described in doc, I can change locale with $i18n.locale in component template but I want to change it in like this i18n.locale = 'en' // or locale from...

I'm using `@intlify/nuxt3` to internationalize a website. I build and deployed the site in `ssr: true` and `target: server` (default) and hosted it on vercel and It works good in...

When I install the module I get this error: `[nuxt] [request error] [🍍]: getActivePinia was called with no active... ` Without the module, Nuxt & Pinia works perfect. ## Tested...

Does this module support route prefixes as described [here](https://i18n.nuxtjs.org/routing) in nuxt/i18n documentation. None of [these](https://i18n.nuxtjs.org/strategies) strategies work in my `nuxt.config.ts` My `nuxt.config.ts` file. ``` import { defineNuxtConfig } from "nuxt";...

Hi, is it possible to access the global property of the i18n instance for usage outside of components? I couldn't find a way, so my current workaround is to use...

const nuxtApp = useNuxtApp() const { vueApp } = nuxtApp const { i18n } = vueApp Not work nuxtApp.$i18n but nuxtApp.$auth exists Only can use vueApp.i18n

I am generating a static Nuxt 3 build but I am getting the following warning in my console ` WARN [intlify] The message format compilation is not supported in this...

Hello, When using a global `addRouterMiddleware` from a nuxt plugin with `@intlify/nuxt3`the first load misses the global router middleware. Here a reproduction example : https://stackblitz.com/edit/github-9wkf8t-t2us5t?file=plugins/middleware.ts https://github.com/nuxt/nuxt.js/issues/13794