@hoardodile/i18n 0.0.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.
Files changed (50) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +81 -0
  3. package/dist/catalogs/ui.d.ts +2 -0
  4. package/dist/catalogs/ui.js +449 -0
  5. package/dist/catalogs/ui.js.map +1 -0
  6. package/dist/catalogs/workbench.d.ts +291 -0
  7. package/dist/catalogs/workbench.js +250 -0
  8. package/dist/catalogs/workbench.js.map +1 -0
  9. package/dist/catalogs-BF4px4Mm.d.ts +12986 -0
  10. package/dist/catalogs.d.ts +2 -0
  11. package/dist/catalogs.js +10794 -0
  12. package/dist/catalogs.js.map +1 -0
  13. package/dist/core.d.ts +32 -0
  14. package/dist/core.js +14 -0
  15. package/dist/core.js.map +1 -0
  16. package/dist/create-i18n.d.ts +35 -0
  17. package/dist/create-i18n.js +30 -0
  18. package/dist/create-i18n.js.map +1 -0
  19. package/dist/index.d.ts +42 -0
  20. package/dist/index.js +11284 -0
  21. package/dist/index.js.map +1 -0
  22. package/dist/react.d.ts +1 -0
  23. package/dist/react.js +3 -0
  24. package/dist/react.js.map +1 -0
  25. package/dist/ui-CJPMCZT7.d.ts +548 -0
  26. package/package.json +81 -0
  27. package/src/catalogs/de.json +2155 -0
  28. package/src/catalogs/en.json +2155 -0
  29. package/src/catalogs/es.json +2155 -0
  30. package/src/catalogs/ja.json +2155 -0
  31. package/src/catalogs/ui.ts +30 -0
  32. package/src/catalogs/workbench.ts +29 -0
  33. package/src/catalogs/zh.json +2155 -0
  34. package/src/catalogs.ts +31 -0
  35. package/src/core.ts +40 -0
  36. package/src/create-i18n.ts +52 -0
  37. package/src/index.ts +66 -0
  38. package/src/language.test.ts +70 -0
  39. package/src/parity.test.ts +175 -0
  40. package/src/react.ts +25 -0
  41. package/src/ui/de.json +86 -0
  42. package/src/ui/en.json +86 -0
  43. package/src/ui/es.json +86 -0
  44. package/src/ui/ja.json +86 -0
  45. package/src/ui/zh.json +86 -0
  46. package/src/workbench/de.json +45 -0
  47. package/src/workbench/en.json +45 -0
  48. package/src/workbench/es.json +45 -0
  49. package/src/workbench/ja.json +45 -0
  50. package/src/workbench/zh.json +45 -0
@@ -0,0 +1,2155 @@
1
+ {
2
+ "common": {
3
+ "back": "返回",
4
+ "cancel": "取消",
5
+ "close": "关闭",
6
+ "save": "保存",
7
+ "saving": "保存中…",
8
+ "loading": "加载中…",
9
+ "remove": "移除",
10
+ "removeAria": "移除",
11
+ "edit": "编辑",
12
+ "delete": "删除",
13
+ "rename": "重命名",
14
+ "confirm": "确定",
15
+ "expand": "展开",
16
+ "collapse": "折叠",
17
+ "working": "处理中…",
18
+ "prev": "上一页",
19
+ "next": "下一页",
20
+ "previous": "上一个",
21
+ "first": "首页",
22
+ "last": "末页",
23
+ "jumpToPage": "页",
24
+ "go": "跳转",
25
+ "goTo": "跳至",
26
+ "unknownError": "未知错误",
27
+ "error": "错误",
28
+ "loadFailed": "加载失败",
29
+ "show": "显示",
30
+ "hide": "隐藏",
31
+ "selected": "已选",
32
+ "available": "可选",
33
+ "allSelected": "全部选中",
34
+ "tags": "标签",
35
+ "filterCategory": "筛选{{name}}…",
36
+ "requestFailed": "请求失败",
37
+ "saved": "已保存",
38
+ "saveFailed": "保存失败",
39
+ "confirmByTypingPrompt": "请输入“<name>{{name}}</name>”以确认",
40
+ "searchIncludeIntro": "搜索简介",
41
+ "underline": "下划线",
42
+ "colorPicker": {
43
+ "customColor": "自定义颜色"
44
+ }
45
+ },
46
+ "entityMeta": {
47
+ "nameLabel": "名称",
48
+ "namePlaceholder": "例如:harbor",
49
+ "introLabel": "简介",
50
+ "introPlaceholder": "简短描述…",
51
+ "colorLabel": "颜色",
52
+ "colorPlaceholder": "可选 CSS 颜色,留空使用默认",
53
+ "pinned": "置顶"
54
+ },
55
+ "language": {
56
+ "label": "语言",
57
+ "description": "界面语言——内容保留原有文字。",
58
+ "english": "English",
59
+ "chinese": "中文",
60
+ "japanese": "日本語",
61
+ "german": "Deutsch",
62
+ "spanish": "Español"
63
+ },
64
+ "icons": {
65
+ "description": "Solar 图标——双色跟随主题,灰度保持双色墨色,线性保持单色。",
66
+ "style": {
67
+ "duotone": "双色",
68
+ "grayscale": "灰度",
69
+ "linear": "细线"
70
+ }
71
+ },
72
+ "theme": {
73
+ "description": "一套色板,以及是否跟随日光。",
74
+ "modeLabel": "模式",
75
+ "paletteLabel": "主题",
76
+ "mode": {
77
+ "light": "浅色",
78
+ "dark": "深色",
79
+ "system": "系统"
80
+ },
81
+ "palette": {
82
+ "mono": "纯黑白",
83
+ "sage": "鼠尾草",
84
+ "parchment": "羊皮纸",
85
+ "azure": "天青",
86
+ "hoardodile": "Hoardodile"
87
+ }
88
+ },
89
+ "font": {
90
+ "label": "字体",
91
+ "description": "界面与列表——文档保持其阅读音色。"
92
+ },
93
+ "dateTime": {
94
+ "description": "日期如何呈现——现在:{{preview}}。",
95
+ "formatLabel": "格式",
96
+ "timeZoneLabel": "时区",
97
+ "format": {
98
+ "ymdDash": "2024-06-12 14:30:00",
99
+ "ymdSlash": "2024/06/12 14:30:00",
100
+ "dmySlash": "12/06/2024 14:30:00",
101
+ "mdySlash": "06/12/2024 14:30:00"
102
+ },
103
+ "timeZone": {
104
+ "auto": "跟随系统",
105
+ "noMatches": "暂无匹配时区。"
106
+ }
107
+ },
108
+ "appShell": {
109
+ "primaryNav": "主导航",
110
+ "secondaryNav": "辅助导航",
111
+ "openMenu": "打开菜单",
112
+ "backToMainMenu": "返回主菜单",
113
+ "backToDocumentsMenu": "返回文档菜单",
114
+ "nav": {
115
+ "overview": "总览",
116
+ "resources": "资源",
117
+ "characters": "角色",
118
+ "documents": "文档",
119
+ "messages": "留言",
120
+ "me": "设置",
121
+ "feedbackAbout": "反馈与关于",
122
+ "help": "帮助"
123
+ },
124
+ "syncDueBadge": "有同步提醒待处理",
125
+ "syncStatus": {
126
+ "synced": "已同步",
127
+ "due": "同步到期",
128
+ "syncedTitle_one": "已是最新——{{count}} 台设备",
129
+ "syncedTitle_other": "已是最新——{{count}} 台设备",
130
+ "dueTitle_one": "{{count}} 台设备有同步提醒待处理",
131
+ "dueTitle_other": "{{count}} 台设备有同步提醒待处理",
132
+ "noDevicesTitle": "暂无同步设备。"
133
+ }
134
+ },
135
+ "search": {
136
+ "placeholder": "搜索角色、资源、文档、留言…",
137
+ "placeholderShort": "搜索",
138
+ "liveSearch": "实时搜索",
139
+ "sectionTitles": {
140
+ "characters": "角色",
141
+ "resources": "资源",
142
+ "documents": "文档",
143
+ "messages": "留言"
144
+ },
145
+ "sectionCount": "({{count}})",
146
+ "viewAll": "查看全部 ({{count}})",
147
+ "empty": {
148
+ "title": "暂无结果。",
149
+ "description": "换个关键词试试。"
150
+ },
151
+ "resultLabels": {
152
+ "document": "文档",
153
+ "folder": "文件夹"
154
+ },
155
+ "imageSearch": {
156
+ "button": "以图搜图",
157
+ "uploadFailed": "图片搜索失败",
158
+ "title": "以图搜图结果",
159
+ "empty": "图库中暂无相似图片。",
160
+ "clear": "清除图片搜索",
161
+ "queryAlt": "查询图片",
162
+ "similarity": "相似度 {{percent}}%"
163
+ }
164
+ },
165
+ "me": {
166
+ "tabs": {
167
+ "preferences": "偏好",
168
+ "data": "数据",
169
+ "about": "关于",
170
+ "desktop": "桌面",
171
+ "custom": "自制",
172
+ "privacy": "隐私",
173
+ "archive": "归档",
174
+ "plugins": "插件",
175
+ "sync": "同步"
176
+ },
177
+ "section": {
178
+ "language": "语言",
179
+ "icons": "图标",
180
+ "theme": "主题",
181
+ "font": "字体",
182
+ "dateTime": "日期与时间",
183
+ "tagRules": "标签规则",
184
+ "rebuild": "重建",
185
+ "trash": "回收站",
186
+ "usage": "使用足迹",
187
+ "trace": "操作足迹",
188
+ "privacy": "隐私与安全"
189
+ },
190
+ "custom": {
191
+ "tab": {
192
+ "tags": "标签",
193
+ "traits": "特征",
194
+ "relationships": "关系",
195
+ "collections": "资源组合"
196
+ },
197
+ "blurb": {
198
+ "tags": "分类组织标签;为所有内容设置标签。",
199
+ "traits": "角色携带的、可搜索的类型化事实。",
200
+ "relationships": "角色之间的动词。",
201
+ "collections": "精心挑选、固定在侧栏的架子。"
202
+ },
203
+ "unused": "未使用",
204
+ "reorder": "排序",
205
+ "add": "添加",
206
+ "more": "更多",
207
+ "filterTagsIn": "筛选 {{category}} 中的标签",
208
+ "tagsOf": "{{total}} 个标签中的 {{shown}} 个",
209
+ "unusedCount": "{{count}} 个未使用",
210
+ "newCategory": "新建分类",
211
+ "moveTag": "移动标签",
212
+ "moveTagDescription": "标签将离开当前分类——新分类中不能有同名标签。",
213
+ "moveTagOut": "移出 {{category}}",
214
+ "rulesTravel": "同级与父级规则会随标签一起移动。",
215
+ "entity": {
216
+ "tag": "标签",
217
+ "category": "分类",
218
+ "trait": "特征",
219
+ "relation": "关系",
220
+ "collection": "组合"
221
+ },
222
+ "link": "关联"
223
+ },
224
+ "account": {
225
+ "title": "账户",
226
+ "description": "单用户实例——账户守护大门。"
227
+ },
228
+ "privacy": {
229
+ "signOutSection": {
230
+ "title": "自动登出",
231
+ "description": "标签页隐藏超过设定时长后自动登出并回到登录页——这是防止预览缩略图的唯一彻底办法。"
232
+ },
233
+ "autoLogout": {
234
+ "title": "离开时自动登出",
235
+ "description": "标签页会监听可见性;超过时长后回到页面即落在登录页。"
236
+ },
237
+ "delayLabel": "离开多久后登出",
238
+ "delay": {
239
+ "immediately": "立即",
240
+ "minutes_one": "{{count}} 分钟",
241
+ "minutes_other": "{{count}} 分钟"
242
+ },
243
+ "idleTimeout": {
244
+ "label": "会话闲置超时",
245
+ "description": "在服务端生效,因此同样覆盖关闭的标签页与其他浏览器。",
246
+ "hours_one": "{{count}} 小时",
247
+ "hours_other": "{{count}} 小时",
248
+ "days_one": "{{count}} 天",
249
+ "days_other": "{{count}} 天"
250
+ }
251
+ },
252
+ "password": {
253
+ "title": "密码",
254
+ "description": "登录此实例所用的管理员密码。",
255
+ "changeButton": "修改密码",
256
+ "dialogTitle": "修改密码",
257
+ "currentPassword": "当前密码",
258
+ "newPassword": "新密码",
259
+ "confirm": "确认新密码",
260
+ "newPasswordPlaceholder": "至少 10 个字符",
261
+ "confirmPlaceholder": "再输入一次",
262
+ "changed": "密码已修改。",
263
+ "errorIncorrect": "当前密码不正确。",
264
+ "errorGeneric": "无法修改密码,请检查服务后重试。",
265
+ "mismatch": "两次输入的密码不一致。"
266
+ },
267
+ "licenses": {
268
+ "title": "许可证",
269
+ "description": "应用及内置素材的开源致谢。",
270
+ "viewButton": "许可证",
271
+ "projectLicense": "项目许可证",
272
+ "projectLicenseDescription": "本应用以 GNU 通用公共许可证第三版(GPL-3.0)发布。",
273
+ "fullLicense": "完整许可证",
274
+ "dependencies": "开源依赖",
275
+ "fonts": "字体",
276
+ "packageCount_one": "{{count}} 个包",
277
+ "packageCount_other": "{{count}} 个包",
278
+ "noPackages": "暂无依赖包。"
279
+ },
280
+ "about": {
281
+ "title": "关于",
282
+ "description": "你运行的是什么,以及它从何而来。",
283
+ "tagline": "面向自托管用户的现代数字囤积工具。",
284
+ "repository": "GitHub 仓库",
285
+ "website": "官网",
286
+ "bugTitle": "报告 Bug",
287
+ "bugDescription": "遇到了问题?提交 issue,帮我们修复。",
288
+ "bugAction": "提交 Issue",
289
+ "featureTitle": "功能建议",
290
+ "featureDescription": "缺少什么功能?告诉我们。",
291
+ "featureAction": "告诉我们",
292
+ "developerTitle": "开发者",
293
+ "checkUpdate": "检查更新",
294
+ "checking": "正在检查…",
295
+ "latest": "已是最新版本。",
296
+ "outdated": "发现新版本 {{version}}。",
297
+ "viewRelease": "查看发布页",
298
+ "updateError": "检查更新失败,请稍后重试。",
299
+ "downloading": "正在下载… {{percent}}%",
300
+ "updateReady": "版本 {{version}} 已就绪,可以安装。",
301
+ "updateReadyResources": "资源 v{{version}} 已就绪,可以应用。",
302
+ "applyResources": "应用",
303
+ "resourcesVersion": "资源 v{{version}}",
304
+ "restartToUpdate": "重启",
305
+ "portableHint": "便携版请从 GitHub 下载新的压缩包来更新。"
306
+ },
307
+ "connections": {
308
+ "title": "最近连接",
309
+ "description": "每次登录的设备、IP 与时间。数据只保存在本机,超过 90 天自动清除。",
310
+ "empty": "暂无登录记录。",
311
+ "loopback": "本机"
312
+ },
313
+ "desktop": {
314
+ "library": {
315
+ "title": "内容库文件夹",
316
+ "description": "应用存放归档的位置。更换文件夹会重新启动;不会复制或移动文件。",
317
+ "change": "更换文件夹",
318
+ "confirmTitle": "切换内容库文件夹?",
319
+ "confirmDescription": "应用将针对你选择的文件夹重新启动。空文件夹是新内容库。含有 app.sqlite 的文件夹就是该内容库。不会复制或移动任何文件。"
320
+ },
321
+ "sharedFolder": {
322
+ "title": "共享文件夹",
323
+ "description": "导入时「浏览共享文件夹」的起点。",
324
+ "enable": "启用共享文件夹导入",
325
+ "enableDescription": "开启后,导入页的「浏览共享文件夹」会从这个文件夹开始。"
326
+ },
327
+ "lan": {
328
+ "title": "本地网络访问",
329
+ "description": "让同一个 Wi-Fi 或网络里的手机和电脑也能访问本应用。",
330
+ "enable": "允许从本地网络访问",
331
+ "enableDescription": "同一网络中的任何人需要知道你的密码才能登录。首次开启时,Windows 会请求防火墙放行。",
332
+ "applying": "正在应用…",
333
+ "portTitle": "端口",
334
+ "portDescription": "本机与局域网共用一个端口;应用后服务器会重启。",
335
+ "portApply": "应用",
336
+ "copy": "复制",
337
+ "copied": "地址已复制",
338
+ "copyFailed": "复制失败",
339
+ "passwordRequired": "未启用局域网访问——请先设置管理员密码。",
340
+ "weakPasswordTitle": "你的管理员密码强度较弱",
341
+ "weakPasswordDescription": "任何人猜到密码都可以访问整个内容库。请先在 设置 → 修改密码 中设置更强的密码,或仍然启用共享。",
342
+ "enableAnyway": "仍然启用共享",
343
+ "primaryHint": "用同一 Wi-Fi 的手机或电脑打开",
344
+ "portAdjustedTitle": "端口 {{preferred}} 被占用,服务器已在 {{actual}} 上运行。",
345
+ "portAdjustedHint": "从其他设备访问时请使用新端口。",
346
+ "portAdjustedDismiss": "关闭提示",
347
+ "moreAddresses": "其他地址({{count}})— 虚拟网卡、VPN 等",
348
+ "noAddresses": "没有找到可访问的地址,请检查网络连接。"
349
+ },
350
+ "autostart": {
351
+ "title": "开机启动",
352
+ "description": "登录 Windows 时打开 hoardodile。"
353
+ },
354
+ "startInTray": {
355
+ "title": "启动到托盘",
356
+ "description": "在托盘中选择打开之前不显示窗口。"
357
+ },
358
+ "autoUpdate": {
359
+ "title": "自动更新",
360
+ "description": "在后台下载 GitHub 发行版。重启前始终需要确认。"
361
+ },
362
+ "closeAction": {
363
+ "title": "关闭窗口时",
364
+ "description": "标题栏关闭按钮的行为——每次询问、最小化到托盘或退出应用。",
365
+ "ask": "每次询问",
366
+ "tray": "最小化到托盘",
367
+ "quit": "退出应用"
368
+ },
369
+ "updateBanner": "版本 {{version}} 已就绪,可以安装。",
370
+ "updateBannerResources": "资源 v{{version}} 已就绪,可以应用。",
371
+ "updateBannerRestart": "重启",
372
+ "updateBannerApply": "应用",
373
+ "updateApplying": "正在应用资源更新…",
374
+ "updatePhaseStopping": "正在停止本地服务…",
375
+ "updatePhaseSwapping": "正在替换服务文件…",
376
+ "updatePhaseStarting": "正在启动本地服务…",
377
+ "shellCache": {
378
+ "title": "Shell 缓存",
379
+ "description": "应用窗口自身的磁盘缓存——HTTP 响应、编译代码与 GPU 着色器——以及已下载的更新包。清理不会影响 cookies、你的偏好或离线数据,应用会立即从本地服务器重新获取。已就绪待安装的更新包会保留。",
380
+ "currentSize": "{{size}}",
381
+ "unavailable": "无法获取",
382
+ "clear": "清除缓存",
383
+ "clearing": "正在清除…",
384
+ "confirmTitle": "清除 Shell 缓存?",
385
+ "confirmDescription": "应用窗口将在下次访问时从本地服务器重新获取文件。cookies、偏好与离线数据不受影响。已就绪待安装的更新包会保留。",
386
+ "toastCleared": "Shell 缓存已清除,释放 {{bytes}}。",
387
+ "clearFailed": "清除 Shell 缓存失败。"
388
+ }
389
+ },
390
+ "usage": {
391
+ "description": "统计与足迹日志背后的会话数据——清空需要输入确认短语。",
392
+ "rowTitle": "使用会话",
393
+ "rowDescription": "统计页背后的数据。",
394
+ "clearAll": "全部移除",
395
+ "confirmTitle": "清空所有使用记录?",
396
+ "confirmDescription": "将永久删除全部使用记录,统计页与总览推荐会重置。此操作无法撤销。",
397
+ "confirmPhrase": "清空所有使用记录",
398
+ "confirmLabel": "确认清空",
399
+ "clearing": "清空中…",
400
+ "toastSuccess": "已清空所有使用记录",
401
+ "toastFailed": "清空使用记录失败"
402
+ },
403
+ "trace": {
404
+ "description": "追加式操作日志——导入、导出、删除、恢复与表态。",
405
+ "rowTitle": "足迹日志",
406
+ "clearAll": "全部移除",
407
+ "confirmTitle": "清空足迹?",
408
+ "confirmDescription": "将永久删除全部操作记录(导入、导出、删除、恢复与表态),不可恢复。翻阅时长属于统计数据,不受影响。",
409
+ "confirmPhrase": "清空足迹",
410
+ "confirmLabel": "确认清空",
411
+ "clearing": "清空中…",
412
+ "toastSuccess": "已清空足迹",
413
+ "toastFailed": "清空足迹失败"
414
+ },
415
+ "trash": {
416
+ "description": "待处理的包——每一个都能回来。",
417
+ "view": "查看回收站 ({{count}})",
418
+ "loading": "加载回收站…",
419
+ "download": "下载"
420
+ },
421
+ "systemPrefs": {
422
+ "title": "系统默认值",
423
+ "description": "隐藏的主机行为开关——恢复为出厂默认值。插件设置不受影响,仍在其对应的插件页中管理。",
424
+ "restore": "恢复",
425
+ "resetSuccess": "所有系统设置已重置",
426
+ "confirmTitle": "重置全部系统设置?",
427
+ "confirmDescription": "这将删除所有系统偏好,包括主题、语言、字体和日期格式。页面将使用默认值重新加载。此操作无法撤销。"
428
+ },
429
+ "systemCache": {
430
+ "title": "浏览器缓存",
431
+ "description": "浏览器侧的本地数据——Service Worker 缓存、localStorage 与 IndexedDB(离线使用队列、文档草稿)。不会触碰服务器,随后页面将重新加载。",
432
+ "clear": "全部清空",
433
+ "clearing": "清空中…",
434
+ "resetting": "浏览器缓存已清空,正在重新加载…",
435
+ "confirmTitle": "清空浏览器缓存?",
436
+ "confirmDescription": "这将删除所有浏览器侧本地数据,包括主题与语言偏好、离线使用记录和已保存的文档草稿,然后重新加载页面。此操作无法撤销。"
437
+ }
438
+ },
439
+ "plugin": {
440
+ "loading": "预览加载中…",
441
+ "previewFailed": "插件加载失败",
442
+ "previewFallback": "插件 {{name}} 缺失或不可用,已用内置文件插件预览",
443
+ "previewFallbackManage": "管理插件",
444
+ "previewFallbackUnknown": "未知插件"
445
+ },
446
+ "plugins": {
447
+ "pageHint": "从 .zip 包安装,或重新扫描插件文件夹以拾取新到的插件。",
448
+ "uploadZip": "上传 .zip",
449
+ "uploadPluginSuccess": "插件已安装",
450
+ "uploading": "安装中…",
451
+ "rescan": "重新扫描插件",
452
+ "rescanSuccess": "插件已重新扫描",
453
+ "more": "更多",
454
+ "enableToggle": "启用或禁用插件",
455
+ "dragToReorder": "拖拽调整顺序",
456
+ "dev": "开发",
457
+ "missing": "缺失",
458
+ "missingSource": "来源缺失",
459
+ "installed": "已安装",
460
+ "installedDescription": "顺序决定谁优先认领内容——拖拽可调整优先级。",
461
+ "filterPlaceholder": "筛选插件",
462
+ "countInstalled": "已安装 {{count}} 个",
463
+ "listView": "列表视图",
464
+ "gridView": "网格视图",
465
+ "searchCategories": "搜索分类",
466
+ "fileTitle": "文件",
467
+ "fileDescription": "未知文件类型的内置兜底查看器——不可移除或排序。",
468
+ "alwaysOn": "始终开启",
469
+ "defaultsTitle": "插件默认设置",
470
+ "defaultsDescription": "所有插件的设置将恢复默认——内容和安装不受影响。",
471
+ "restore": "恢复默认",
472
+ "cachesTitle": "插件缓存",
473
+ "cachesDescription": "所有插件的缩略图和解析元数据——按需重建。",
474
+ "clearAll": "全部清空",
475
+ "pin": "置顶",
476
+ "color": "颜色",
477
+ "appearance": "外观",
478
+ "appearanceTitle": "外观:{{name}}",
479
+ "appearanceDescription": "选择颜色,并决定是否将该插件置顶显示在资源卡片上。",
480
+ "reset": "重置",
481
+ "clear": "清空",
482
+ "resetPluginPref": "恢复设置",
483
+ "resetPluginPrefConfirmTitle": "重置 {{name}} 的设置?",
484
+ "resetPluginPrefConfirmDescription": "这将删除此插件的所有已保存设置。插件将在重启后使用默认值。此操作无法撤销。",
485
+ "resetPluginPrefSuccess": "{{name}} 的设置已重置",
486
+ "clearPluginCache": "清空缓存",
487
+ "clearPluginCacheConfirmTitle": "清空 {{name}} 的缓存?",
488
+ "clearPluginCacheConfirmDescription": "这将删除此插件的所有缓存数据(如阅读进度)。此操作无法撤销。",
489
+ "clearPluginCacheSuccess": "{{name}} 的缓存已清空",
490
+ "uninstall": "卸载",
491
+ "uninstallConfirmTitle": "卸载插件 {{name}}?",
492
+ "uninstallConfirmDescription_one": "有 {{count}} 个资源正在使用该插件。卸载后这些资源将改用内置文件插件预览;重新安装该插件可自动恢复。此操作无法撤销。",
493
+ "uninstallConfirmDescription_other": "有 {{count}} 个资源正在使用该插件。卸载后这些资源将改用内置文件插件预览;重新安装该插件可自动恢复。此操作无法撤销。",
494
+ "uninstallConfirmNoUsage": "没有资源正在使用该插件。卸载后如需恢复,重新安装即可。此操作无法撤销。",
495
+ "uninstallSuccess": "已卸载 {{name}}",
496
+ "resetAllPluginPrefSuccess": "所有插件设置已重置",
497
+ "resetAllPluginPrefConfirmTitle": "重置全部插件设置?",
498
+ "resetAllPluginPrefConfirmDescription": "这将删除所有插件的已保存设置。所有插件将在重启后使用默认值。此操作无法撤销。",
499
+ "clearAllPluginCacheSuccess": "所有插件缓存已清空",
500
+ "clearAllPluginCacheConfirmTitle": "清空全部插件缓存?",
501
+ "clearAllPluginCacheConfirmDescription": "这将删除所有插件的缓存数据,包括阅读进度。此操作无法撤销。",
502
+ "installConfirmTitle": "安装这个插件?",
503
+ "install": "安装",
504
+ "installConfirmRisk": "第三方插件的服务端代码在受限沙箱中运行:其主进程只能读取宿主展示给它的资源文件,无法访问你的文件系统、执行程序或发起网络请求——除了经你确认的下载:声明了“下载”权限的插件可以在你逐次确认后从你选定的 URL 抓取文件(每次下载一个对话框,且只能存入插件自身文件夹)。上方声明的权限是宿主功能开关。请只安装来源可信的插件。",
505
+ "uploadInvalidPlugin": "不是有效的插件包(缺失或非法的 manifest.json)。",
506
+ "permissions": {
507
+ "sourceMeta": "来源元数据",
508
+ "searchMeta": "搜索元数据",
509
+ "danmaku": "弹幕",
510
+ "message": "留言",
511
+ "imageHashes": "图片哈希",
512
+ "container": "容器",
513
+ "download": "下载"
514
+ }
515
+ },
516
+ "overview": {
517
+ "usageHistory": {
518
+ "title": "使用记录"
519
+ },
520
+ "memories": {
521
+ "title": "回忆 · 今日",
522
+ "yearsAgo_one": "去年今天",
523
+ "yearsAgo_other": "{{count}} 年前的今天"
524
+ },
525
+ "activity": {
526
+ "title": "最近活动",
527
+ "updated": "更新于 {{time}}"
528
+ },
529
+ "stats": {
530
+ "resources": "资源",
531
+ "characters": "角色",
532
+ "documents": "文档",
533
+ "messages": "留言"
534
+ },
535
+ "sections": {
536
+ "recentResources": "最近更新",
537
+ "recentViewed": "最近看过",
538
+ "recentCharacters": "最近角色",
539
+ "recentDocuments": "最近文档",
540
+ "recentMessages": "最近留言"
541
+ },
542
+ "empty": {
543
+ "resources": "暂无资源。",
544
+ "recentViewed": "暂无查看记录。",
545
+ "characters": "暂无角色。",
546
+ "documents": "暂无文档。",
547
+ "messages": "暂无留言。"
548
+ },
549
+ "todayUsage": {
550
+ "label": "今日查看时长",
551
+ "sameAsYesterday": "与昨日相同",
552
+ "moreThanYesterday": "比昨日多 {{duration}}",
553
+ "lessThanYesterday": "比昨日少 {{duration}}"
554
+ },
555
+ "footprints": {
556
+ "aria": "足迹",
557
+ "title": "足迹",
558
+ "description": "你的每一次操作",
559
+ "emptyPrompt": "暂无足迹,先导入或上传一个资源吧。",
560
+ "uploadResource": "上传资源",
561
+ "importFolder": "导入文件夹"
562
+ },
563
+ "viewAll": "查看全部",
564
+ "recentViewed": {
565
+ "description": "你的查看历史",
566
+ "unknownTime": "时间未知",
567
+ "emptyPrompt": "暂无浏览记录,先去逛逛吧。",
568
+ "browseResources": "浏览资源",
569
+ "uploadResource": "上传首个资源"
570
+ },
571
+ "pinned": {
572
+ "charactersTitle": "角色置顶",
573
+ "resourcesTitle": "资源置顶",
574
+ "charactersEmpty": "暂无匹配角色。",
575
+ "resourcesEmpty": "暂无匹配资源。",
576
+ "add": "添加",
577
+ "maxReached": "最多可置顶 {{max}} 个",
578
+ "dragToReorder": "拖拽排序",
579
+ "settings": {
580
+ "title": "固定的{{section}}",
581
+ "description": "概览固定哪些分区——拖拽排序,在右侧编辑。",
582
+ "editTitle": "编辑分区",
583
+ "editDescription": "分区在概览上的显示效果。",
584
+ "titleLabel": "标题",
585
+ "titlePlaceholder": "留空则使用默认标题",
586
+ "showWhenEmpty": "为空时显示",
587
+ "sizeLabel": "数量",
588
+ "sectionsCount_one": "{{count}} 个分区",
589
+ "sectionsCount_other": "{{count}} 个分区",
590
+ "save": "保存分区",
591
+ "done": "完成",
592
+ "delete": "删除",
593
+ "deleteConfirmTitle": "删除置顶",
594
+ "deleteConfirmDescription": "确定要删除“{{title}}”吗?删除后将无法恢复。",
595
+ "saveSuccess": "置顶设置已保存",
596
+ "deleteSuccess": "置顶已删除",
597
+ "toggleEnabledAria": "启用或禁用 {{title}}",
598
+ "noItems": "暂无置顶内容。",
599
+ "noItemsHint": "点击「添加」将当前筛选保存到总览。",
600
+ "noItemsWithFiltersHint": "当前列表页已有筛选条件,点击上方按钮即可保存为置顶视图。",
601
+ "noSelection": "暂无已选置顶项。",
602
+ "noSelectionHint": "在左侧列表中选择一项,或点击「添加」创建新视图。",
603
+ "preview": "预览",
604
+ "previewTitle": "预览筛选结果",
605
+ "item": {
606
+ "refresh": {
607
+ "label": "自动刷新",
608
+ "description": "该置顶视图每隔多久重新随机抽取一批内容。",
609
+ "always": "始终刷新",
610
+ "never": "永不刷新",
611
+ "every60s": "每分钟",
612
+ "every1800s": "每 30 分钟",
613
+ "every3600s": "每 1 小时",
614
+ "every21600s": "每 6 小时",
615
+ "every43200s": "每 12 小时",
616
+ "midnight": "次日 0 点"
617
+ }
618
+ }
619
+ },
620
+ "refreshSectionAria": "刷新{{title}}"
621
+ },
622
+ "sort": {
623
+ "created": "创建时间",
624
+ "updated": "更新时间"
625
+ },
626
+ "rebuildDescription": "从零重建所有资源的元数据与缩略图,或清空本机全部可重建数据(本地缓存 + 已记录的元数据)。",
627
+ "signOut": "退出登录",
628
+ "signingOut": "退出中…",
629
+ "precache": "预缓存",
630
+ "precaching": "预缓存中…",
631
+ "caching": "预热浏览器缓存…",
632
+ "refreshCache": "刷新缓存",
633
+ "clearCache": "清空全部",
634
+ "clearing": "清空中…",
635
+ "progressLine": "{{done}} / {{total}} ({{percent}}%) - {{stage}}",
636
+ "cachedSummary_one": "已预缓存 {{count}} 项",
637
+ "cachedSummary_other": "已预缓存 {{count}} 项",
638
+ "precacheFailed": "预缓存失败:{{error}}",
639
+ "precacheStageLoading": "正在重建元数据并生成缩略图…",
640
+ "precacheDefaultError": "预缓存失败",
641
+ "precacheInProgress": "预缓存正在进行中",
642
+ "abortPrecache": "中断",
643
+ "precacheAborted": "预缓存已中断",
644
+ "toastClearLocked_one": "{{count}} 个可重建数据文件被占用,无法删除。请重启服务器以彻底清除。",
645
+ "toastClearLocked_other": "{{count}} 个可重建数据文件被占用,无法删除。请重启服务器以彻底清除。",
646
+ "clearCacheSuccess": "已清空可重建数据",
647
+ "toastClearFailed": "清空可重建数据失败",
648
+ "toastPrecacheSuccess_one": "已预缓存 {{count}} 项",
649
+ "toastPrecacheSuccess_other": "已预缓存 {{count}} 项",
650
+ "toastPrecachePartial": "预缓存完成,{{failed}} 项失败"
651
+ },
652
+ "login": {
653
+ "brand": "Hoardodile",
654
+ "title": "登录",
655
+ "description": "请输入此实例的密码。",
656
+ "demoDescription": "这是演示库,密码是 {{password}}。",
657
+ "password": "密码",
658
+ "submit": "登录",
659
+ "submitting": "登录中…",
660
+ "formAria": "登录",
661
+ "errorIncorrect": "密码错误。",
662
+ "errorGeneric": "无法登录,请检查服务后重试。",
663
+ "setupTitle": "设置密码",
664
+ "setupDescription": "此实例尚未设置密码。请立即设置 —— 先到先得,第一个设置的人将成为主机所有者。",
665
+ "setupPassword": "新密码",
666
+ "setupConfirm": "确认密码",
667
+ "setupSubmit": "设置密码",
668
+ "setupSubmitting": "设置中…",
669
+ "setupMismatch": "两次输入的密码不一致。",
670
+ "setupFormAria": "设置密码"
671
+ },
672
+ "dataHistory": {
673
+ "title": "数据历史",
674
+ "description": "管理你的数据快照。备份用于迁移或灾难恢复;归档会把最新版本冻结为只读快照,归档内的数据不会再被修改。",
675
+ "status": {
676
+ "currentWritable": "可写——v{{version}}",
677
+ "viewingArchive": "正在查看归档——v{{version}}"
678
+ },
679
+ "chip": {
680
+ "latest": "最新",
681
+ "readOnly": "只读",
682
+ "auto": "自动"
683
+ },
684
+ "archive": {
685
+ "title": "v{{version}}",
686
+ "tagCurrent": "最新版本(可写)",
687
+ "tagActive": "正在查看",
688
+ "tagReadOnly": "历史归档",
689
+ "tagCurrentShort": "最新",
690
+ "tagActiveShort": "查看中",
691
+ "nameLabel": "名称",
692
+ "namePlaceholder": "例如:v1 里程碑",
693
+ "noteLabel": "备注",
694
+ "notePlaceholder": "例如:迁移前冻结、数据定型前…",
695
+ "switchHint": "切换后将以只读模式查看该版本。如需继续编辑,请返回最新版本。",
696
+ "activeHint": "这是正在查看的版本。"
697
+ },
698
+ "backup": {
699
+ "typeLabel": "数据库备份",
700
+ "autoTypeLabel": "每日自动快照",
701
+ "autoBadge": "自动",
702
+ "autoDeleteHint": "此自动快照按短滚动窗口保留、会被自动替换。你也可以现在就删除它以释放空间。",
703
+ "nameLabel": "名称",
704
+ "nameEmpty": "无",
705
+ "restoreHint": "还原前需要输入备份名称确认——当前库会先归档,不会静默丢失任何数据。",
706
+ "deleteHint": "此备份文件将被永久删除,无法恢复。",
707
+ "archivedHint": "此备份属于已归档版本,数据已冻结,不可还原或删除。"
708
+ },
709
+ "action": {
710
+ "backupNow": "立即备份",
711
+ "backingUp": "备份中…",
712
+ "archiveNow": "立即归档",
713
+ "archiving": "归档中…",
714
+ "restore": "还原",
715
+ "restoring": "还原中…",
716
+ "delete": "删除",
717
+ "deleting": "删除中…",
718
+ "switchToVersion": "切换查看此版本",
719
+ "switching": "切换中…",
720
+ "download": "下载"
721
+ },
722
+ "reloading": "重新加载中…",
723
+ "autoSnapshot": {
724
+ "enabled": "自动快照:每日一次 · 保留 {{keep}} 天",
725
+ "disabled": "自动快照已关闭",
726
+ "last": "最近一次 {{time}}"
727
+ },
728
+ "detail": {
729
+ "selectPrompt": "在时间轴中选择一个备份或归档,查看详情与可执行的操作。",
730
+ "size": "大小",
731
+ "versionNumber": "版本号",
732
+ "createdAt": "创建时间",
733
+ "note": "备注",
734
+ "contents": "内容",
735
+ "contentsValue": "{{resources}} 个资源 · {{characters}} 个角色 · {{documents}} 个文档",
736
+ "backupOnVersion": "基于 v{{version}} 的备份",
737
+ "archiveVersion": "归档 v{{version}}"
738
+ },
739
+ "note": {
740
+ "empty": "点击添加备注…",
741
+ "placeholder": "给这个快照写一句说明…"
742
+ },
743
+ "confirm": {
744
+ "archiveTitle": "归档最新版本",
745
+ "archiveDescription": "最新版本的数据库与所有资源/角色/文档将归档,归档内的数据不会再被修改;系统会新建一个可写版本继续工作。",
746
+ "archivePhrase": "归档",
747
+ "archiveAutoHint": "当前版本的自动快照会随归档冻结;新版本会立即生成一份新的快照。",
748
+ "restoreTitle": "还原此备份",
749
+ "restoreDescription": "当前库会先归档,不会静默丢失任何数据。可通过还原该归档版本撤销本次还原。",
750
+ "restorePhrase": "还原备份",
751
+ "autoPhrase": "自动",
752
+ "deleteBackupTitle": "永久删除备份",
753
+ "deleteBackupDescription": "此备份文件将被永久删除,无法恢复。",
754
+ "deleteBackupPhrase": "删除备份",
755
+ "switchTitle": "切换到该归档版本",
756
+ "switchDescription": "切换后服务将以只读模式启动,只能查看历史数据。要恢复编辑,请返回最新可写版本。"
757
+ },
758
+ "empty": {
759
+ "title": "暂无数据历史。",
760
+ "description": "建议你立即创建一次备份,以防数据丢失。"
761
+ },
762
+ "toast": {
763
+ "backupCreated": "备份完成",
764
+ "backupFailed": "备份失败",
765
+ "archiveFailed": "归档失败",
766
+ "backupDeleted": "备份已删除",
767
+ "deleteFailed": "删除失败",
768
+ "restoreFailed": "还原失败",
769
+ "switchFailed": "切换失败",
770
+ "metaSaved": "已保存",
771
+ "metaSaveFailed": "保存失败"
772
+ }
773
+ },
774
+ "documents": {
775
+ "title": "文档",
776
+ "index": {
777
+ "docCount_one": "{{count}} 篇文档",
778
+ "docCount_other": "{{count}} 篇文档",
779
+ "folderCount_one": "{{count}} 个文件夹",
780
+ "folderCount_other": "{{count}} 个文件夹",
781
+ "description": "{{folders}}中的 {{docs}}——你写的一切都在这里。",
782
+ "updated": "更新于 {{time}}"
783
+ },
784
+ "create": "新建",
785
+ "backToStart": "返回起始页",
786
+ "new": "文档",
787
+ "newFolder": "文件夹",
788
+ "defaultNewTitle": "未命名文档",
789
+ "defaultNewFolderTitle": "未命名文件夹",
790
+ "searchPlaceholder": "搜索文档(标题/内容)",
791
+ "loading": "文档加载中…",
792
+ "listEmpty": "暂无文档。",
793
+ "notFound": {
794
+ "title": "未找到文档",
795
+ "description": "这篇文档不存在,可能已被删除。",
796
+ "back": "返回文档页"
797
+ },
798
+ "untitled": "未命名",
799
+ "viewAll": "查看全部",
800
+ "filter": {
801
+ "title": "按角色和资源筛选",
802
+ "dialogTitle": "筛选文档",
803
+ "apply": "应用",
804
+ "clear": "清空"
805
+ },
806
+ "placeholder": "开始撰写…",
807
+ "editorPlaceholder": "查看命令 '/'",
808
+ "saveDraft": "保存草稿",
809
+ "discardDraft": "放弃草稿",
810
+ "commit": "提交版本",
811
+ "commitDialog": {
812
+ "title": "提交版本",
813
+ "description": "将当前草稿保存为不可变的版本,请填写一条描述本次变更的提交信息。",
814
+ "messageLabel": "提交信息",
815
+ "messagePlaceholder": "本次版本变更了什么?",
816
+ "submit": "提交",
817
+ "committing": "提交中…"
818
+ },
819
+ "discardDialog": {
820
+ "title": "放弃当前草稿?",
821
+ "description": "未保存的修改将被最近一次已提交的版本覆盖,此操作无法撤销。",
822
+ "confirm": "放弃草稿",
823
+ "discarding": "正在放弃…"
824
+ },
825
+ "leaveDialog": {
826
+ "confirm": "当前文档有未保存的修改,确定要离开吗?"
827
+ },
828
+ "moreActions": "更多操作",
829
+ "zoom": {
830
+ "label": "文本缩放",
831
+ "smaller": "缩小",
832
+ "larger": "放大",
833
+ "reset": "重置缩放"
834
+ },
835
+ "appearanceSettings": {
836
+ "title": "外观设置",
837
+ "description": "调整文档的外观:主题、阅读宽度与字体。",
838
+ "theme": "文档主题",
839
+ "inherit": "继承网页主题",
840
+ "readingWidth": "阅读宽度",
841
+ "readingWidthDescription": "文档页居中阅读列的宽度。",
842
+ "editorFont": "编辑器字体",
843
+ "editorFontDescription": "文档编辑器内的正文字体。",
844
+ "uiFont": "页面字体",
845
+ "uiFontDescription": "文档页标题、侧边栏等区域的字体。",
846
+ "body": "正文",
847
+ "headings": "标题"
848
+ },
849
+ "readOnly": {
850
+ "enable": "预览模式",
851
+ "disable": "退出预览模式"
852
+ },
853
+ "reading": {
854
+ "enter": "阅读模式",
855
+ "exit": "退出阅读模式"
856
+ },
857
+ "diff": {
858
+ "show": "历史对比",
859
+ "exit": "退出对比",
860
+ "compareWith": "对比版本",
861
+ "selectVersion": "选择版本"
862
+ },
863
+ "conflict": {
864
+ "title": "检测到远程修改",
865
+ "description": "你的修改已保留在编辑器中。请对比两份内容,选择保留哪一份。",
866
+ "keepCurrent": "保持当前内容",
867
+ "discardCurrent": "放弃当前内容",
868
+ "viewDiff": "对比",
869
+ "diffLabel": "离线内容 vs 远程草稿",
870
+ "updatedHint": "服务端更新于 {{remote}} · 本地编辑于 {{local}}",
871
+ "discardConfirm": {
872
+ "title": "放弃当前编辑?",
873
+ "description": "未同步到服务端的更改将丢失。也可以先对比两份内容的差异。",
874
+ "confirm": "放弃当前编辑"
875
+ }
876
+ },
877
+ "indent": {
878
+ "enable": "启用首行缩进"
879
+ },
880
+ "toast": {
881
+ "createFailed": "创建失败",
882
+ "renameFailed": "重命名失败",
883
+ "saveFailed": "保存草稿失败",
884
+ "saved": "已保存",
885
+ "commitFailed": "提交版本失败",
886
+ "committed": "已提交版本",
887
+ "movedToTrash": "已移入回收站",
888
+ "restored": "已还原",
889
+ "restoreFailed": "还原失败",
890
+ "deleteFailed": "删除失败",
891
+ "deletedForever": "已永久删除",
892
+ "moveFailed": "移动失败",
893
+ "contentTooLarge": "内容超出最大字数限制",
894
+ "versionLoadFailed": "版本内容加载失败",
895
+ "savedLocally": "已保存到本机",
896
+ "resolveConflictFirst": "请先处理离线冲突再提交"
897
+ },
898
+ "welcome": {
899
+ "title": "文档",
900
+ "subtitle": "在左侧创建文档或文件夹,文档可以无限嵌套子节点。"
901
+ },
902
+ "folderHint": "这是文件夹,请在其中选择文档进行编辑。",
903
+ "headings": "目录",
904
+ "noHeadings": "本文档暂无标题。",
905
+ "untitledHeading": "无标题",
906
+ "detailMeta": {
907
+ "chars_one": "{{count, number}} 字",
908
+ "chars_other": "{{count, number}} 字"
909
+ },
910
+ "notes": {
911
+ "tab": "笔记",
912
+ "empty": "暂无笔记。"
913
+ },
914
+ "statusBar": {
915
+ "charCount": "{{count}} / {{max}} 字",
916
+ "offline": "离线 · 更改未保存"
917
+ },
918
+ "autosave": {
919
+ "enable": "开启自动保存"
920
+ },
921
+ "editMode": {
922
+ "label": "调整顺序",
923
+ "toggle": "切换调整顺序模式",
924
+ "hint": "开启后可拖拽调整文档树顺序。"
925
+ },
926
+ "expandAll": "全部展开",
927
+ "collapseAll": "全部闭合",
928
+ "slash": {
929
+ "charactersGroup": "角色",
930
+ "resourcesGroup": "资源",
931
+ "insertCharacter": "插入角色…",
932
+ "insertResource": "插入资源…"
933
+ },
934
+ "search": {
935
+ "empty": "暂无匹配文档。"
936
+ },
937
+ "trash": {
938
+ "open": "回收站",
939
+ "empty": "回收站中暂无文档。",
940
+ "restore": "还原",
941
+ "hardDelete": "永久删除",
942
+ "hardDeleteTitle": "永久删除?",
943
+ "hardDeleteDescription": "此操作会永久删除该项目,无法撤销。",
944
+ "hardDeleteConfirm": "永久删除",
945
+ "hardDeleting": "正在删除…"
946
+ },
947
+ "softDeleteDialog": {
948
+ "title": "移入回收站?",
949
+ "description": "该项目将从文档树中移除,可在回收站中还原。",
950
+ "folderWarning": "此文件夹下所有文档都会一并移入回收站。",
951
+ "confirm": "移入回收站"
952
+ },
953
+ "toolbar": {
954
+ "bold": "加粗",
955
+ "italic": "斜体",
956
+ "strike": "删除线",
957
+ "code": "行内代码",
958
+ "h1": "一级标题",
959
+ "h2": "二级标题",
960
+ "h3": "三级标题",
961
+ "bulletList": "无序列表",
962
+ "orderedList": "有序列表",
963
+ "blockquote": "引用",
964
+ "noFirstLineIndent": "取消本段首行缩进",
965
+ "link": "链接",
966
+ "linkPrompt": "输入链接地址(留空可移除)",
967
+ "alignLeft": "左对齐",
968
+ "alignCenter": "居中对齐",
969
+ "alignRight": "右对齐",
970
+ "textColor": "字体颜色",
971
+ "tagChip": "标签样式",
972
+ "undo": "撤销",
973
+ "redo": "重做"
974
+ }
975
+ },
976
+ "characters": {
977
+ "title": "角色",
978
+ "searchPlaceholder": "搜索角色…",
979
+ "filters": "筛选",
980
+ "sortLabel": "排序",
981
+ "orderLabel": "方向",
982
+ "search": {
983
+ "sectionOptions": "选项",
984
+ "sectionTags": "标签",
985
+ "sectionTraits": "特征",
986
+ "sectionRelations": "关系",
987
+ "clearAll": "清空全部",
988
+ "apply": "搜索",
989
+ "itemCount_one": "{{count}} 个角色",
990
+ "itemCount_other": "共 {{count}} 个角色"
991
+ },
992
+ "new": "新建",
993
+ "listEmpty": "暂无角色。",
994
+ "trashEmpty": "回收站中暂无角色。",
995
+ "filter": {
996
+ "trash": "回收站"
997
+ },
998
+ "traitFilter": {
999
+ "add": "添加",
1000
+ "empty": "请先在设置中定义特征。",
1001
+ "opContains": "包含",
1002
+ "opEmpty": "为空",
1003
+ "opNotEmpty": "非空",
1004
+ "opDateAfter": "晚于",
1005
+ "opDateOnOrAfter": "不早于",
1006
+ "opDateBefore": "早于",
1007
+ "opDateOnOrBefore": "不晚于",
1008
+ "opDateOn": "等于",
1009
+ "opDateMonthDayOn": "月日等于",
1010
+ "opDateMonthDayToday": "今日月日"
1011
+ },
1012
+ "viewSelected": "仅看已选",
1013
+ "viewSelectedTooMany": "选中项超过 {{max}} 个,无法使用仅看已选",
1014
+ "sort": {
1015
+ "created": "创建时间",
1016
+ "updated": "更新时间",
1017
+ "random": "随机",
1018
+ "latest": "最新",
1019
+ "earliest": "最早"
1020
+ },
1021
+ "bulk": {
1022
+ "select": "选择",
1023
+ "done": "完成",
1024
+ "toolbarCount": "已选 {{count}} 项",
1025
+ "editTags": "编辑标签",
1026
+ "clearSelection": "清空",
1027
+ "moveToTrash": "回收站",
1028
+ "confirmSoft_one": "将 {{count}} 个角色移入回收站?",
1029
+ "confirmSoft_other": "将 {{count}} 个角色移入回收站?",
1030
+ "softDeleteDescription": "选中的角色将被移入回收站,之后可从回收站恢复。",
1031
+ "toastAllOk_one": "已处理 {{count}} 个角色。",
1032
+ "toastAllOk_other": "已处理 {{count}} 个角色。",
1033
+ "toastAllFailed": "未处理任何项({{count}} 个失败)。",
1034
+ "toastPartial": "成功 {{ok}} 个,失败 {{failed}} 个。"
1035
+ },
1036
+ "actionsAria": "{{name}} 的操作",
1037
+ "toast": {
1038
+ "movedToTrash": "已移入回收站",
1039
+ "deleteFailed": "删除失败",
1040
+ "restored": "已还原",
1041
+ "restoreFailed": "还原失败",
1042
+ "deletedForever": "已永久删除",
1043
+ "createSuccess": "已创建",
1044
+ "createFailed": "创建失败"
1045
+ },
1046
+ "create": {
1047
+ "title": "新建角色",
1048
+ "description": "有名字就能开始——其他都可以稍后补。",
1049
+ "basicInfo": "基本信息",
1050
+ "basicDescription": "用简单的话介绍这个人。",
1051
+ "name": "名称",
1052
+ "intro": "简介",
1053
+ "namePlaceholder": "未命名角色",
1054
+ "nameHint": "名称必填——填写后才能创建。",
1055
+ "introPlaceholder": "写几句话——他们是谁、想要什么。",
1056
+ "links": "关联",
1057
+ "linksDescription": "用标签和特征把角色编入内容库。",
1058
+ "tags": "标签",
1059
+ "traits": "特征",
1060
+ "appearance": "外观",
1061
+ "appearanceDescription": "头像与立绘——裁切到合适。",
1062
+ "avatar": "头像",
1063
+ "fullbody": "立绘",
1064
+ "submit": "创建",
1065
+ "submitting": "创建中…"
1066
+ },
1067
+ "preview": {
1068
+ "aria": "预览:{{name}}"
1069
+ },
1070
+ "detail": {
1071
+ "loadError": "无法加载该角色。",
1072
+ "noIntro": "暂无简介。",
1073
+ "relationships": "关系",
1074
+ "recent": "最近资源",
1075
+ "viewAllResources": "查看全部",
1076
+ "fullbody": "立绘",
1077
+ "traits": "特征",
1078
+ "tags": "标签",
1079
+ "tabsAria": "角色板块",
1080
+ "documentsTitle": "关联文档",
1081
+ "openSidebar": "打开侧边栏"
1082
+ },
1083
+ "editDialog": {
1084
+ "aria": "编辑角色",
1085
+ "name": "名称",
1086
+ "intro": "简介"
1087
+ },
1088
+ "editHub": {
1089
+ "title": "编辑 - {{name}}"
1090
+ },
1091
+ "tagsDialog": {
1092
+ "title": "修改标签 - {{name}}"
1093
+ },
1094
+ "actions": {
1095
+ "uploadResource": "上传资源",
1096
+ "editTags": "标签",
1097
+ "editTraits": "特征",
1098
+ "editRelations": "关系",
1099
+ "editBasic": "基本信息",
1100
+ "editAvatar": "头像",
1101
+ "editFullbody": "立绘",
1102
+ "openMessages": "留言",
1103
+ "restore": "还原",
1104
+ "hardDelete": "永久删除",
1105
+ "softDelete": "移入回收站"
1106
+ },
1107
+ "hardDelete": {
1108
+ "title": "永久删除?",
1109
+ "description": "此操作会永久删除该角色并将其文件夹移入本地回收站。",
1110
+ "confirm": "永久删除",
1111
+ "deleting": "删除中…"
1112
+ },
1113
+ "chips": {
1114
+ "linkCharacters": "关联角色"
1115
+ },
1116
+ "picker": {
1117
+ "selectedEmpty": "暂无已选角色。",
1118
+ "loadFailed": "加载失败"
1119
+ },
1120
+ "selectorDialog": {
1121
+ "title": "选择角色",
1122
+ "confirm": "确定",
1123
+ "confirmCount": "确定 ({{count}})",
1124
+ "notSelectable": "该角色不可选"
1125
+ },
1126
+ "charactership": {
1127
+ "empty": "暂无关系。请在上方选择关系类型添加。",
1128
+ "pickerTitle": "选择角色",
1129
+ "deleteEdge": "删除",
1130
+ "deleteConfirmTitle": "删除关系",
1131
+ "deleteConfirmDescription": "确定要删除这条角色关系吗?删除后将无法恢复。",
1132
+ "pickCharacter": "选择角色",
1133
+ "enterName": "输入名称",
1134
+ "pickEndpoint": "选择关系端",
1135
+ "namePlaceholder": "名称",
1136
+ "noTypesHint": "暂无关系类型。",
1137
+ "noTypesLink": "前往自制页添加",
1138
+ "incompleteDraft": "请完成所有新增关系后再保存",
1139
+ "toast": {
1140
+ "deleteSuccess": "已删除关系",
1141
+ "deleteFailed": "删除失败",
1142
+ "addSuccess": "已添加关系",
1143
+ "saveFailed": "保存失败"
1144
+ }
1145
+ }
1146
+ },
1147
+ "collections": {
1148
+ "entityLabel": "组合",
1149
+ "usageLabelOne": "个资源",
1150
+ "usageLabel": "个资源",
1151
+ "chip": {
1152
+ "openLabel": "打开 {{name}} 组合"
1153
+ },
1154
+ "popover": {
1155
+ "empty": "该组合中暂无资源。"
1156
+ },
1157
+ "picker": {
1158
+ "quickCreate": "添加",
1159
+ "searchPlaceholder": "搜索组合"
1160
+ },
1161
+ "editDialog": {
1162
+ "title": "{{name}} 的组合"
1163
+ },
1164
+ "panel": {
1165
+ "empty": "暂无组合。",
1166
+ "addDialogTitle": "添加组合",
1167
+ "editDialogTitle": "编辑组合",
1168
+ "filterPlaceholder": "筛选资源组合",
1169
+ "reorderMode": "排序",
1170
+ "reorderModeAria": "开启后可拖拽调整组合顺序"
1171
+ }
1172
+ },
1173
+ "usage": {
1174
+ "title": "使用统计",
1175
+ "description": "各平台的查看时长——总计、每日节奏,以及时间花在了哪里。",
1176
+ "history": {
1177
+ "title": "使用记录",
1178
+ "description": "你最近使用过的内容,新在前",
1179
+ "empty": "暂无使用记录。",
1180
+ "loading": "加载中…",
1181
+ "loadError": "使用记录加载失败。",
1182
+ "today": "今天",
1183
+ "yesterday": "昨天",
1184
+ "unknownTime": "时间未知",
1185
+ "totalLabel_one": "共 {{count}} 条",
1186
+ "totalLabel_other": "共 {{count}} 条",
1187
+ "tabs": {
1188
+ "all": "全部",
1189
+ "resources": "资源",
1190
+ "characters": "角色",
1191
+ "documents": "文档"
1192
+ }
1193
+ },
1194
+ "stats": {
1195
+ "totalTime": "总查看时长",
1196
+ "avgPerDay": "日均时长",
1197
+ "mostActiveDay": "最活跃的一天",
1198
+ "mostActiveDayFormat": "M月D日",
1199
+ "entries_one": "共 {{count}} 条",
1200
+ "entries_other": "共 {{count}} 条",
1201
+ "shareSectionTitle": "占比排行",
1202
+ "shareTitle": "时长",
1203
+ "shareDescription": "按所选周期内的查看时长排序。",
1204
+ "viewShareTitle": "次数",
1205
+ "viewShareDescription": "按所选周期内的打开次数排序。",
1206
+ "periodComparison": "周期对比",
1207
+ "filtersTitle": "筛选",
1208
+ "trendDescription": "每日分钟数",
1209
+ "todayHourlyDescription": "每小时分钟数 · 本地时间",
1210
+ "todayHourly": "24 小时分布",
1211
+ "hourlyAverage": "每日节奏",
1212
+ "hourlyAverageDescription": "每小时日均 · 本地时间",
1213
+ "topEntities": "今日实体榜",
1214
+ "topEntitiesDescription": "今日观看最多的实体",
1215
+ "trend": "使用趋势",
1216
+ "platformFilter": "平台",
1217
+ "platformAll": "全部平台",
1218
+ "platformWebMobile": "网页移动端",
1219
+ "platformWebPc": "网页 PC 端",
1220
+ "platformDesktop": "桌面应用",
1221
+ "currentPlatform": {
1222
+ "title": "当前平台",
1223
+ "web-mobile": "移动端",
1224
+ "web-pc": "PC 端",
1225
+ "desktop": "桌面应用"
1226
+ },
1227
+ "platformPill": {
1228
+ "web-mobile": "Web · 移动端",
1229
+ "web-pc": "Web · PC",
1230
+ "desktop": "桌面应用"
1231
+ },
1232
+ "exposureMode": "时长统计",
1233
+ "exposureDirect": "直接",
1234
+ "exposureAssociated": "关联",
1235
+ "exposureTotal": "合计",
1236
+ "exposureTime": {
1237
+ "direct": "直接时间",
1238
+ "associated": "关联时间",
1239
+ "total": "总时间"
1240
+ },
1241
+ "exposureModeNote": "上方总计、趋势与占比百分比仅统计直接打开的会话。下方排行列表使用所选模式。"
1242
+ },
1243
+ "insight": {
1244
+ "moreThanPeriod": "比{{period}}多 {{duration}}",
1245
+ "lessThanPeriod": "比{{period}}少 {{duration}}",
1246
+ "sameAsPeriod": "与{{period}}相同",
1247
+ "comparison": {
1248
+ "yesterday": "昨天",
1249
+ "lastWeek": "上周",
1250
+ "prior7Days": "前 7 天",
1251
+ "lastMonth": "上月",
1252
+ "lastYear": "去年"
1253
+ }
1254
+ },
1255
+ "entityExposure": {
1256
+ "totalTime": "累计查看 {{duration}}",
1257
+ "views_one": "查看 {{count}} 次",
1258
+ "views_other": "查看 {{count}} 次",
1259
+ "lastViewed": "最近打开 {{time}}"
1260
+ },
1261
+ "leaderboard": {
1262
+ "entityAll": "全部",
1263
+ "entityResources": "资源",
1264
+ "entityCharacters": "角色",
1265
+ "entityDocuments": "文档",
1266
+ "entityPlugins": "内容插件",
1267
+ "empty": "该周期暂无使用记录。",
1268
+ "viewsShort_one": "查看 {{count}} 次",
1269
+ "viewsShort_other": "查看 {{count}} 次",
1270
+ "associatedSessionsShort": "关联 {{count}} 次",
1271
+ "rankLabel": "第 {{rank}} 名"
1272
+ },
1273
+ "periods": {
1274
+ "today": "今日",
1275
+ "last7days": "近 7 天",
1276
+ "thisWeek": "本周",
1277
+ "thisMonth": "本月",
1278
+ "thisYear": "本年",
1279
+ "all": "全部"
1280
+ }
1281
+ },
1282
+ "trace": {
1283
+ "title": "足迹",
1284
+ "description": "追加式操作日志——导入、导出、删除、还原与投票。行内保留实体名称,硬删除后仍可追溯。",
1285
+ "timelineTitle": "时间线",
1286
+ "filterAll": "全部",
1287
+ "filters": {
1288
+ "import": "导入",
1289
+ "export": "导出",
1290
+ "softDelete": "删除",
1291
+ "restore": "恢复",
1292
+ "hardDelete": "彻底删除",
1293
+ "dislikeAdd": "不喜欢",
1294
+ "dislikeCancel": "撤销表态",
1295
+ "messageCreate": "留言",
1296
+ "messageSoftDelete": "删留言",
1297
+ "messageRestore": "恢复留言",
1298
+ "messageHardDelete": "彻底删除留言",
1299
+ "messageVoteAdd": "表态",
1300
+ "messageVoteCancel": "撤销表态",
1301
+ "messageVoteSwap": "改投",
1302
+ "documentCreate": "建文档",
1303
+ "documentCommit": "更新文档",
1304
+ "documentSoftDelete": "删文档",
1305
+ "documentRestore": "恢复文档",
1306
+ "documentHardDelete": "彻底删除文档",
1307
+ "characterCreate": "建角色",
1308
+ "characterSoftDelete": "删角色",
1309
+ "characterRestore": "恢复角色",
1310
+ "characterHardDelete": "彻底删除角色",
1311
+ "group": {
1312
+ "resource": "资源",
1313
+ "messages": "留言",
1314
+ "document": "文档",
1315
+ "character": "角色"
1316
+ }
1317
+ },
1318
+ "actions": {
1319
+ "import": "导入了 {{name}}",
1320
+ "export": "导出了 {{name}}",
1321
+ "softDelete": "将 {{name}} 移入回收站",
1322
+ "restore": "恢复了 {{name}}",
1323
+ "hardDelete": "彻底删除了 {{name}}",
1324
+ "dislikeAdd": "对 {{name}} 点了不喜欢",
1325
+ "dislikeCancel": "撤销了对 {{name}} 的不喜欢",
1326
+ "messageCreate": "留言了「{{name}}」",
1327
+ "messageSoftDelete": "删除了留言「{{name}}」",
1328
+ "messageRestore": "恢复了留言「{{name}}」",
1329
+ "messageHardDelete": "彻底删除了留言「{{name}}」",
1330
+ "messageVoteAddLike": "赞了留言「{{name}}」",
1331
+ "messageVoteAddDislike": "踩了留言「{{name}}」",
1332
+ "messageVoteCancelLike": "撤销了对留言「{{name}}」的赞",
1333
+ "messageVoteCancelDislike": "撤销了对留言「{{name}}」的踩",
1334
+ "messageVoteSwapLike": "把留言「{{name}}」改投为赞",
1335
+ "messageVoteSwapDislike": "把留言「{{name}}」改投为踩",
1336
+ "documentCreate": "创建了文档「{{name}}」",
1337
+ "documentCommit": "更新了文档「{{name}}」",
1338
+ "documentSoftDelete": "将文档「{{name}}」移入回收站",
1339
+ "documentRestore": "恢复了文档「{{name}}」",
1340
+ "documentHardDelete": "彻底删除了文档「{{name}}」",
1341
+ "characterCreate": "创建了角色「{{name}}」",
1342
+ "characterSoftDelete": "将角色「{{name}}」移入回收站",
1343
+ "characterRestore": "恢复了角色「{{name}}」",
1344
+ "characterHardDelete": "彻底删除了角色「{{name}}」"
1345
+ },
1346
+ "meta": {
1347
+ "bulk": "批量",
1348
+ "source": "来源:{{name}}",
1349
+ "fileCount_one": "{{count}} 个文件",
1350
+ "fileCount_other": "{{count}} 个文件"
1351
+ },
1352
+ "overview": {
1353
+ "title": "周期概览",
1354
+ "today": "今日",
1355
+ "last7days": "近 7 天",
1356
+ "thisMonth": "本月",
1357
+ "thisYear": "本年",
1358
+ "actions": {
1359
+ "today": "今日操作",
1360
+ "last7days": "本周操作",
1361
+ "thisMonth": "本月操作",
1362
+ "thisYear": "今年操作"
1363
+ },
1364
+ "busiestKind": "最活跃类型",
1365
+ "restores": "还原次数",
1366
+ "weekTotal": "本周合计",
1367
+ "avgPerDay": "日均",
1368
+ "moreThanPrev": "比上一周期多 {{count}} 次",
1369
+ "lessThanPrev": "比上一周期少 {{count}} 次",
1370
+ "sameAsPrev": "与上一周期持平"
1371
+ },
1372
+ "today": "今天",
1373
+ "yesterday": "昨天",
1374
+ "loading": "加载足迹中…",
1375
+ "loadError": "加载足迹失败",
1376
+ "empty": "暂无足迹。导入、导出、删除或表态后,这里会逐条记录。",
1377
+ "count_one": "{{count}} 条足迹",
1378
+ "count_other": "{{count}} 条足迹"
1379
+ },
1380
+ "resources": {
1381
+ "title": "资源",
1382
+ "upload": "上传",
1383
+ "import": {
1384
+ "action": "导入",
1385
+ "title": "导入",
1386
+ "description": "一次导入整个文件夹——每个顶层条目都会成为一个资源。"
1387
+ },
1388
+ "source": {
1389
+ "fallback": "来源链接",
1390
+ "aria": "打开来源:{{name}}"
1391
+ },
1392
+ "new": {
1393
+ "title": "上传",
1394
+ "description": "先放入文件——元数据可以稍后补。",
1395
+ "files": "文件",
1396
+ "filesDescription": "拖入的文件立即暂存——可自由排序,无需重新上传。",
1397
+ "filesCount": "个文件",
1398
+ "basicInfo": "基本信息",
1399
+ "basicDescription": "一句话说明这些文件是什么。",
1400
+ "links": "关联",
1401
+ "linksDescription": "这个资源所属的标签、角色和组合。",
1402
+ "coverDescription": "可选——默认取第一个文件。",
1403
+ "folder": {
1404
+ "sourceShared": "浏览共享文件夹",
1405
+ "sourceZip": "选择压缩包",
1406
+ "browseTitle": "浏览目录",
1407
+ "browseDescription": "选择要扫描的目录。",
1408
+ "previewTitle": "扫描结果",
1409
+ "previewDescription": "确认要导入的项目。",
1410
+ "resultTitle": "导入结果",
1411
+ "scanHere": "扫描",
1412
+ "noSubdirs": "暂无子目录。",
1413
+ "uploading": "上传中…",
1414
+ "extracting": "解压中…",
1415
+ "scanning": "扫描中…",
1416
+ "sharedRoot": "共享根目录",
1417
+ "zipRoot": "压缩包根目录",
1418
+ "name": "名称",
1419
+ "type": "类型",
1420
+ "plugin": "插件",
1421
+ "confirmImport": "导入",
1422
+ "importing": "导入中…",
1423
+ "importDone": "完成",
1424
+ "resultScanned": "扫描",
1425
+ "resultImported": "已导入",
1426
+ "resultFailed": "失败",
1427
+ "sourceSharedDescription": "从服务器的共享导入根目录中挑选一个文件夹。",
1428
+ "sourceSharedDisabled": "未配置共享文件夹导入。",
1429
+ "sourceZipDescription": "上传 .zip——在服务器端解压后扫描。",
1430
+ "importingDescription": "正在从所选目录创建资源,请稍候。",
1431
+ "stepSource": "来源",
1432
+ "stepBrowse": "浏览",
1433
+ "stepPreview": "预览",
1434
+ "stepImport": "导入",
1435
+ "stepDone": "完成",
1436
+ "stepsAria": "导入步骤",
1437
+ "emptyTitle": "此目录为空。",
1438
+ "emptyDescription": "暂无文件或目录可导入。",
1439
+ "previewCount_one": "共 {{count}} 项待导入",
1440
+ "previewCount_other": "共 {{count}} 项待导入",
1441
+ "howTitle": "工作原理",
1442
+ "howScan": "扫描",
1443
+ "howScanMeta": "每个顶层条目都会被找到并统计大小",
1444
+ "howPreview": "预览",
1445
+ "howPreviewMeta": "写入前会逐条检测内容类型",
1446
+ "howImport": "导入",
1447
+ "howImportMeta": "逐条显示进度,结束时汇总"
1448
+ },
1449
+ "name": "名称",
1450
+ "intro": "简介",
1451
+ "plugin": "插件",
1452
+ "contentType": "内容类型",
1453
+ "sourceName": "来源名称",
1454
+ "sourceUrl": "来源链接",
1455
+ "sourceHint": "建议至少填写一个,方便日后找到出处。",
1456
+ "sourceNamePlaceholder": "如:某网站或平台",
1457
+ "sourceUrlPlaceholder": "如:https://...",
1458
+ "introPlaceholder": "这组文件是关于什么的。",
1459
+ "tags": "标签",
1460
+ "characters": "角色",
1461
+ "cover": "封面",
1462
+ "collections": "组合",
1463
+ "namePlaceholder": "名称",
1464
+ "useFilenameAsName": "用文件名作为名称",
1465
+ "oneFilePerResource": "每个文件一个资源——每个资源仅包含一个文件。",
1466
+ "createdCount_one": "已创建 {{count}} 个资源",
1467
+ "createdCount_other": "已创建 {{count}} 个资源",
1468
+ "duplicatesFound_one": "此资源有 {{count}} 张图片与已有资源重复:{{names}}",
1469
+ "duplicatesFound_other": "此资源有 {{count}} 张图片与已有资源重复:{{names}}",
1470
+ "duplicateFileNames_one": "本批次有 {{count}} 个文件重名,将自动重命名(如 name-1.png)",
1471
+ "duplicateFileNames_other": "本批次有 {{count}} 个文件重名,将自动重命名(如 name-1.png)",
1472
+ "submit": "创建",
1473
+ "uploading": "上传中…",
1474
+ "errors": {
1475
+ "pickAtLeastOne": "请至少选择一个文件",
1476
+ "uploadFailed": "上传失败",
1477
+ "stagingFailed_one": "有 {{count}} 个文件上传失败,请移除后重试",
1478
+ "stagingFailed_other": "有 {{count}} 个文件上传失败,请移除后重试",
1479
+ "attachCollectionsFailed": "资源已创建,但加入组合失败",
1480
+ "batchPartialHint": "若中途失败,可能已有部分资源创建成功,请到列表中查看。"
1481
+ },
1482
+ "created": "已创建",
1483
+ "autoDetect": "自动探测"
1484
+ },
1485
+ "search": {
1486
+ "placeholder": "搜索资源…",
1487
+ "empty": "暂无资源。",
1488
+ "trashEmpty": "回收站中暂无资源。",
1489
+ "filters": "筛选",
1490
+ "sectionOptions": "选项",
1491
+ "sectionTags": "标签",
1492
+ "sectionCharacters": "角色",
1493
+ "sectionPlugins": "插件",
1494
+ "sectionSource": "来源",
1495
+ "sectionCollections": "组合",
1496
+ "clearAll": "清空全部",
1497
+ "apply": "搜索",
1498
+ "viewGrid": "网格视图",
1499
+ "viewMasonry": "瀑布流视图",
1500
+ "sourceLabel": "来源",
1501
+ "sourceAll": "全部来源",
1502
+ "sortLabel": "排序",
1503
+ "orderLabel": "方向",
1504
+ "sortCreated": "创建时间",
1505
+ "sortUpdated": "更新时间",
1506
+ "sortDisliked": "不喜欢次数",
1507
+ "orderLatest": "最新",
1508
+ "orderEarliest": "最早",
1509
+ "orderMost": "最多",
1510
+ "orderLeast": "最少",
1511
+ "noCharacters": "无角色",
1512
+ "dislikedOnly": "仅看已不喜欢",
1513
+ "trash": "回收站",
1514
+ "random": "随机",
1515
+ "pageSizeLabel": "每页",
1516
+ "itemCount_one": "{{count}} 个资源",
1517
+ "itemCount_other": "共 {{count}} 个资源"
1518
+ },
1519
+ "bulk": {
1520
+ "select": "选择",
1521
+ "done": "完成",
1522
+ "toolbarCount": "已选 {{count}} 项",
1523
+ "selectCurrentPage": "全选",
1524
+ "invertCurrentPage": "反选",
1525
+ "clearSelection": "清空",
1526
+ "download": "下载",
1527
+ "downloadFailed": "下载失败。",
1528
+ "downloadRejected": "无法生成压缩包(所选为空或无效)。",
1529
+ "downloadTooMany": "一次最多下载 {{max}} 个资源。",
1530
+ "editTags": "编辑标签",
1531
+ "moveToTrash": "回收站",
1532
+ "deleteForever": "永久删除",
1533
+ "confirmSoft_one": "将 {{count}} 个资源移入回收站?",
1534
+ "confirmSoft_other": "将 {{count}} 个资源移入回收站?",
1535
+ "softDeleteDescription": "选中的资源将被移入回收站,之后可从回收站恢复。",
1536
+ "hardDeleteTitle": "永久删除所选?",
1537
+ "hardDeleteDescription": "将永久删除所选资源并将其文件夹移入本地回收站,此操作不可撤销。",
1538
+ "hardDeleteConfirm": "永久删除",
1539
+ "hardDeleteDeleting": "删除中…",
1540
+ "toastAllOk_one": "已处理 {{count}} 个资源。",
1541
+ "toastAllOk_other": "已处理 {{count}} 个资源。",
1542
+ "toastAllFailed": "未处理任何项({{count}} 个失败)。",
1543
+ "toastPartial": "成功 {{ok}} 个,失败 {{failed}} 个。"
1544
+ },
1545
+ "actions": {
1546
+ "editBasic": "基本信息",
1547
+ "editCharacters": "关联角色",
1548
+ "editTags": "标签",
1549
+ "editCollections": "组合",
1550
+ "editCover": "封面",
1551
+ "download": "下载",
1552
+ "openMessages": "留言",
1553
+ "extend": "继承",
1554
+ "dislike": "不喜欢",
1555
+ "dislikeCancellable": "可撤销",
1556
+ "restore": "还原",
1557
+ "hardDelete": "永久删除",
1558
+ "softDelete": "移入回收站",
1559
+ "actionsAria": "{{name}} 的操作"
1560
+ },
1561
+ "hardDelete": {
1562
+ "title": "永久删除?",
1563
+ "description": "此操作会永久删除该资源并将其文件夹移入本地回收站。",
1564
+ "confirm": "永久删除",
1565
+ "deleting": "删除中…"
1566
+ },
1567
+ "toast": {
1568
+ "movedToTrash": "已移入回收站",
1569
+ "deleteFailed": "删除失败",
1570
+ "restored": "已还原",
1571
+ "restoreFailed": "还原失败",
1572
+ "deletedForever": "已永久删除",
1573
+ "disliked": "已标记不喜欢",
1574
+ "dislikeRemoved": "已取消不喜欢",
1575
+ "dislikeFailed": "更新失败"
1576
+ },
1577
+ "preview": {
1578
+ "aria": "预览:{{name}}",
1579
+ "closePreview": "关闭预览",
1580
+ "enterFullscreen": "进入全屏",
1581
+ "exitFullscreen": "退出全屏"
1582
+ },
1583
+ "detail": {
1584
+ "docSearchTitle": "关联文档",
1585
+ "emptyInline": "空资源",
1586
+ "notFound": "未找到该资源",
1587
+ "fileCount_one": "{{count}} 个文件",
1588
+ "fileCount_other": "{{count}} 个文件",
1589
+ "sourceFrom": "来自 {{name}}",
1590
+ "openSidebar": "打开侧边栏",
1591
+ "fullscreen": "全屏",
1592
+ "anniversary_one": "入库 {{count}} 年了",
1593
+ "anniversary_other": "入库 {{count}} 年了",
1594
+ "sidebar": {
1595
+ "tagsHeading": "标签",
1596
+ "colEmpty": "该组合下暂无其它资源。",
1597
+ "noTags": "暂无标签。",
1598
+ "relatedByTagsHeading": "相关推荐",
1599
+ "similarImagesHeading": "相似图片",
1600
+ "duplicateImagesHeading": "重复图片",
1601
+ "similarWithinHeading": "本资源内相似图片",
1602
+ "imageMatchCount_one": "{{count}} 个匹配文件",
1603
+ "imageMatchCount_other": "{{count}} 个匹配文件",
1604
+ "duplicateCount_one": "{{count}} 个重复文件",
1605
+ "duplicateCount_other": "{{count}} 个重复文件",
1606
+ "intraSimilarCount_one": "{{count}} 个相似文件",
1607
+ "intraSimilarCount_other": "{{count}} 个相似文件",
1608
+ "matchSimilarity": "{{name}} · 相似度 {{percent}}%",
1609
+ "similarity": "相似度 {{percent}}%"
1610
+ }
1611
+ },
1612
+ "editDialog": {
1613
+ "aria": "编辑资源基本信息",
1614
+ "plugin": "插件",
1615
+ "contentTypeMissing": "缺少:{{names}}",
1616
+ "name": "名称",
1617
+ "intro": "简介",
1618
+ "sourceName": "来源名称",
1619
+ "sourceUrl": "来源地址",
1620
+ "sourceHint": "建议至少填写一个,方便日后找到出处。",
1621
+ "namePlaceholder": "例如:Harbor at Dusk",
1622
+ "introPlaceholder": "这组资源是关于什么的。",
1623
+ "sourceNamePlaceholder": "例如:某网站或平台",
1624
+ "sourceUrlPlaceholder": "例如:https://...",
1625
+ "saveChanges": "保存更改",
1626
+ "toast": {
1627
+ "contentTypeFailed": "无法更改内容类型"
1628
+ }
1629
+ },
1630
+ "editHub": {
1631
+ "title": "编辑 - {{name}}"
1632
+ },
1633
+ "tagsDialog": {
1634
+ "title": "修改标签 - {{name}}"
1635
+ },
1636
+ "selectorDialog": {
1637
+ "title": "选择资源"
1638
+ },
1639
+ "viewSelected": "仅看已选",
1640
+ "viewSelectedTooMany": "选中项超过 {{max}} 个,无法使用仅看已选",
1641
+ "picker": {
1642
+ "selectedEmpty": "暂无已选资源。",
1643
+ "loadFailed": "加载资源失败。"
1644
+ },
1645
+ "selectAria": "选择 {{name}}",
1646
+ "toggleSelectAria": "切换选择 {{name}}",
1647
+ "video": {
1648
+ "previewAria": "预览 {{name}}",
1649
+ "playAria": "播放 {{name}}",
1650
+ "stopAria": "停止 {{name}}"
1651
+ },
1652
+ "audio": {
1653
+ "playAria": "播放 {{name}}",
1654
+ "pauseAria": "暂停 {{name}}",
1655
+ "seekAria": "拖动 {{name}} 的播放进度"
1656
+ },
1657
+ "editPanel": {
1658
+ "nameRequired": "请填写名称"
1659
+ }
1660
+ },
1661
+ "relationshipTypes": {
1662
+ "panel": {
1663
+ "empty": "暂无关系。请点击添加。",
1664
+ "addDialogTitle": "添加关系",
1665
+ "editDialogTitle": "编辑关系",
1666
+ "filterPlaceholder": "筛选关系类型",
1667
+ "linkCount_one": "{{count}} 条关系",
1668
+ "linkCount_other": "{{count}} 条关系",
1669
+ "reorderMode": "排序",
1670
+ "reorderModeAria": "开启后可拖拽调整关系顺序",
1671
+ "tabDefinition": "定义",
1672
+ "tabDetails": "详情"
1673
+ },
1674
+ "preview": {
1675
+ "characterA": "角色 A",
1676
+ "characterB": "角色 B",
1677
+ "aCallsB": "A 是 B 的",
1678
+ "bCallsA": "B 是 A 的",
1679
+ "labelPlaceholder": "如:朋友"
1680
+ },
1681
+ "kind": {
1682
+ "directed": {
1683
+ "label": "有向",
1684
+ "iconLabel": "单向",
1685
+ "hint": "单向关系,仅 A→B 方向生效,如单恋。"
1686
+ },
1687
+ "symmetric": {
1688
+ "label": "对称",
1689
+ "iconLabel": "对等",
1690
+ "hint": "双方对等关系,如朋友、配偶。"
1691
+ },
1692
+ "hierarchical": {
1693
+ "label": "层级",
1694
+ "iconLabel": "上下级",
1695
+ "hint": "A 在上、B 在下,方向 A→B,如师父与徒弟"
1696
+ }
1697
+ },
1698
+ "delete": {
1699
+ "kindLabel": "关系",
1700
+ "usageLabelOne": "条关系",
1701
+ "usageLabel": "条关系"
1702
+ },
1703
+ "toast": {
1704
+ "created": "已创建关系",
1705
+ "createFailed": "创建关系失败"
1706
+ }
1707
+ },
1708
+ "traits": {
1709
+ "panel": {
1710
+ "empty": "暂无特征定义。请点击添加。",
1711
+ "addDialogTitle": "添加特征",
1712
+ "editDialogTitle": "编辑特征",
1713
+ "filterPlaceholder": "筛选特征",
1714
+ "reorderMode": "排序",
1715
+ "reorderModeAria": "开启后可拖拽调整特征顺序",
1716
+ "toast": {
1717
+ "added": "已添加特征"
1718
+ }
1719
+ },
1720
+ "kind": {
1721
+ "text": "文本",
1722
+ "multitext": "多行文本",
1723
+ "number": "数字",
1724
+ "weight": "体重",
1725
+ "height": "身高",
1726
+ "date": "日期"
1727
+ },
1728
+ "delete": {
1729
+ "kindLabel": "特征",
1730
+ "usageLabelOne": "个角色",
1731
+ "usageLabel": "个角色"
1732
+ },
1733
+ "values": {
1734
+ "noDefinitions": "暂无特征定义。请前往 设置 / 特征 添加。",
1735
+ "addField": "添加字段",
1736
+ "removeField": "移除字段",
1737
+ "inputPlaceholder": "请输入",
1738
+ "remove": "移除",
1739
+ "allSet": "所有特征均已设置。",
1740
+ "emptyError": "以下特征为空,不能保存:{{names}}",
1741
+ "parseError": "「{{name}}」的值无效:{{value}}",
1742
+ "date": {
1743
+ "prefixPlaceholder": "纪元 / 历法",
1744
+ "after": "后",
1745
+ "before": "前",
1746
+ "year": "年",
1747
+ "month": "月",
1748
+ "day": "日"
1749
+ }
1750
+ }
1751
+ },
1752
+ "categories": {
1753
+ "panel": {
1754
+ "empty": "暂无分类或标签。",
1755
+ "kindTabsAria": "分类类型",
1756
+ "kindTab": {
1757
+ "common": "通用",
1758
+ "resource": "资源",
1759
+ "character": "角色"
1760
+ },
1761
+ "dependencyMessage": "该标签已被{{parts}}使用,无法直接删除。",
1762
+ "dependencyResources": "资源 {{count}} 处",
1763
+ "dependencyCharacters": "角色 {{count}} 处",
1764
+ "tagCharacterCount": "角色 {{count}}",
1765
+ "tagResourceCount": "资源 {{count}}",
1766
+ "copyTagName": "复制到剪贴板",
1767
+ "toast": {
1768
+ "added": "已添加",
1769
+ "addFailed": "添加失败",
1770
+ "copied": "已复制到剪贴板",
1771
+ "copyFailed": "复制失败",
1772
+ "moved": "标签已移动"
1773
+ },
1774
+ "mergeTagMenu": "合并到…",
1775
+ "specialStyle": {
1776
+ "silver": "银",
1777
+ "gold": "金",
1778
+ "rainbow": "彩虹",
1779
+ "oilslick": "油膜",
1780
+ "kintsugi": "金缮"
1781
+ }
1782
+ },
1783
+ "delete": {
1784
+ "kindLabelCategory": "分类",
1785
+ "kindLabelTag": "标签",
1786
+ "usageLabelTagsOne": "个标签",
1787
+ "usageLabelTags": "个标签"
1788
+ },
1789
+ "form": {
1790
+ "createCategory": "创建分类",
1791
+ "creating": "创建中…",
1792
+ "addTag": "创建标签"
1793
+ },
1794
+ "dialog": {
1795
+ "addCategoryTitle": "新建分类",
1796
+ "addTagTitle": "新建标签",
1797
+ "editCategoryTitle": "编辑分类",
1798
+ "editTagTitle": "编辑标签"
1799
+ }
1800
+ },
1801
+ "tags": {
1802
+ "picker": {
1803
+ "noCategories": "暂无分类。",
1804
+ "selectedHeader": "选中:",
1805
+ "tagsHeader": "标签:",
1806
+ "empty": "该分类下暂无标签。",
1807
+ "emptyAll": "暂无标签定义。",
1808
+ "searchPlaceholder": "搜索标签…",
1809
+ "noMatches": "暂无匹配标签。"
1810
+ },
1811
+ "bulk": {
1812
+ "nonCommonHint_one": "有 {{count}} 个标签未被全部选中项共享。你可以添加任意标签;只有公共标签可以被移除。",
1813
+ "nonCommonHint_other": "有 {{count}} 个标签未被全部选中项共享。你可以添加任意标签;只有公共标签可以被移除。"
1814
+ },
1815
+ "toast": {
1816
+ "attachFailed": "添加标签失败",
1817
+ "detachFailed": "移除标签失败"
1818
+ },
1819
+ "filterMode": {
1820
+ "and": "全部",
1821
+ "or": "任一",
1822
+ "not": "非",
1823
+ "nor": "均非"
1824
+ },
1825
+ "merge": {
1826
+ "title": "合并标签",
1827
+ "description": "重复标签的引用与关系将移动到目标标签。",
1828
+ "targetPlaceholder": "选择目标标签",
1829
+ "confirm": "确认合并",
1830
+ "confirming": "合并中…",
1831
+ "countResources_one": "{{count}} 个资源",
1832
+ "countResources_other": "{{count}} 个资源",
1833
+ "countCharacters_one": "{{count}} 个角色",
1834
+ "countCharacters_other": "{{count}} 个角色",
1835
+ "countSiblingRules_one": "{{count}} 条同义词关系",
1836
+ "countSiblingRules_other": "{{count}} 条同义词关系",
1837
+ "countParentRules_one": "{{count}} 条上下级关系",
1838
+ "countParentRules_other": "{{count}} 条上下级关系",
1839
+ "preview": "将移动 {{resources}}、{{characters}},以及 {{siblingRules}}、{{parentRules}}。",
1840
+ "collision": "该分类已有同名标签「{{name}}」,可以合并。",
1841
+ "offer": "与同名标签合并",
1842
+ "toast": {
1843
+ "success": "已合并:{{resources}}、{{characters}}、{{siblingRules}}、{{parentRules}}"
1844
+ }
1845
+ },
1846
+ "rules": {
1847
+ "description": "别名:多个标签在所有地方都渲染为一个显示标签(例如「猫」&「猫咪」→「猫」)。父级:打上子标签的条目也会带上父标签(例如「橘猫」→「猫」)。角色也能参与:把角色关联到标签后,关联了该角色的作品会像打了这个标签一样——搜索可以命中,卡片上以「虚拟」弱化显示。",
1848
+ "displayLabel": "显示标签",
1849
+ "badPlaceholder": "同义词",
1850
+ "goodPlaceholder": "显示标签",
1851
+ "addAlias": "添加别名",
1852
+ "alias": "别名",
1853
+ "addAliasDescription": "选择同义词,以及它显示成的标签。",
1854
+ "aliasesTitle": "别名",
1855
+ "groupCount_one": "{{count}} 组",
1856
+ "groupCount_other": "{{count}} 组",
1857
+ "setDisplay": "设为显示标签",
1858
+ "remove": "移除",
1859
+ "pickCharacter": "角色…",
1860
+ "pickTag": "标签…",
1861
+ "tagPickTitle": "选择标签",
1862
+ "characterLinkHint": "角色链接:角色以该标签显示——关联了该角色的作品会弱化显示此标签(标记为「虚拟」),搜索该标签时也能命中。",
1863
+ "empty": "暂无同义词组。",
1864
+ "displaysAs": "显示为 {{name}}",
1865
+ "groupCounts": "资源 {{resources}} · 角色 {{characters}}",
1866
+ "parentsTitle": "父级",
1867
+ "ruleCount_one": "{{count}} 条",
1868
+ "ruleCount_other": "{{count}} 条",
1869
+ "child": "子标签",
1870
+ "childPlaceholder": "子标签",
1871
+ "parentPlaceholder": "父标签",
1872
+ "addRule": "添加规则",
1873
+ "addRuleDescription": "选择子标签,以及它所属的父标签。",
1874
+ "endpointTag": "标签",
1875
+ "endpointCharacter": "角色",
1876
+ "parentsEmpty": "暂无上下级规则。",
1877
+ "noMatch": "暂无匹配规则。",
1878
+ "searchPlaceholder": "筛选规则…",
1879
+ "toast": {
1880
+ "pairAdded": "已添加同义词",
1881
+ "pairRemoved": "已移除同义词",
1882
+ "displaySet": "已设置显示标签",
1883
+ "parentAdded": "已添加上下级规则",
1884
+ "parentRemoved": "已移除上下级规则"
1885
+ }
1886
+ },
1887
+ "errors": {
1888
+ "nameExists": "该分类已有同名标签。",
1889
+ "siblingCycle": "该组合会形成循环,无法添加。",
1890
+ "siblingKindIsolation": "通用标签只能与一种类型的标签组成同义词组(资源与角色标签不能互相组合)。",
1891
+ "parentSelf": "标签不能设为自身的父标签。",
1892
+ "parentCycle": "该上下级关系会形成循环,无法添加。",
1893
+ "parentKindIsolation": "上下级链只能组合通用与一种类型的标签(资源与角色标签不能互相链接)。",
1894
+ "characterMissing": "该角色已不存在,请选择现存的角色。",
1895
+ "mergeKindMismatch": "不能合并不同类型的标签(资源与角色标签不能合并)。",
1896
+ "mergeCreatesCycle": "合并后会形成循环,请先调整相关规则。"
1897
+ },
1898
+ "virtual": {
1899
+ "label": "虚拟"
1900
+ }
1901
+ },
1902
+ "imageEdit": {
1903
+ "confirmDeleteTitle": "移除图片?",
1904
+ "confirmDeleteDescription": "这将移除当前图片,此操作无法撤销。"
1905
+ },
1906
+ "deleteEntity": {
1907
+ "dialogConfirmTitle": "删除「{{name}}」?",
1908
+ "dialogConfirmDescription": "将永久删除该{{kind}},此操作无法撤销。",
1909
+ "defaultLabel": "删除",
1910
+ "defaultNoun": "处",
1911
+ "defaultNounOne": "处",
1912
+ "confirm": "确认删除",
1913
+ "deleting": "删除中…",
1914
+ "forceTitle": "无法删除{{kind}}",
1915
+ "usageMessage": "该{{kind}}已被 {{count}} {{usage}}使用,无法直接删除。",
1916
+ "toast": {
1917
+ "deleteSuccess": "已删除{{kind}}",
1918
+ "deleteFailed": "删除失败",
1919
+ "forceDeleteSuccess": "已强制删除{{kind}}",
1920
+ "forceDeleteFailed": "强制删除失败",
1921
+ "nameMismatch": "名称不一致"
1922
+ },
1923
+ "forceConfirm": "强制删除",
1924
+ "forceDeleting": "删除中…"
1925
+ },
1926
+ "upload": {
1927
+ "addFiles": "添加文件",
1928
+ "clearAll": "清空",
1929
+ "totalCount_one": "总共 {{count}} 个文件",
1930
+ "totalCount_other": "总共 {{count}} 个文件",
1931
+ "removeFile": "移除文件",
1932
+ "failed": "上传失败",
1933
+ "duplicateName": "重名",
1934
+ "duplicateNameTitle": "本批次中有同名文件,上传时会自动重命名"
1935
+ },
1936
+ "messages": {
1937
+ "title": "留言",
1938
+ "empty": "暂无留言。",
1939
+ "threadCount_one": "{{count}} 个主题",
1940
+ "threadCount_other": "{{count}} 个主题",
1941
+ "replyCount_one": "{{count}} 条回复",
1942
+ "replyCount_other": "{{count}} 条回复",
1943
+ "floor": "#{{n}}",
1944
+ "replyNumber": "#{{n}}",
1945
+ "composerPlaceholder": "写下你的留言…",
1946
+ "replyPlaceholder": "写下你的回复…",
1947
+ "submit": "发布",
1948
+ "submitting": "发布中…",
1949
+ "reply": "回复",
1950
+ "actions": "留言操作",
1951
+ "trash": "回收站",
1952
+ "emptyTrash": "回收站中暂无留言。",
1953
+ "deleted": "已删除",
1954
+ "delete": "删除",
1955
+ "deleteConfirmTitle": "删除这条留言?",
1956
+ "deleteConfirmDescription": "留言将移入回收站,可从回收站恢复。",
1957
+ "restore": "恢复",
1958
+ "hardDelete": "永久删除",
1959
+ "hardDeleteConfirmTitle": "永久删除?",
1960
+ "hardDeleteConfirmDescription": "此操作不可撤销。硬删除顶层留言会一并删除其全部回复。",
1961
+ "viewReplies": "查看回复 ({{count}})",
1962
+ "collapseReplies": "收起回复",
1963
+ "sortBy": "排序",
1964
+ "sort": {
1965
+ "newest": "最晚",
1966
+ "oldest": "最早",
1967
+ "mostLikes": "赞最多",
1968
+ "leastLikes": "赞最少"
1969
+ },
1970
+ "searchPlaceholder": "搜索留言…",
1971
+ "totalLabel_one": "共 {{count}} 条留言",
1972
+ "totalLabel_other": "共 {{count}} 条留言",
1973
+ "clearFilter": "清除筛选",
1974
+ "charsRemaining_one": "还可输入 {{count}} 字",
1975
+ "charsRemaining_other": "还可输入 {{count}} 字",
1976
+ "linkCharactersAdd": "关联角色",
1977
+ "linkResources": "关联资源",
1978
+ "linkResourcesAdd": "关联资源",
1979
+ "toast": {
1980
+ "posted": "已发布",
1981
+ "postFailed": "发布失败",
1982
+ "deleted": "已移入回收站",
1983
+ "restored": "已恢复",
1984
+ "hardDeleted": "已永久删除",
1985
+ "voteFailed": "投票失败"
1986
+ }
1987
+ },
1988
+ "storage": {
1989
+ "sectionTitle": "存储",
1990
+ "sectionDescription": "hoardodile 归档占用的磁盘空间,按类别拆分展示。",
1991
+ "volumeTotal": "磁盘总容量",
1992
+ "volumeFree": "剩余",
1993
+ "volumeUsed": "已使用",
1994
+ "sidebarUsed": "已占 {{size}}",
1995
+ "sidebarFree": "剩余 {{size}}",
1996
+ "volumeUnavailable": "无法读取卷信息",
1997
+ "usedByHoardodile": "hoardodile 占用:",
1998
+ "category": {
1999
+ "database": "数据库",
2000
+ "resources": "资源",
2001
+ "archived": "归档副本",
2002
+ "cache": "缓存",
2003
+ "trash": "回收站",
2004
+ "backups": "备份",
2005
+ "other": "其他",
2006
+ "unattributedResources": "其他资源"
2007
+ },
2008
+ "otherHint": "日志、已安装的插件、会话密钥及其他未在上方列出的本机状态。",
2009
+ "unattributedCount_one": "{{count}} 个资源未统计体积",
2010
+ "unattributedCount_other": "{{count}} 个资源未统计体积",
2011
+ "unattributedHint": "这些资源尚未记录体积(含封面等杂项,按磁盘扫描估算)。运行预缓存后,将按插件归入上方明细。",
2012
+ "archivedHint": "归档版本中冻结的资源、角色与文档副本。此数字按磁盘扫描统计,包含所有历史副本;与上方按元数据统计的当前版本资源口径不同。",
2013
+ "backupsHint": "手动备份与每日自动快照。",
2014
+ "cacheHint": "按资源存储的封面、缩略图、预览、解压缓存与 files-cache.json。",
2015
+ "lowSpaceBanner": "磁盘空间不足,自动快照已暂停。释放一些空间后可自动恢复。",
2016
+ "clearCache": "清理",
2017
+ "clearCacheTitle": "清理缓存",
2018
+ "clearCacheDescription": "缩略图、预览与解压缓存将被清空。它们会在需要时重新生成——此操作只释放空间。",
2019
+ "pluginCount_one": "{{count}} 个资源",
2020
+ "pluginCount_other": "{{count}} 个资源",
2021
+ "legend": {
2022
+ "resources": "资源",
2023
+ "hostData": "主机数据",
2024
+ "archivedVersions": "归档版本",
2025
+ "cache": "缓存",
2026
+ "latest": "最新"
2027
+ }
2028
+ },
2029
+ "sync": {
2030
+ "pageHint": "每台设备:记录实体数量、内容大小与存储体积 · 保留最近两次快照",
2031
+ "status": {
2032
+ "allUpToDate": "所有设备已是最新",
2033
+ "dueCount_one": "{{total}} 台中 {{count}} 台待同步",
2034
+ "dueCount_other": "{{total}} 台中 {{count}} 台待同步"
2035
+ },
2036
+ "tip": {
2037
+ "oneWay": "建议单向同步:一个主仓库,其余为从,避免同步冲突。"
2038
+ },
2039
+ "config": {
2040
+ "remindLabel": "超过多久提醒同步",
2041
+ "remindDescription": "超过间隔时间未同步快照时,仪表盘会提醒。",
2042
+ "remindDays_one": "{{count}} 天",
2043
+ "remindDays_other": "{{count}} 天"
2044
+ },
2045
+ "devices": {
2046
+ "addTitle": "添加设备",
2047
+ "addAutoRecord": "添加后会自动同步一次当前状态。",
2048
+ "namePlaceholder": "设备名称",
2049
+ "notesPlaceholder": "备注(可选)",
2050
+ "nameHint": "例如:笔记本",
2051
+ "notesHint": "例如:USB 4TB",
2052
+ "add": "添加设备",
2053
+ "addPending": "添加中…",
2054
+ "empty": "暂无设备——添加一个开始同步。",
2055
+ "loading": "加载中…",
2056
+ "neverSynced": "从未同步",
2057
+ "lastSyncedAgo_one": "上次同步 {{date}}({{count}} 天前)",
2058
+ "lastSyncedAgo_other": "上次同步 {{date}}({{count}} 天前)",
2059
+ "justNow": "刚刚",
2060
+ "minutesAgo_one": "{{count}} 分钟前",
2061
+ "minutesAgo_other": "{{count}} 分钟前",
2062
+ "hoursAgo_one": "{{count}} 小时前",
2063
+ "hoursAgo_other": "{{count}} 小时前",
2064
+ "upToDate": "已是最新",
2065
+ "overdue_one": "已逾期 · {{count}} 天",
2066
+ "overdue_other": "已逾期 · {{count}} 天",
2067
+ "neverBadge": "从未同步",
2068
+ "record": "同步",
2069
+ "recordNow": "立即同步",
2070
+ "deleteTitle": "删除 {{name}}?",
2071
+ "deleteDescription": "该设备及其全部同步记录将被删除。",
2072
+ "delete": "删除",
2073
+ "deletePending": "删除中…",
2074
+ "editTitle": "编辑设备",
2075
+ "edit": "编辑",
2076
+ "save": "保存",
2077
+ "editPending": "保存中…"
2078
+ },
2079
+ "fields": {
2080
+ "resources": "资源",
2081
+ "characters": "角色",
2082
+ "documents": "文档",
2083
+ "messages": "留言",
2084
+ "tags": "标签",
2085
+ "trash": "回收站",
2086
+ "contentSize": "内容大小",
2087
+ "storage": "存储体积",
2088
+ "firstRecord": "首次同步"
2089
+ },
2090
+ "toast": {
2091
+ "deviceAdded": "已添加设备并同步",
2092
+ "deviceAddFailed": "添加设备失败",
2093
+ "deviceUpdated": "已更新设备",
2094
+ "deviceUpdateFailed": "更新设备失败",
2095
+ "deviceDeleted": "已删除设备",
2096
+ "deviceDeleteFailed": "删除设备失败",
2097
+ "recorded": "已同步",
2098
+ "recordFailed": "同步失败"
2099
+ },
2100
+ "banner": {
2101
+ "noDevicesTitle": "暂无同步设备。",
2102
+ "noDevicesDescription": "至少添加一个设备才能追踪同步。",
2103
+ "configureLink": "去配置",
2104
+ "neverSyncedTitle": "{{name}} 从未同步过",
2105
+ "neverSyncedDescription": "该设备暂无同步记录。",
2106
+ "overdueTitle_one": "{{name}} 上次同步在 {{count}} 天前",
2107
+ "overdueTitle_other": "{{name}} 上次同步在 {{count}} 天前",
2108
+ "overdueDescription": "已超过你设定的 {{count}} 天提醒间隔。",
2109
+ "recordLink": "去同步"
2110
+ }
2111
+ },
2112
+ "desktopShell": {
2113
+ "tray": {
2114
+ "open": "打开",
2115
+ "changeLibrary": "更换存储文件夹…",
2116
+ "copyLanAddress": "复制局域网地址",
2117
+ "restartServer": "重启服务器",
2118
+ "updateReady": "更新已就绪——重启以完成",
2119
+ "updateReadyResources": "资源更新已就绪——打开以应用",
2120
+ "quit": "退出",
2121
+ "tooltipServerStopped": "hoardodile —— 服务器已停止",
2122
+ "tooltipUpdateReady": "hoardodile —— 更新已就绪",
2123
+ "copied": "局域网地址已复制到剪贴板。"
2124
+ },
2125
+ "errorPage": {
2126
+ "serverError": "无法连接服务器。服务器可能仍在启动,或已停止。稍候片刻后点击重试,或在托盘中使用「重启服务器」。",
2127
+ "devServerError": "开发服务器未运行。请在另一个终端运行 `pnpm dev`,然后点击重试。"
2128
+ },
2129
+ "dialog": {
2130
+ "lanPasswordRequired": "请先设置管理员密码,再启用局域网访问。",
2131
+ "cancel": "取消",
2132
+ "serverStoppedBody": "服务器已停止。请在托盘中使用「重启服务器」。",
2133
+ "serverNotRunningMessage": "服务器未运行。",
2134
+ "restartServer": "重启服务器",
2135
+ "serverFailedToStart": "服务器启动失败:\n{{message}}"
2136
+ },
2137
+ "shell": {
2138
+ "serverUnreachable": "无法连接服务器",
2139
+ "retry": "重试",
2140
+ "loadingLabel": "加载中"
2141
+ },
2142
+ "wizard": {
2143
+ "title": "欢迎使用 hoardodile",
2144
+ "intro": "选择这台电脑存放归档的位置。之后可以在设置或托盘里更换文件夹。",
2145
+ "library": "存储文件夹",
2146
+ "browse": "浏览",
2147
+ "autoStart": "开机启动",
2148
+ "autoStartHint": "登录 Windows 时打开 hoardodile。",
2149
+ "startInTray": "启动到托盘",
2150
+ "startInTrayHint": "在托盘中选择打开之前不显示窗口。",
2151
+ "continue": "继续",
2152
+ "missingBridge": "桌面桥接不可用。请重启应用。"
2153
+ }
2154
+ }
2155
+ }