[![Nuxt i18n](./docs/public/cover.png)](https://v8.i18n.nuxtjs.org) [![](https://img.shields.io/npm/v/%40nuxtjs%2Fi18n/next.svg?style=flat-square)](https://npmjs.com/package/%40nuxtjs%2Fi18n) [![](https://img.shields.io/npm/v/%40nuxtjs%2Fi18n/latest.svg?style=flat-square)](https://npmjs.com/package/%40nuxtjs%2Fi18n) [![](https://img.shields.io/npm/dt/%40nuxtjs%2Fi18n.svg?style=flat-square)](https://npmjs.com/package/%40nuxtjs%2Fi18n) [![](https://snyk.io/test/github/nuxt-community/i18n-module/badge.svg?style=flat-square)](https://snyk.io/test/github/nuxt-modules/i18n) Volta board # Nuxt I18n > I18n module for Nuxt The next i18n module for Nuxt 3 ## ✅ Status: v8 RC (Release candidate) If you would like to use the stable version for Nuxt 2, please see the [`main` branch](https://github.com/nuxt-modules/i18n/tree/main) ## 🚀 Usage ### Install with `next` tag 1. Add the following line to the `devDependencies` with your package manager: ```sh # Using npm npm install @nuxtjs/i18n@next --save-dev # Using yarn yarn add --dev @nuxtjs/i18n@next # Using pnpm pnpm install --shamefully-hoist -D @nuxtjs/i18n@next ``` 2. Add `@nuxtjs/i18n` to the `modules` section of `nuxt.config.ts` ```ts { modules: [ '@nuxtjs/i18n', ], } ``` ## Edge Release Channel We provide [the Edge Release Channel nuxt i18n module, like Nuxt3](https://nuxt.com/docs/guide/going-further/edge-channel#edge-release-channel) Nuxt i18n module is undergoing commits, improvements and bug fixes. You can opt-in to be the first to test it before the next release. ### Opting Into the Edge Channel Update nuxt i18n module dependency inside `package.json`: ```diff { "devDependencies": { -- "@nuxtjs/i18n": "^8.0.0-rc.1" ++ "@nuxtjs/i18n": "npm:@nuxtjs/i18n-edge" } } ``` Remove lockfile (`package-lock.json`, `yarn.lock`, or `pnpm-lock.yaml`) and reinstall dependencies. ### Opting Out From the Edge Channel Update nuxt i18n module dependency inside `package.json`: ```diff { "devDependencies": { -- "@nuxtjs/i18n": "npm:@nuxtjs/i18n-edge" ++ "@nuxtjs/i18n": "^8.0.0-rc.1" } } ``` ## 📖 Documentation [Read more v8 documentation](https://v8.i18n.nuxtjs.org/). Keep in mind that not all features are currently supported yet and some things might be broken. ## 🔗 Links - 📘 [Documentation for v8](https://v8.i18n.nuxtjs.org/) - 📘 [Documentation for v7](https://i18n.nuxtjs.org/) - 🔖 [Release notes](./CHANGELOG.md) - đŸ‘Ĩ [Community](https://discord.nuxtjs.org/) (`#i18n` channel) ## ÂŠī¸ License [MIT License](./LICENSE) - Copyright (c) Nuxt Community