Improve strings for actions in ChoicePage.

main
Teo Mrnjavac 10 years ago
parent 288177efdf
commit d0235c4e76

@ -120,12 +120,12 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
"<font color=\"red\">Warning: </font>This will delete all of your programs, " "<font color=\"red\">Warning: </font>This will delete all of your programs, "
"documents, photos, music, and any other files." ) "documents, photos, music, and any other files." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
else else
eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>" eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>"
"You will be offered a choice of which disk to erase." ) "You will be offered a choice of which disk to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
) )
replaceButton->hide(); replaceButton->hide();
@ -143,12 +143,12 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
.arg( osName ) ); .arg( osName ) );
alongsideButton->setText( tr( "<b>Install %2 alongside %1</b><br/>" alongsideButton->setText( tr( "<b>Install %2 alongside %1</b><br/>"
"Documents, music and other personal files will be kept. " "The installer will shrink the %1 volume to make room for %2. "
"You can choose which operating system you want each time the " "You can choose which operating system you want each time the "
"computer starts up." ) "computer starts up." )
.arg( osName ) .arg( osName )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
if ( core->deviceModel()->rowCount() < 2 ) if ( core->deviceModel()->rowCount() < 2 )
eraseButton->setText( tr( "<b>Erase entire disk with %1 and install %2</b><br/>" eraseButton->setText( tr( "<b>Erase entire disk with %1 and install %2</b><br/>"
@ -157,17 +157,17 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
"documents, photos, music, and any other files." ) "documents, photos, music, and any other files." )
.arg( osName ) .arg( osName )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
else else
eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>" eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>"
"You will be offered a choice of which disk to erase." ) "You will be offered a choice of which disk to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
replaceButton->setText( tr( "<b>Install %1 on an existing partition</b><br/>" replaceButton->setText( tr( "<b>Replace a partition with %1</b><br/>"
"You will be offered a choice of which partition to erase." ) "You will be offered a choice of which partition to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
) )
} }
else else
@ -177,28 +177,28 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
"What would you like to do?" ) ); "What would you like to do?" ) );
alongsideButton->setText( tr( "<b>Install %1 alongside your current operating system</b><br/>" alongsideButton->setText( tr( "<b>Install %1 alongside your current operating system</b><br/>"
"Documents, music and other personal files will be kept. " "The installer will shrink an existing volume to make room for %2. "
"You can choose which operating system you want each time the " "You can choose which operating system you want each time the "
"computer starts up." ) "computer starts up." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
if ( core->deviceModel()->rowCount() < 2 ) if ( core->deviceModel()->rowCount() < 2 )
eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>" eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>"
"<font color=\"red\">Warning: </font>This will delete all of your programs, " "<font color=\"red\">Warning: </font>This will delete all of your programs, "
"documents, photos, music, and any other files." ) "documents, photos, music, and any other files." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
else else
eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>" eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>"
"You will be offered a choice of which disk to erase." ) "You will be offered a choice of which disk to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
replaceButton->setText( tr( "<b>Install %1 on an existing partition</b><br/>" replaceButton->setText( tr( "<b>Replace a partition with %1</b><br/>"
"You will be offered a choice of which partition to erase." ) "You will be offered a choice of which partition to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
) )
} }
if ( !osproberEntries.first().canBeResized ) if ( !osproberEntries.first().canBeResized )
@ -224,28 +224,28 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
"What would you like to do?" ) ); "What would you like to do?" ) );
alongsideButton->setText( tr( "<b>Install %1 alongside your current operating systems</b><br/>" alongsideButton->setText( tr( "<b>Install %1 alongside your current operating systems</b><br/>"
"Documents, music and other personal files will be kept. " "The installer will shrink an existing volume to make room for %2. "
"You can choose which operating system you want each time the " "You can choose which operating system you want each time the "
"computer starts up." ) "computer starts up." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
if ( core->deviceModel()->rowCount() < 2 ) if ( core->deviceModel()->rowCount() < 2 )
eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>" eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>"
"<font color=\"red\">Warning: </font>This will delete all of your programs, " "<font color=\"red\">Warning: </font>This will delete all of your programs, "
"documents, photos, music, and any other files." ) "documents, photos, music, and any other files." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
else else
eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>" eraseButton->setText( tr( "<b>Erase disk and install %1</b><br/>"
"You will be offered a choice of which disk to erase." ) "You will be offered a choice of which disk to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
replaceButton->setText( tr( "<b>Install %1 on an existing partition</b><br/>" replaceButton->setText( tr( "<b>Replace a partition with %1</b><br/>"
"You will be offered a choice of which partition to erase." ) "You will be offered a choice of which partition to erase." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) ) ); string( Calamares::Branding::ShortVersionedName ) ) );
) )
if ( !atLeastOneCanBeResized ) if ( !atLeastOneCanBeResized )
@ -258,7 +258,7 @@ ChoicePage::init( PartitionCoreModule* core, const OsproberEntryList& osproberEn
PrettyRadioButton* somethingElseButton = new PrettyRadioButton; PrettyRadioButton* somethingElseButton = new PrettyRadioButton;
CALAMARES_RETRANSLATE( CALAMARES_RETRANSLATE(
somethingElseButton->setText( tr( "<b>Something else</b><br/>" somethingElseButton->setText( tr( "<b>Manual partitioning</b><br/>"
"You can create or resize partitions yourself, or choose " "You can create or resize partitions yourself, or choose "
"multiple partitions for %1." ) "multiple partitions for %1." )
.arg( Calamares::Branding::instance()-> .arg( Calamares::Branding::instance()->

Loading…
Cancel
Save