Utilities > i18n


vue-i18next 0.57


Internationalization for vue using the i18next i18n ecosystem.
  • i18n
  • i18next
  • javascript
  • plugin
  • typescript
  • vue
  • internationalization
  • vue_js
last commit 3 years ago
177
Stargazers

Watchers
177
Open issues
99
1141148
Downloads

Last 30 days
38208
Releases
5
53
Final Score

Quality
90
Popularity
17
Maintenance
56

DEPRECATED, please use https://github.com/i18next/i18next-vue ! Thanks for your support!

vue-i18next

Build Status Coverage Status semantic-release

Internationalization for vue using the i18next i18n ecosystem. https://panter.github.io/vue-i18next/

Introduction

18next goes beyond just providing the standard i18n features such as (plurals, context, interpolation, format). It provides you with a complete solution to localize your product from web to mobile and desktop.

vue-i18next is the vue support for i18next and provides:

  • Component based localization
  • Component interpolation
  • Lazy load namespaces
  • Namespaced translation for components

Requirements

  • vue >= 2.0.0
  • i18next >= 6.0.1

Documentation

See here

Init

import Vue from 'vue';
import i18next from 'i18next';
import VueI18Next from '@panter/vue-i18next';

Vue.use(VueI18Next);

i18next.init({
  lng: 'de',
  resources: {
    ...
  }
});

const i18n = new VueI18Next(i18next);
new Vue({
  ...
  i18n: i18n,
});

Changelog

Detailed changes for each release are documented in the releases.

Issues

Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

Contribution

Please make sure to read the Contributing Guide before making a pull request.

License

MIT