Fix help keys

This commit is contained in:
Kwaroran
2025-03-10 19:42:45 +09:00
parent 823606f825
commit 1a3c111830
2 changed files with 5 additions and 5 deletions

View File

@@ -174,6 +174,8 @@ export const languageEnglish = {
presetChain: "If it is not blank, the preset will be changed and applied randomly every time when user sends a message in the preset list in this input. preset list should be seperated by comma, for example, `preset1,preset2`.",
legacyMediaFindings: "If enabled, it will use the old method to find media assets, without using the additional search algorithm.",
comfyWorkflow: "Put the API workflow of comfy UI. you can get your API workflow in comfy UI by pressing the 'Workflow > Export (API)' button. you must also put {{risu_prompt}} in you workflow text. the {{risu_prompt}} will be replaced with the prompt provided by the Risu.",
automaticCachePoint: "Automatically creates cache point after the chat ends, if the caching point doesn't exist.",
experimentalChatCompressionDesc: "Compresses the unused chat data and saves in seperate file.",
},
setup: {
chooseProvider: "Choose AI Provider",
@@ -1068,7 +1070,5 @@ export const languageEnglish = {
claudeCachingRetrival: "Claude Caching Retrival",
claudeCachingRetrivalDesc: "Extends the cache time for Claude Caching, by requesting every 4 minutes. this can reduce the cache miss rate, but it can increase the cost if its not used properly.",
automaticCachePoint: "Automatic Cache Point",
automaticCachePointDesc: "Automatically creates cache point after the chat ends, if the caching point doesn't exist.",
experimentalChatCompression: "Experimental Chat Data Handling",
experimentalChatCompressionDesc: "Compresses the unused chat data and saves in seperate file.",
experimentalChatCompression: "Experimental Chat Data Handling"
}

View File

@@ -162,14 +162,14 @@
</div>
<div class="flex items-center mt-4">
<Check bind:check={DBState.db.automaticCachePoint} name={language.automaticCachePoint}>
<Help key="experimental"/><Help key="experimental"/>
<Help key="automaticCachePoint"/><Help key="experimental"/>
</Check>
</div>
{#if !isNodeServer}
<div class="flex items-center mt-4">
<Check bind:check={DBState.db.chatCompression} name={language.experimentalChatCompression}>
<Help key="experimental"/><Help key="experimental"/>
<Help key="experimentalChatCompressionDesc"/><Help key="experimental"/>
</Check>
</div>
{/if}