Fixup strings.
This commit is contained in:
parent
0017176f34
commit
b811f9e261
@ -104,8 +104,8 @@ ChoicePage::ChoicePage( QWidget* parent )
|
|||||||
// Drive selector + preview
|
// Drive selector + preview
|
||||||
CALAMARES_RETRANSLATE(
|
CALAMARES_RETRANSLATE(
|
||||||
retranslateUi( this );
|
retranslateUi( this );
|
||||||
m_drivesLabel->setText( tr( "Pick a storage de&vice:" ) );
|
m_drivesLabel->setText( tr( "Select storage de&vice:" ) );
|
||||||
m_previewBeforeLabel->setText( tr( "Device:" ) );
|
m_previewBeforeLabel->setText( tr( "Current:" ) );
|
||||||
m_previewAfterLabel->setText( tr( "After:" ) );
|
m_previewAfterLabel->setText( tr( "After:" ) );
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -719,9 +719,9 @@ ChoicePage::updateActionChoicePreview( ChoicePage::Choice choice )
|
|||||||
{
|
{
|
||||||
case Alongside:
|
case Alongside:
|
||||||
{
|
{
|
||||||
m_previewBeforeLabel->setText( tr( "Before:" ) );
|
m_previewBeforeLabel->setText( tr( "Current:" ) );
|
||||||
m_selectLabel->setText( tr( "<strong>Select which partition to shrink, "
|
m_selectLabel->setText( tr( "<strong>Select a partition to shrink, "
|
||||||
"then drag to resize</strong>" ) );
|
"then drag the bottom bar to resize</strong>" ) );
|
||||||
m_selectLabel->show();
|
m_selectLabel->show();
|
||||||
|
|
||||||
m_afterPartitionSplitterWidget = new PartitionSplitterWidget( m_previewAfterFrame );
|
m_afterPartitionSplitterWidget = new PartitionSplitterWidget( m_previewAfterFrame );
|
||||||
@ -759,7 +759,7 @@ ChoicePage::updateActionChoicePreview( ChoicePage::Choice choice )
|
|||||||
case Erase:
|
case Erase:
|
||||||
case Replace:
|
case Replace:
|
||||||
{
|
{
|
||||||
m_previewBeforeLabel->setText( tr( "Before:" ) );
|
m_previewBeforeLabel->setText( tr( "Current:" ) );
|
||||||
m_afterPartitionBarsView = new PartitionBarsView( m_previewAfterFrame );
|
m_afterPartitionBarsView = new PartitionBarsView( m_previewAfterFrame );
|
||||||
m_afterPartitionLabelsView = new PartitionLabelsView( m_previewAfterFrame );
|
m_afterPartitionLabelsView = new PartitionLabelsView( m_previewAfterFrame );
|
||||||
m_afterPartitionLabelsView->setCustomNewRootLabel( Calamares::Branding::instance()->
|
m_afterPartitionLabelsView->setCustomNewRootLabel( Calamares::Branding::instance()->
|
||||||
@ -785,7 +785,7 @@ ChoicePage::updateActionChoicePreview( ChoicePage::Choice choice )
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_selectLabel->show();
|
m_selectLabel->show();
|
||||||
m_selectLabel->setText( tr( "<strong>Select which partition to replace</strong>" ) );
|
m_selectLabel->setText( tr( "<strong>Select a partition to install on</strong>" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -794,7 +794,7 @@ ChoicePage::updateActionChoicePreview( ChoicePage::Choice choice )
|
|||||||
case Manual:
|
case Manual:
|
||||||
m_selectLabel->hide();
|
m_selectLabel->hide();
|
||||||
m_previewAfterFrame->hide();
|
m_previewAfterFrame->hide();
|
||||||
m_previewBeforeLabel->setText( tr( "Device:" ) );
|
m_previewBeforeLabel->setText( tr( "Current:" ) );
|
||||||
m_previewAfterLabel->hide();
|
m_previewAfterLabel->hide();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -218,7 +218,7 @@ PartitionViewStep::createSummaryWidget() const
|
|||||||
field->setSpacing( 6 );
|
field->setSpacing( 6 );
|
||||||
field->addWidget( preview );
|
field->addWidget( preview );
|
||||||
field->addWidget( previewLabels );
|
field->addWidget( previewLabels );
|
||||||
formLayout->addRow( tr( "Before:" ), field );
|
formLayout->addRow( tr( "Current:" ), field );
|
||||||
|
|
||||||
preview = new PartitionBarsView;
|
preview = new PartitionBarsView;
|
||||||
previewLabels = new PartitionLabelsView;
|
previewLabels = new PartitionLabelsView;
|
||||||
|
Loading…
Reference in New Issue
Block a user