Socket
Socket
Sign inDemoInstall

@panter/vue-i18next

Package Overview
Dependencies
144
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @panter/vue-i18next

i18next wrapper for vue


Version published
Weekly downloads
7.1K
decreased by-15.48%
Maintainers
4
Install size
1.09 MB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 30 Jan 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc