34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
|
/* @flow */
|
||
|
|
||
|
export default function extend (Vue: any): void {
|
||
|
if (!Vue.prototype.hasOwnProperty('$i18n')) {
|
||
|
// $FlowFixMe
|
||
|
Object.defineProperty(Vue.prototype, '$i18n', {
|
||
|
get () { return this._i18n }
|
||
|
})
|
||
|
}
|
||
|
|
||
|
Vue.prototype.$t = function (key: Path, ...values: any): TranslateResult {
|
||
|
const i18n = this.$i18n
|
||
|
return i18n._t(key, i18n.locale, i18n._getMessages(), this, ...values)
|
||
|
}
|
||
|
|
||
|
Vue.prototype.$tc = function (key: Path, choice?: number, ...values: any): TranslateResult {
|
||
|
const i18n = this.$i18n
|
||
|
return i18n._tc(key, i18n.locale, i18n._getMessages(), this, choice, ...values)
|
||
|
}
|
||
|
|
||
|
Vue.prototype.$te = function (key: Path, locale?: Locale): boolean {
|
||
|
const i18n = this.$i18n
|
||
|
return i18n._te(key, i18n.locale, i18n._getMessages(), locale)
|
||
|
}
|
||
|
|
||
|
Vue.prototype.$d = function (value: number | Date, ...args: any): DateTimeFormatResult {
|
||
|
return this.$i18n.d(value, ...args)
|
||
|
}
|
||
|
|
||
|
Vue.prototype.$n = function (value: number, ...args: any): NumberFormatResult {
|
||
|
return this.$i18n.n(value, ...args)
|
||
|
}
|
||
|
}
|