mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 10:25:36 -04:00
Translate user-visible strings!
This commit is contained in:
parent
028f56d94a
commit
e9f113a6a8
1 changed files with 8 additions and 5 deletions
|
@ -263,12 +263,15 @@ CreatePartitionDialog::checkMountPointSelection()
|
||||||
{
|
{
|
||||||
const QString& selection = m_ui->mountPointComboBox->currentText();
|
const QString& selection = m_ui->mountPointComboBox->currentText();
|
||||||
|
|
||||||
if (m_usedMountPoints.contains(selection)) {
|
if ( m_usedMountPoints.contains( selection ) )
|
||||||
m_ui->labelMountPoint->setText("Mountpoint already in use. Please select another one.");
|
{
|
||||||
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
|
m_ui->labelMountPoint->setText( tr( "Mountpoint already in use. Please select another one." ) );
|
||||||
} else {
|
m_ui->buttonBox->button( QDialogButtonBox::Ok )->setEnabled( false );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
m_ui->labelMountPoint->setText( QString() );
|
m_ui->labelMountPoint->setText( QString() );
|
||||||
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
|
m_ui->buttonBox->button( QDialogButtonBox::Ok )->setEnabled( true );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue