Merge pull request #1422 from andy1247008998/patch-2

remove unnecessary period mark since it's a title
This commit is contained in:
Adriaan de Groot 2020-06-06 17:22:13 +02:00 committed by GitHub
commit 5e79176f47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -229,14 +229,14 @@ Config::genericWelcomeMessage() const
if ( Calamares::Settings::instance()->isSetupMode() ) if ( Calamares::Settings::instance()->isSetupMode() )
{ {
message = Calamares::Branding::instance()->welcomeStyleCalamares() message = Calamares::Branding::instance()->welcomeStyleCalamares()
? tr( "<h1>Welcome to the Calamares setup program for %1.</h1>" ) ? tr( "<h1>Welcome to the Calamares setup program for %1</h1>" )
: tr( "<h1>Welcome to %1 setup.</h1>" ); : tr( "<h1>Welcome to %1 setup</h1>" );
} }
else else
{ {
message = Calamares::Branding::instance()->welcomeStyleCalamares() message = Calamares::Branding::instance()->welcomeStyleCalamares()
? tr( "<h1>Welcome to the Calamares installer for %1.</h1>" ) ? tr( "<h1>Welcome to the Calamares installer for %1</h1>" )
: tr( "<h1>Welcome to the %1 installer.</h1>" ); : tr( "<h1>Welcome to the %1 installer</h1>" );
} }
return message; return message;