Update 'zh-cn' translation (#2583) * Update world-info.js - make the rename button is also available in case of WIbook corruption. - make the WI engine doesn't crash when certain entrys with `content === null`. * Update zh-cn.json * Part revert "Update world-info.js" This part reverts commit 0693c9c400145dce0f9fed5480e71160d3544eca.
Signed| @@ -443,7 +443,9 @@ | ||
| 443 | 443 | "Example Separator": "示例分隔符", |
| 444 | 444 | "Chat Start": "聊天开始", |
| 445 | 445 | "Add Chat Start and Example Separator to a list of stopping strings.": "将聊天开始和示例分隔符添加到停止字符串列表中。", |
| 446 | 446 | "UseSeparators as Stop Strings": "用作停止字符串分隔符作为终止字符串", |
| 447 | + "Add Character and User names to a list of stopping strings.": "将角色和用户名添加到停止字符串列表中。", | |
| 448 | + "Names as Stop Strings": "名称作为终止字符串", | |
| 447 | 449 | "context_allow_post_history_instructions": "如果在角色卡中定义并且启用了“首选角色卡说明”,则在提示末尾包含后历史说明。\n不建议在文本补全模型中使用此功能,否则会导致输出错误。", |
| 448 | 450 | "Allow Post-History Instructions": "允许后历史说明", |
| 449 | 451 | "Context Order": "上下文顺序", |
| @@ -3584,7 +3584,7 @@ export async function getSortedEntries() { | ||
| 3584 | 3584 | |
| 3585 | 3585 | // Parse decorators |
| 3586 | 3586 | entries = entries.map((entry) => { |
| 3587 | 3587 | const [decorators, content] = parseDecorators(entry.content || ''); |
| 3588 | 3588 | return { ...entry, decorators, content }; |
| 3589 | 3589 | }); |
| 3590 | 3590 | |