```
feat(i18n): 添加简体中文语言选项并扩展国际化支持 添加了简体中文(zh-cn)语言选项到设置页面的语言选择下拉菜单中。 同时新增了大量国际化字符串。 fix(parser): 提高解析器的鲁棒性 现在会遍历所有json对象检测统一格式,即使AI响应中包含多个JSON对象也能正确识别统一格式。 ```
This commit is contained in:
@@ -323,7 +323,7 @@ export function setupDiceRoller() {
|
||||
e.stopPropagation(); // Prevent opening the dice popup
|
||||
clearDiceRollCore();
|
||||
});
|
||||
$('#rpg-clear-dice').attr('title', i18n.getTranslation('template.mainPanel.clearLastRoll'));
|
||||
$('#rpg-clear-dice').attr('title', i18n.getTranslation('template.mainPanel.clearLastRoll') || 'Clear last roll');
|
||||
|
||||
return diceModal;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user