Update no validate warning

This commit is contained in:
Cohee
2025-01-04 14:16:25 +02:00
parent 8514ac29fc
commit 6552038712
2 changed files with 2 additions and 2 deletions

View File

@@ -2380,7 +2380,7 @@
"help_macros_isMobile": "目前是否在行動端使用:\"true\" 表示是,\"false\" 表示否", "help_macros_isMobile": "目前是否在行動端使用:\"true\" 表示是,\"false\" 表示否",
"Persona Lorebook for": "角色知識書適用於", "Persona Lorebook for": "角色知識書適用於",
"persona_world_template_txt": "選中的世界資訊將綁定到此角色。生成 AI 回覆時,會結合全域、角色及聊天知識書中的內容。", "persona_world_template_txt": "選中的世界資訊將綁定到此角色。生成 AI 回覆時,會結合全域、角色及聊天知識書中的內容。",
"Unable to verify key; press \"Test Message\" to validate.": "無法驗證金鑰;請點擊「測試訊息」進行驗證。", "Key saved; press \"Test Message\" to verify.": "金鑰已儲存;請點擊「測試訊息」進行驗證。",
"Preset name:": "預設名稱:", "Preset name:": "預設名稱:",
"Hint: Use a character/group name to bind preset to a specific chat.": "提示:使用角色/群組名稱將綁定預設至特定對話。", "Hint: Use a character/group name to bind preset to a specific chat.": "提示:使用角色/群組名稱將綁定預設至特定對話。",
"Your preset contains proxy and/or custom endpoint settings.": "此預設包含代理和/或自訂端點設定。", "Your preset contains proxy and/or custom endpoint settings.": "此預設包含代理和/或自訂端點設定。",

View File

@@ -3335,7 +3335,7 @@ async function getStatusOpen() {
chat_completion_sources.GROQ, chat_completion_sources.GROQ,
]; ];
if (noValidateSources.includes(oai_settings.chat_completion_source)) { if (noValidateSources.includes(oai_settings.chat_completion_source)) {
let status = t`Unable to verify key; press \"Test Message\" to validate.`; let status = t`Key saved; press \"Test Message\" to verify.`;
setOnlineStatus(status); setOnlineStatus(status);
return resultCheckStatus(); return resultCheckStatus();
} }