26 lines
932 B
JavaScript
26 lines
932 B
JavaScript
import Vue from 'vue'
|
|
import t from '../src/translator';
|
|
import config from '../data/config.suml';
|
|
import {buildDict} from "../src/helpers";
|
|
|
|
export default ({ app, store }) => {
|
|
Vue.prototype.$base = process.env.BASE_URL;
|
|
Vue.prototype.$t = t;
|
|
Vue.prototype.$translateForPronoun = (str, pronoun) =>
|
|
pronoun.format(
|
|
t(`flags.${str.replace(/ /g, '_').replace(/\*/g, `'`)}`, {}, false) || str
|
|
);
|
|
Vue.prototype.config = config;
|
|
Vue.prototype.locales = buildDict(function* () {
|
|
if (config.locale !== '_') {
|
|
yield [ config.locale, process.env.LOCALES[config.locale] ];
|
|
}
|
|
for (let l in process.env.LOCALES) {
|
|
if (process.env.LOCALES.hasOwnProperty(l) && l !== config.locale) {
|
|
yield [l, process.env.LOCALES[l]];
|
|
}
|
|
}
|
|
});
|
|
store.commit('setSpelling', app.$cookies.get('spelling') || 'traditional');
|
|
}
|