neetjn / v-localize

Simple localization plugin for the amazing Vue.js.

Home Page:https://neetjn.github.io/v-localize/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Locale Options

neetjn opened this issue · comments

Add capability for locale options -- including setting page scrolling from ltr to rtl for script languages.

Available locales should be dictated by name as a string or object with name and options.

localize = Localize.config({
  default: 'en',
  available: ['en', 'sp', 'pr', {
    name: 'ar',
    orientation: 'ltr'
  }],
  ...
})