From 4965ada7852c8c446f39896230e9ca9eebc4a2bd Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Tue, 18 Mar 2025 01:41:27 +0200 Subject: [PATCH] Shorten the popup header text --- public/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/script.js b/public/script.js index 15cb9a80c..3a5cedaf0 100644 --- a/public/script.js +++ b/public/script.js @@ -6761,8 +6761,8 @@ export async function saveChat({ chatName, withMetadata, mesId, force = false } } const forceSaveConfirmed = await Popup.show.confirm( - t`Chat integrity check failed, continuing the operation may result in data loss.`, - t`Would you like to overwrite the chat file anyway? Pressing "NO" will cancel the save operation.`, + t`ERROR: Chat integrity check failed.`, + t`Continuing the operation may result in data loss. Would you like to overwrite the chat file anyway? Pressing "NO" will cancel the save operation.`, { okButton: t`Yes, overwrite`, cancelButton: t`No, cancel` }, ) === POPUP_RESULT.AFFIRMATIVE;