Merge pull request #2775 from FriedCaper/summarize-restore-tooltip Add tooltip to Restore Previous button in Summarize plugin

479923fdf83fb3e104c4d9ea20f901e0bcf971a5

Cohee <18619528+Cohee1207@users.noreply.github.com>

Signed
2 files changed, +2 -1Ignore whitespace
public/locales/zh-cn.json+1 -0
@@ -1305,6 +1305,7 @@
1305 "ext_sum_current_summary": "当前摘要:",1305 "ext_sum_current_summary": "当前摘要:",
1306 "ext_sum_restore_previous": "恢复上一个",1306 "ext_sum_restore_previous": "恢复上一个",
1307 "ext_sum_memory_placeholder": "摘要将在这里生成...",1307 "ext_sum_memory_placeholder": "摘要将在这里生成...",
1308 "ext_sum_restore_tip": "恢复先前的摘要;重复使用以清除此聊天的摘要状态",
1308 "ext_sum_force_tip": "立即触发摘要更新。",1309 "ext_sum_force_tip": "立即触发摘要更新。",
1309 "ext_sum_force_text": "现在总结",1310 "ext_sum_force_text": "现在总结",
1310 "Disable automatic summary updates. While paused, the summary remains as-is. You can still force an update by pressing the Summarize now button (which is only available with the Main API).": "禁用自动摘要更新。暂停时,摘要保持原样。您仍然可以通过按“立即汇总”按钮(仅适用于主 API)强制更新。",1311 "Disable automatic summary updates. While paused, the summary remains as-is. You can still force an update by pressing the Summarize now button (which is only available with the Main API).": "禁用自动摘要更新。暂停时,摘要保持原样。您仍然可以通过按“立即汇总”按钮(仅适用于主 API)强制更新。",
public/scripts/extensions/memory/settings.html+1 -1
@@ -18,7 +18,7 @@
1818
19 <div class="flex-container justifyspacebetween alignitemscenter">19 <div class="flex-container justifyspacebetween alignitemscenter">
20 <span class="flex1" data-i18n="ext_sum_current_summary">Current summary:</span>20 <span class="flex1" data-i18n="ext_sum_current_summary">Current summary:</span>
21 <div id="memory_restore" class="menu_button flex1 margin0">21 <div id="memory_restore" class="menu_button flex1 margin0" data-i18n="[title]ext_sum_restore_tip" title="Restore a previous summary; use repeatedly to clear summarization state for this chat.">
22 <span data-i18n="ext_sum_restore_previous">Restore Previous</span>22 <span data-i18n="ext_sum_restore_previous">Restore Previous</span>
23 </div>23 </div>
24 </div>24 </div>