@cfxjs/sirius-next-i18n 0.1.8 → 0.1.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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @cfxjs/sirius-next-i18n@0.1.8 build /Users/shine/Documents/conflux/sirius-next/packages/i18n
3
+ > @cfxjs/sirius-next-i18n@0.1.9 build /Users/mac/Desktop/code/sirius-next/packages/i18n
4
4
  > tsc
5
5
 
@@ -1834,7 +1834,7 @@
1834
1834
  "chainID": "交易被发往的区块链的编号,用以防止重放攻击。",
1835
1835
  "inputData": "自定义数据,该交易中附加的信息。",
1836
1836
  "txnType": {
1837
- "0": "传统交易: 0x0交易类型是传统交易, 使用 CIP-2718 引入类型交易之前存在的交易格式。交易包含参数: nounce、gasPrice、gasLimit、to、value、data、v、r和s。",
1837
+ "0": "传统交易: 0x0交易类型是传统交易, 使用 CIP-2718 引入类型交易之前存在的交易格式。交易包含参数: nonce、gasPrice、gasLimit、to、value、data、v、r和s。",
1838
1838
  "1": "访问列表交易: 类型为0x1的交易是CIP-2930引入的交易。除了传统参数外, 还包含一个访问列表参数, 该参数指定了交易计划访问的地址数组和存储键。",
1839
1839
  "2": "CIP-1559交易: 类型为0x2的交易是CIP-1559引入的交易。交易使用协议中在每个Pivot区块动态变化的基础Gas费用, 基础Gas费用会根据Gas目标进行调整, 以应对网络拥塞。"
1840
1840
  }
@@ -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);