About to -> you are about to

You're is used in some other places but im lazy

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad
2022-12-26 14:33:50 +00:00
parent cbe5af235c
commit bf04becc9e
8 changed files with 13 additions and 14 deletions

View File

@ -176,12 +176,12 @@ void ExternalResourcesPage::removeItem()
bool multiple = count > 1;
if (multiple) {
text = tr("About to remove: %1 items\n"
text = tr("You are about to remove %1 items.\n"
"This may be permanent and they will be gone from the folder.\n\n"
"Are you sure?")
.arg(count);
} else if (folder) {
text = tr("About to remove: %1 (folder)\n"
text = tr("You are about to remove the folder \"%1\".\n"
"This may be permanent and it will be gone from the parent folder.\n\n"
"Are you sure?")
.arg(m_model->at(selection.indexes().at(0).row()).fileinfo().fileName());