@arronqzy/i18n 0.1.10 → 0.1.12
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 +11 -0
- package/src/locales/zh-CN.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arronqzy/i18n",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
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/typescript-config": "1.0.0",
|
|
35
|
+
"@arronqzy/eslint-config": "0.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
package/src/locales/en-US.ts
CHANGED
|
@@ -1004,9 +1004,20 @@ export const enUS = {
|
|
|
1004
1004
|
workspaceLoaded: "Workspace loaded",
|
|
1005
1005
|
workspaceLoadedDesc: "View and blueprint restored",
|
|
1006
1006
|
openWorkspaceFailed: "Failed to open workspace",
|
|
1007
|
+
createWorkspaceFailed: "Failed to create workspace",
|
|
1007
1008
|
syncFailed: "Sync failed",
|
|
1009
|
+
deleteWorkspaceFailed: "Failed to delete workspace",
|
|
1008
1010
|
workspaceDeleted: "Workspace deleted",
|
|
1009
1011
|
openPreviewFailed: "Failed to open preview",
|
|
1012
|
+
workspaceStorageUnavailable:
|
|
1013
|
+
"Local storage is unavailable (private mode, permissions, or embedded page). Try another browser or exit private mode.",
|
|
1014
|
+
workspaceStorageTimeout:
|
|
1015
|
+
"Local storage timed out. Close extra tabs and try again.",
|
|
1016
|
+
workspaceStorageQuotaExceeded:
|
|
1017
|
+
"Local storage is full. Delete unused workspaces or reduce large media assets, then retry.",
|
|
1018
|
+
workspaceStorageSerializeFailed:
|
|
1019
|
+
"Workspace data could not be serialized. Remove non-persistable objects and retry.",
|
|
1020
|
+
workspaceStorageFailed: "Failed to write the local workspace. Please try again.",
|
|
1010
1021
|
clearedBlueprintLogs: "Cleared {removed} blueprint log(s) from IndexedDB",
|
|
1011
1022
|
noSavedBlueprintLogs: "No saved logs in IndexedDB",
|
|
1012
1023
|
mergeNeedTwoLayers: "Select at least 2 layers to merge",
|
package/src/locales/zh-CN.ts
CHANGED
|
@@ -1001,9 +1001,19 @@ export const zhCN = {
|
|
|
1001
1001
|
workspaceLoaded: "工作区已加载",
|
|
1002
1002
|
workspaceLoadedDesc: "视图与蓝图已恢复",
|
|
1003
1003
|
openWorkspaceFailed: "打开工作区失败",
|
|
1004
|
+
createWorkspaceFailed: "创建工作区失败",
|
|
1004
1005
|
syncFailed: "同步失败",
|
|
1006
|
+
deleteWorkspaceFailed: "删除工作区失败",
|
|
1005
1007
|
workspaceDeleted: "工作区已删除",
|
|
1006
1008
|
openPreviewFailed: "打开预览失败",
|
|
1009
|
+
workspaceStorageUnavailable:
|
|
1010
|
+
"当前环境无法使用本地存储(隐私模式、权限受限或嵌入页限制)。请换浏览器或关闭隐私模式后重试。",
|
|
1011
|
+
workspaceStorageTimeout: "本地存储响应超时,请关闭多余标签页后重试。",
|
|
1012
|
+
workspaceStorageQuotaExceeded:
|
|
1013
|
+
"本地存储空间不足。请删除不用的工作区,或减少大图/音视频资源后重试。",
|
|
1014
|
+
workspaceStorageSerializeFailed:
|
|
1015
|
+
"工作区数据无法序列化保存。请检查是否含有不可保存的特殊对象后重试。",
|
|
1016
|
+
workspaceStorageFailed: "写入本地工作区失败,请稍后重试。",
|
|
1007
1017
|
clearedBlueprintLogs: "已清空 IndexedDB 中 {removed} 条蓝图日志",
|
|
1008
1018
|
noSavedBlueprintLogs: "IndexedDB 中暂无已保存日志",
|
|
1009
1019
|
mergeNeedTwoLayers: "至少勾选 2 个图层后可合并",
|