diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-25 18:10:00 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-02 10:10:19 -0400 |
| commit | cb56bf76fd8036895bda468a5ad9ef707dbefce9 (patch) | |
| tree | d0f253edc8ef3921163cf7e14a269422ce98dc62 /src/modinfodialogfiletree.cpp | |
| parent | fc3ed80d0de220a1aa9d2b459785d47beea5861b (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.cpp | 4 |
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) { |
