From 74c0a194fdfd467858f19e0b4d08d1c2312403a2 Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Mon, 29 Jul 2024 20:17:34 +0200 Subject: [PATCH] Update tag restore popup text --- public/scripts/tags.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/scripts/tags.js b/public/scripts/tags.js index 501171039..4b8115f91 100644 --- a/public/scripts/tags.js +++ b/public/scripts/tags.js @@ -1450,8 +1450,8 @@ async function onTagRestoreFileSelect(e) { // Prompt user if they want to overwrite existing tags let overwrite = false; if (tags.length > 0) { - const result = await Popup.show.confirm('Tag Restore', 'You have existing tags. If the backup contains any of those tags, to you want the backup to overwrite your current tags?', - { okButton: 'Overwrite', cancelButton: 'Keep' }); + const result = await Popup.show.confirm('Tag Restore', 'You have existing tags. If the backup contains any of those tags, do you want the backup to overwrite their settings (Name, color, folder state, etc)?', + { okButton: 'Overwrite', cancelButton: 'Keep Existing' }); overwrite = result === POPUP_RESULT.AFFIRMATIVE; }