@cfxjs/sirius-next-i18n 0.1.2 → 0.1.4

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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @cfxjs/sirius-next-i18n@0.1.2 build /Users/shine/Documents/conflux/sirius-next/packages/i18n
3
+ > @cfxjs/sirius-next-i18n@0.1.4 build /Users/mac/Desktop/code/sirius-next/packages/i18n
4
4
  > tsc
5
5
 
@@ -1532,7 +1532,7 @@
1532
1532
  "value": "Value",
1533
1533
  "gasUsed": "Limit | Gas Used | Gas Charged",
1534
1534
  "gasPrice": "Gas Price",
1535
- "gasFee": "Gas Fee",
1535
+ "gasFee": "Gas Fees",
1536
1536
  "transactionFee": "Transaction Fee",
1537
1537
  "baseFee": "Base:",
1538
1538
  "maxFee": "Max:",
@@ -699,7 +699,7 @@
699
699
  "storageBurn": "存储抵押销毁量",
700
700
  "baseFeeBurntRate": "基础费销毁率",
701
701
  "storageBurntRate": "存储抵押销毁率",
702
- "learnMore": "Learn more",
702
+ "learnMore": "了解更多",
703
703
  "CIP-1559Metrics": "CIP-1559 数据指标",
704
704
  "CIP-1559MetricsTips": "仪表数据统计ConfluxCore区块基于CIP-1559的指标数据,包括基础费,平均优先费,燃料使用量和交易类型占比。",
705
705
  "BaseFeePerBlock": "区块基础费",
@@ -1531,7 +1531,7 @@
1531
1531
  "value": "Value",
1532
1532
  "gasUsed": "Limit | Gas Used | Gas Charged",
1533
1533
  "gasPrice": "Gas Price",
1534
- "gasFee": "Gas Fee",
1534
+ "gasFee": "Gas Fees",
1535
1535
  "transactionFee": "Transaction Fee",
1536
1536
  "baseFee": "Base:",
1537
1537
  "maxFee": "Max:",
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -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);