@arronqzy/i18n 0.1.13 → 0.1.14
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/package.json +3 -3
- package/src/locales/en-US.ts +4 -0
- package/src/locales/zh-CN.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arronqzy/i18n",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Shared Chinese/English i18n for Abuilder (React + Vue)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"react": "^19",
|
|
32
32
|
"typescript": "^5.5.4",
|
|
33
33
|
"vue": "^3.5.13",
|
|
34
|
-
"@arronqzy/
|
|
35
|
-
"@arronqzy/
|
|
34
|
+
"@arronqzy/eslint-config": "0.0.0",
|
|
35
|
+
"@arronqzy/typescript-config": "1.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
package/src/locales/en-US.ts
CHANGED
|
@@ -128,6 +128,10 @@ export const enUS = {
|
|
|
128
128
|
outputScale: "Output scale",
|
|
129
129
|
outputScaleHint:
|
|
130
130
|
"On: fonts and content scale as the preview fills the screen. Off: blocks still fill the screen, but content stays original size to avoid distortion",
|
|
131
|
+
about: "About",
|
|
132
|
+
versionLabel: "Version",
|
|
133
|
+
versionValue: "{version}",
|
|
134
|
+
versionUnavailable: "Unknown",
|
|
131
135
|
productName: "Product name",
|
|
132
136
|
productNamePlaceholder: "Enter the current build product name",
|
|
133
137
|
uploadTitleIcon: "Upload title icon",
|
package/src/locales/zh-CN.ts
CHANGED
|
@@ -126,6 +126,10 @@ export const zhCN = {
|
|
|
126
126
|
fontLarge: "字体:大",
|
|
127
127
|
outputScale: "产出缩放",
|
|
128
128
|
outputScaleHint: "开启后预览撑满时字体和内容一起缩放;关闭后块仍撑满全屏,但内容保持原尺寸以免失真",
|
|
129
|
+
about: "关于",
|
|
130
|
+
versionLabel: "版本",
|
|
131
|
+
versionValue: "{version}",
|
|
132
|
+
versionUnavailable: "未知",
|
|
129
133
|
productName: "产物名称",
|
|
130
134
|
productNamePlaceholder: "请输入当前构建产物名称",
|
|
131
135
|
uploadTitleIcon: "上传 title 图标",
|