1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| /* @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)
| }
| }
|
|