From 5677a4bb28f8e82c535c440886e7ef7d2a71a50d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 15 Apr 2019 08:42:06 -0400 Subject: [PATCH] [finished] Fix up string arguments - The "set up" message only uses one argument. --- src/modules/finished/FinishedPage.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/modules/finished/FinishedPage.cpp b/src/modules/finished/FinishedPage.cpp index 856742ae6..cad05bda4 100644 --- a/src/modules/finished/FinishedPage.cpp +++ b/src/modules/finished/FinishedPage.cpp @@ -54,8 +54,7 @@ FinishedPage::FinishedPage( QWidget* parent ) ui->mainText->setText( tr( "

All done.


" "%1 has been set up on your computer.
" "You may now start using your new system." ) - .arg( *Calamares::Branding::VersionedName ) - .arg( *Calamares::Branding::ProductName ) ); + .arg( *Calamares::Branding::VersionedName ) ); ui->restartCheckBox->setToolTip( tr ( "" "

When this box is checked, your system will " "restart immediately when you click on " @@ -68,8 +67,7 @@ FinishedPage::FinishedPage( QWidget* parent ) "%1 has been installed on your computer.
" "You may now restart into your new system, or continue " "using the %2 Live environment." ) - .arg( *Calamares::Branding::VersionedName ) - .arg( *Calamares::Branding::ProductName ) ); + .arg( *Calamares::Branding::VersionedName, *Calamares::Branding::ProductName ) ); ui->restartCheckBox->setToolTip( tr ( "" "

When this box is checked, your system will " "restart immediately when you click on "