You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vue-localez

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-localez

Localization support for VueJS

0.0.2
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

vue-localez

Vue-localez is an addon to add support for multiple languages.

Installation

Installing Vue Localization is a pretty simple process

Npm install

npm install vue-localez

Yarn install

yarn add vue-localez

Setup

var Vue = require('vue');
var vueLocalez = require('vue-localez');

vueLocalez.requireAll(require.context(`./lang`, true, /\.json$/))

Vue.use(vueLocalez, { // Options
    lang: 'en',         // lang
    extension: 'json',  // language resource
})

Lang Folder

└── lang
    ├── en
    |   ├──error.json
    |   └──messages.json
    ├── id
    |   ├──error.json
    |   └──messages.json
    └── fr
        ├──error.json
        └──messages.json

Lang file

lang/id/messages.json

{
  "greeting": "Halo {name}"
}

lang/en/messages.json

{
  "greeting": "Hello {name}"
}

lang/fr/messages.json

{
  "greeting": "Bonjour {name}"
}

Usage

$locale.message('message.greeting', { name : "Waldi Irawan" })

// returns
// id -> Halo Waldi Irawan
// en -> Hello Waldi Irawan
// fr -> Bonjour Waldi Irawan

yourcomponent.vue

<h1>{{ $locale.message('message.greeting', { name : "Waldi Irawan" }) }}</h1>

Results :

<!-- id -->
<h1>Halo Waldi Irawan</h1>
<!-- en -->
<h1>Halo Waldi Irawan</h1>
<!-- fr -->
<h1>Halo Waldi Irawan</h1>

Change localez

// inside vue instance
this.$locale.for('id') // 'id' is iso code country

Keywords

vue

FAQs

Package last updated on 09 Mar 2017

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.