diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp
index b577fe5ab..7eadc7d3d 100644
--- a/src/modules/partition/gui/ChoicePage.cpp
+++ b/src/modules/partition/gui/ChoicePage.cpp
@@ -1445,18 +1445,16 @@ ChoicePage::setupActions()
if ( tableType != PartitionTable::unknownTableType && !matchTableType )
{
- m_messageLabel->setText( tr( "This storage device already may has an operating system on it, "
- "but its partition table %1 mismatch the "
- "requirement %2.
" )
+ m_messageLabel->setText( tr( "This storage device already has an operating system on it, "
+ "but the partition table %1 is different from the "
+ "needed %2.
" )
.arg( PartitionTable::tableTypeToName( tableType ) )
.arg( m_requiredPartitionTableType.join( " or " ) ) );
m_messageLabel->show();
cWarning() << "Partition table" << PartitionTable::tableTypeToName( tableType )
<< "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_alongsideButton->hide();
m_replaceButton->hide();