nuxt-i18n-preferred

0.3.0 • Public • Published

nuxt-i18n-preferred

NPM Package License: MIT

Preferred locale for nuxt-i18n. Add middleware, that save preferred locale between sessions, when user comes back, it will check if preferred locale is set and redirect to it. Redirect works only on root page for now. Add enhanced preferredPath method instead of localePath.

Install

NPM

npm install nuxt-i18n-preferred

Register Nuxt module

// nuxt-config.js
module.exports = {
    modules: [
        ['nuxt-i18n-preferred', {
            routesNameSeparator: '___',
            languageCookieKey: 'nuxt_i18n_preferred_locale',
            detectBrowserLanguage: false,        
        }],
        ['nuxt-i18n', {
            // options
        }],
    ],
};

Usage

.preferredPath()

First check preferred locale, than check current locale, than check default locale. In comparison with nuxt-i18n's localePath, which check only current locale.

<nuxt-link :to="preferredPath('index')">{{ $t('home') }}</nuxt-link>

License

MIT License

Readme

Keywords

Package Sidebar

Install

npm i nuxt-i18n-preferred

Weekly Downloads

6

Version

0.3.0

License

MIT

Unpacked Size

13.4 kB

Total Files

8

Last publish

Collaborators

  • shrpne