@cfxjs/sirius-next-i18n 0.1.32 → 0.2.0

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,4 @@
1
-
2
- 
3
- > @cfxjs/sirius-next-i18n@0.1.32 build /Users/mac/Desktop/code/sirius-next/packages/i18n
4
- > tsc
5
-
1
+
2
+ > @cfxjs/sirius-next-i18n@0.2.0 build /home/runner/work/sirius-next/sirius-next/packages/i18n
3
+ > tsc
4
+
@@ -1721,12 +1721,12 @@
1721
1721
  },
1722
1722
  "modal": {
1723
1723
  "title": "Connect to a wallet",
1724
- "installFluentWallet": "Install Wallet",
1724
+ "installFluentWallet": "Install Fluent Wallet",
1725
1725
  "fluentWallet": "MetaMask",
1726
1726
  "initializing": "Initializing...",
1727
1727
  "errorConnecting": "Error connecting...",
1728
1728
  "tryAgain": "Try again",
1729
- "newToConflux": "",
1729
+ "newToConflux": "New to Conflux?",
1730
1730
  "learnMore": "Learn more about wallets.",
1731
1731
  "account": "Account",
1732
1732
  "connectedWithFluentWallet": "Connected with Wallet",
@@ -1721,12 +1721,12 @@
1721
1721
  },
1722
1722
  "modal": {
1723
1723
  "title": "Connect to a wallet",
1724
- "installFluentWallet": "Install Wallet",
1724
+ "installFluentWallet": "Install Fluent Wallet",
1725
1725
  "fluentWallet": "MetaMask",
1726
1726
  "initializing": "Initializing...",
1727
1727
  "errorConnecting": "Error connecting...",
1728
1728
  "tryAgain": "Try again",
1729
- "newToConflux": "",
1729
+ "newToConflux": "New to Conflux?",
1730
1730
  "learnMore": "Learn more about wallets.",
1731
1731
  "account": "Account",
1732
1732
  "connectedWithFluentWallet": "Connected with Wallet",
@@ -1718,12 +1718,12 @@
1718
1718
  },
1719
1719
  "modal": {
1720
1720
  "title": "请连接您的钱包",
1721
- "installFluentWallet": "安装钱包",
1721
+ "installFluentWallet": "安装 Fluent Wallet",
1722
1722
  "fluentWallet": "MetaMask",
1723
1723
  "initializing": "正在初始化...",
1724
1724
  "errorConnecting": "连接错误...",
1725
1725
  "tryAgain": "重试",
1726
- "newToConflux": "",
1726
+ "newToConflux": "Conflux 的新用户?",
1727
1727
  "learnMore": "进一步了解钱包。",
1728
1728
  "account": "账户",
1729
1729
  "connectedWithFluentWallet": "已连接钱包",
package/package.json CHANGED
@@ -1,14 +1,22 @@
1
1
  {
2
2
  "name": "@cfxjs/sirius-next-i18n",
3
- "version": "0.1.32",
3
+ "version": "0.2.0",
4
4
  "files": [
5
5
  "*/**"
6
6
  ],
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/Conflux-Chain/sirius-next"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/Conflux-Chain/sirius-next/issues"
13
+ },
14
+ "homepage": "https://github.com/Conflux-Chain/sirius-next",
7
15
  "devDependencies": {
8
16
  "@turbo/gen": "^1.12.4",
9
17
  "typescript": "^5.4.2",
10
- "@cfxjs/sirius-next-typescript-config": "0.0.0",
11
- "@cfxjs/sirius-next-eslint-config": "0.0.0"
18
+ "@cfxjs/sirius-next-eslint-config": "0.0.0",
19
+ "@cfxjs/sirius-next-typescript-config": "0.0.0"
12
20
  },
13
21
  "publishConfig": {
14
22
  "access": "public"
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../cspace/zh_cn/index.ts"],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
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);