@cfxjs/sirius-next-i18n 0.0.0 → 0.0.1-zg
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/.turbo/turbo-build.log +1 -1
- package/cspace/en/translation.json +2 -2
- package/dist/cspace/en/translation.json +2 -2
- package/dist/cspace/zh_cn/index.d.ts +2 -0
- package/dist/cspace/zh_cn/index.d.ts.map +1 -0
- package/dist/cspace/zh_cn/index.js +14 -0
- package/dist/cspace/zh_cn/translation.json +2369 -0
- package/dist/cspace/zh_cn/translationForDotNet.json +2289 -0
- package/dist/evm/base/en/translation.json +2 -2
- package/evm/base/en/translation.json +2 -2
- package/node_modules/@cfxjs/sirius-next-eslint-config/README.md +3 -0
- package/node_modules/@cfxjs/sirius-next-eslint-config/library.js +34 -0
- package/node_modules/@cfxjs/sirius-next-eslint-config/package.json +18 -0
- package/node_modules/@cfxjs/sirius-next-eslint-config/react-internal.js +43 -0
- package/node_modules/@cfxjs/sirius-next-typescript-config/base.json +20 -0
- package/node_modules/@cfxjs/sirius-next-typescript-config/package.json +9 -0
- package/node_modules/@cfxjs/sirius-next-typescript-config/react-library.json +8 -0
- package/node_modules/@turbo/gen/LICENSE +373 -0
- package/node_modules/@turbo/gen/README.md +38 -0
- package/node_modules/@turbo/gen/dist/cli.d.ts +1 -0
- package/node_modules/@turbo/gen/dist/cli.js +127 -0
- package/node_modules/@turbo/gen/dist/templates/simple-js/config.js +43 -0
- package/node_modules/@turbo/gen/dist/templates/simple-js/templates/turborepo-generators.hbs +5 -0
- package/node_modules/@turbo/gen/dist/templates/simple-ts/config.ts +45 -0
- package/node_modules/@turbo/gen/dist/templates/simple-ts/templates/turborepo-generators.hbs +5 -0
- package/node_modules/@turbo/gen/dist/types.d.ts +2 -0
- package/node_modules/@turbo/gen/dist/types.js +1 -0
- package/node_modules/@turbo/gen/package.json +57 -0
- package/package.json +8 -8
package/.turbo/turbo-build.log
CHANGED
|
@@ -897,8 +897,8 @@
|
|
|
897
897
|
"accountGrowth": {
|
|
898
898
|
"title": "Account Growth",
|
|
899
899
|
"subtitle": "The number of new accounts added per day on the Conflux network.",
|
|
900
|
-
"yAxisTitle": "
|
|
901
|
-
"seriesName": "
|
|
900
|
+
"yAxisTitle": "# of New Accounts",
|
|
901
|
+
"seriesName": "# of New Accounts (Day)"
|
|
902
902
|
},
|
|
903
903
|
"activeAccounts": {
|
|
904
904
|
"title": "Active Accounts",
|
|
@@ -897,8 +897,8 @@
|
|
|
897
897
|
"accountGrowth": {
|
|
898
898
|
"title": "Account Growth",
|
|
899
899
|
"subtitle": "The number of new accounts added per day on the Conflux network.",
|
|
900
|
-
"yAxisTitle": "
|
|
901
|
-
"seriesName": "
|
|
900
|
+
"yAxisTitle": "# of New Accounts",
|
|
901
|
+
"seriesName": "# of New Accounts (Day)"
|
|
902
902
|
},
|
|
903
903
|
"activeAccounts": {
|
|
904
904
|
"title": "Active Accounts",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../cspace/zh_cn/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import cn from './translation.json';
|
|
2
|
+
import cnDotNet from './translationForDotNet.json';
|
|
3
|
+
Object.keys(cnDotNet).forEach((key) => {
|
|
4
|
+
const item = cnDotNet[key];
|
|
5
|
+
if (item && typeof item === 'object') {
|
|
6
|
+
}
|
|
7
|
+
else {
|
|
8
|
+
const cnItem = cn[key];
|
|
9
|
+
if (cnItem === item) {
|
|
10
|
+
delete cnDotNet[key];
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
console.log('cnDotNet', cnDotNet);
|