diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-31 18:25:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 18:25:29 -0700 |
commit | 4df4b4390086171b9ee78a8cd7efb32412292485 (patch) | |
tree | a722687c17575807b964aecdd5367ee0dea3420d /launcher | |
parent | 0c986ba4d006740947603afb2e18dd9d2ffdfd2f (diff) | |
download | PrismLauncher-4df4b4390086171b9ee78a8cd7efb32412292485.tar.gz PrismLauncher-4df4b4390086171b9ee78a8cd7efb32412292485.tar.bz2 PrismLauncher-4df4b4390086171b9ee78a8cd7efb32412292485.zip |
fix: Apply suggestions from code review (string changes)
Co-authored-by: flow <flowlnlnln@gmail.com>
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/ui/MainWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index a6aa8320..e20a7613 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -1341,10 +1341,10 @@ void MainWindow::on_actionDeleteInstance_triggered() if (!linkedInstances.empty()) { response = CustomMessageBox::selectable( this, tr("There are linked instances"), - tr("The folowing Instance(s) might reference files in this instance:\n\n" + tr("The folowing instance(s) might reference files in this instance:\n\n" "%1\n\n" "Deleting it could break the other instance(s), \n\n" - "Are you sure?").arg(linkedInstances.join("\n")), + "Do you wish to proceed?").arg(linkedInstances.join("\n")), QMessageBox::Warning, QMessageBox::Yes | QMessageBox::No, QMessageBox::No )->exec(); if (response != QMessageBox::Yes) |