mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[partition] Adjust message and fix debug message
This commit is contained in:
parent
9a5099cd48
commit
36396d0cfd
1 changed files with 4 additions and 6 deletions
|
@ -1445,18 +1445,16 @@ ChoicePage::setupActions()
|
||||||
|
|
||||||
if ( tableType != PartitionTable::unknownTableType && !matchTableType )
|
if ( tableType != PartitionTable::unknownTableType && !matchTableType )
|
||||||
{
|
{
|
||||||
m_messageLabel->setText( tr( "This storage device already may has an operating system on it, "
|
m_messageLabel->setText( tr( "This storage device already has an operating system on it, "
|
||||||
"but its partition table <strong>%1</strong> mismatch the "
|
"but the partition table <strong>%1</strong> is different from the "
|
||||||
"requirement <strong>%2</strong>.<br/>" )
|
"needed <strong>%2</strong>.<br/>" )
|
||||||
.arg( PartitionTable::tableTypeToName( tableType ) )
|
.arg( PartitionTable::tableTypeToName( tableType ) )
|
||||||
.arg( m_requiredPartitionTableType.join( " or " ) ) );
|
.arg( m_requiredPartitionTableType.join( " or " ) ) );
|
||||||
m_messageLabel->show();
|
m_messageLabel->show();
|
||||||
|
|
||||||
cWarning() << "Partition table" << PartitionTable::tableTypeToName( tableType )
|
cWarning() << "Partition table" << PartitionTable::tableTypeToName( tableType )
|
||||||
<< "does not match the requirement " << m_requiredPartitionTableType.join( " or " )
|
<< "does not match the requirement " << m_requiredPartitionTableType.join( " or " )
|
||||||
<< ", "
|
<< ", ENABLING erease feature and DISABLING alongside, replace and manual features.";
|
||||||
"ENABLING erease feature and ";
|
|
||||||
"DISABLING alongside, replace and manual features.";
|
|
||||||
m_eraseButton->show();
|
m_eraseButton->show();
|
||||||
m_alongsideButton->hide();
|
m_alongsideButton->hide();
|
||||||
m_replaceButton->hide();
|
m_replaceButton->hide();
|
||||||
|
|
Loading…
Add table
Reference in a new issue