verteilen-core 1.2.7 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/interface/base.d.ts +1 -0
- package/dist/lan/en.json +2 -1
- package/dist/lan/zh_TW.json +2 -1
- package/dist/plugins/i18n.d.ts +4 -1
- package/dist/plugins/i18n.js +0 -1
- package/package.json +1 -1
- package/src/interface/base.ts +5 -0
- package/src/lan/en.json +2 -1
- package/src/lan/zh_TW.json +2 -1
- package/src/plugins/i18n.ts +0 -1
package/dist/interface/base.d.ts
CHANGED
package/dist/lan/en.json
CHANGED
package/dist/lan/zh_TW.json
CHANGED
package/dist/plugins/i18n.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { createI18n } from 'vue-i18n';
|
|
|
2
2
|
import { I18n } from "i18n-js";
|
|
3
3
|
export { createI18n as Create };
|
|
4
4
|
export declare const i18nDefaultData: {
|
|
5
|
-
legacy: boolean;
|
|
6
5
|
locale: string;
|
|
7
6
|
globalInjection: boolean;
|
|
8
7
|
fallbackFormat: string;
|
|
@@ -419,6 +418,7 @@ export declare const i18nDefaultData: {
|
|
|
419
418
|
no: string;
|
|
420
419
|
next: string;
|
|
421
420
|
previous: string;
|
|
421
|
+
goback: string;
|
|
422
422
|
};
|
|
423
423
|
zh_TW: {
|
|
424
424
|
login: {
|
|
@@ -832,6 +832,7 @@ export declare const i18nDefaultData: {
|
|
|
832
832
|
no: string;
|
|
833
833
|
next: string;
|
|
834
834
|
previous: string;
|
|
835
|
+
goback: string;
|
|
835
836
|
};
|
|
836
837
|
};
|
|
837
838
|
};
|
|
@@ -1248,6 +1249,7 @@ export declare const i18n: import("vue-i18n").I18n<{
|
|
|
1248
1249
|
no: string;
|
|
1249
1250
|
next: string;
|
|
1250
1251
|
previous: string;
|
|
1252
|
+
goback: string;
|
|
1251
1253
|
};
|
|
1252
1254
|
zh_TW: {
|
|
1253
1255
|
login: {
|
|
@@ -1661,6 +1663,7 @@ export declare const i18n: import("vue-i18n").I18n<{
|
|
|
1661
1663
|
no: string;
|
|
1662
1664
|
next: string;
|
|
1663
1665
|
previous: string;
|
|
1666
|
+
goback: string;
|
|
1664
1667
|
};
|
|
1665
1668
|
}, {}, {}, string, true>;
|
|
1666
1669
|
export declare const raw_i18n: I18n;
|
package/dist/plugins/i18n.js
CHANGED
|
@@ -10,7 +10,6 @@ const i18n_js_1 = require("i18n-js");
|
|
|
10
10
|
const en_json_1 = __importDefault(require("./../lan/en.json"));
|
|
11
11
|
const zh_TW_json_1 = __importDefault(require("./../lan/zh_TW.json"));
|
|
12
12
|
exports.i18nDefaultData = {
|
|
13
|
-
legacy: true,
|
|
14
13
|
locale: 'en',
|
|
15
14
|
globalInjection: true,
|
|
16
15
|
fallbackFormat: 'en',
|
package/package.json
CHANGED
package/src/interface/base.ts
CHANGED
package/src/lan/en.json
CHANGED
package/src/lan/zh_TW.json
CHANGED