clawui 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/README_zh.md +28 -0
  2. package/package.json +10 -16
package/README_zh.md ADDED
@@ -0,0 +1,28 @@
1
+
2
+ 简体中文 | [English](./README.md)
3
+
4
+ ## 概览
5
+
6
+ **clawui** 将 OpenClaw 用户界面翻译成多种语言。
7
+
8
+ 支持的国家语言如下:
9
+
10
+ ```
11
+ 简体中文 - zh
12
+ 日语 - ja
13
+ 韩语 - ko
14
+ 法语 - fr
15
+ 德语 - de
16
+ 意大利语 - it
17
+ 葡萄牙语 - pt
18
+ 西班牙语 - es
19
+ 越南语 - vi
20
+ 菲律宾语 - fi
21
+ ```
22
+
23
+ ## 安装
24
+
25
+ ```bash
26
+ npm install g clawui
27
+ clawui locale
28
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawui",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Translate the OpenClaw UI into multiple languages",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,6 +13,7 @@
13
13
  "files": [
14
14
  "dist",
15
15
  "README.md",
16
+ "README_zh.md",
16
17
  "LICENSE",
17
18
  "locales"
18
19
  ],
@@ -21,27 +22,20 @@
21
22
  },
22
23
  "dependencies": {
23
24
  "@clack/prompts": "^1.0.1",
24
- "commander": "^14.0.3"
25
+ "clawui": "^0.0.1",
26
+ "commander": "^14.0.3",
27
+ "g": "^2.0.1"
25
28
  },
26
29
  "devDependencies": {
27
- "bun": "^1.3.9",
28
30
  "@types/bun": "^1.3.9",
29
- "@types/node": "^25.2.3"
31
+ "@types/node": "^25.2.3",
32
+ "bun": "^1.3.9"
30
33
  },
31
- "repository": {
32
- "type": "git",
33
- "url": "git+https://github.com/openlark/openclaw-ui-locales.git"
34
- },
35
- "bugs": {
36
- "url": "https://github.com/openlark/openclaw-ui-locales/issues"
37
- },
38
- "homepage": "https://github.com/openlark/openclaw-ui-locales#readme",
39
34
  "keywords": [
40
- "openclaw-ui-locales",
41
- "claw",
42
- "openclaw",
43
35
  "clawui",
36
+ "openclaw",
37
+ "claw",
44
38
  "locales"
45
39
  ],
46
40
  "license": "MIT"
47
- }
41
+ }