diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-12-25 13:06:38 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-12-25 13:06:38 +0100 |
commit | 257f8ca9fdb3c12d90e0cdf4167457fc8e810b9d (patch) | |
tree | 562f1227403246aed3e8bf804c58481990e5612d /application | |
parent | 642c3f1d09c534ce290ef27b4999baefef81b931 (diff) | |
download | MultiMC-257f8ca9fdb3c12d90e0cdf4167457fc8e810b9d.tar MultiMC-257f8ca9fdb3c12d90e0cdf4167457fc8e810b9d.tar.gz MultiMC-257f8ca9fdb3c12d90e0cdf4167457fc8e810b9d.tar.lz MultiMC-257f8ca9fdb3c12d90e0cdf4167457fc8e810b9d.tar.xz MultiMC-257f8ca9fdb3c12d90e0cdf4167457fc8e810b9d.zip |
NOISSUE fix typo when deleting log files
"Do you really want to these files?" was missing "delete".
Diffstat (limited to 'application')
-rw-r--r-- | application/pages/OtherLogsPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/pages/OtherLogsPage.cpp b/application/pages/OtherLogsPage.cpp index 3988e939..0fe7360b 100644 --- a/application/pages/OtherLogsPage.cpp +++ b/application/pages/OtherLogsPage.cpp @@ -200,7 +200,7 @@ void OtherLogsPage::on_btnClean_clicked() } else { - messageBox->setText(tr("Do you really want to these files?\n%1").arg(toDelete.join('\n'))); + messageBox->setText(tr("Do you really want to delete these files?\n%1").arg(toDelete.join('\n'))); } messageBox->setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel); messageBox->setDefaultButton(QMessageBox::Ok); |