Update tag restore popup text

This commit is contained in:
Wolfsblvt 2024-07-29 20:17:34 +02:00
parent 4408f52c79
commit 74c0a194fd
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}