summaryrefslogtreecommitdiff
path: root/src/modinfodialogfiletree.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-06-25 18:10:00 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-07-02 10:10:19 -0400
commitcb56bf76fd8036895bda468a5ad9ef707dbefce9 (patch)
treed0f253edc8ef3921163cf7e14a269422ce98dc62 /src/modinfodialogfiletree.cpp
parentfc3ed80d0de220a1aa9d2b459785d47beea5861b (diff)
fixed text editors not clearing when switching mods
ported typo fixes that applied to the mod info dialog
Diffstat (limited to 'src/modinfodialogfiletree.cpp')
-rw-r--r--src/modinfodialogfiletree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modinfodialogfiletree.cpp b/src/modinfodialogfiletree.cpp
index b57f6b5d..24faec5e 100644
--- a/src/modinfodialogfiletree.cpp
+++ b/src/modinfodialogfiletree.cpp
@@ -166,9 +166,9 @@ void FileTreeTab::onDelete()
if (rows.count() == 1) {
QString fileName = m_fs->fileName(rows[0]);
- message = tr("Are sure you want to delete \"%1\"?").arg(fileName);
+ message = tr("Are you sure you want to delete \"%1\"?").arg(fileName);
} else {
- message = tr("Are sure you want to delete the selected files?");
+ message = tr("Are you sure you want to delete the selected files?");
}
if (QMessageBox::question(parentWidget(), tr("Confirm"), message) != QMessageBox::Yes) {