Skip to content
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/modules/partition/gui/ChoicePage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,9 @@ ChoicePage::setupEfiSystemPartitionSelector()
if ( !PartUtils::isEfiFilesystemRecommendedSize( efiPartition ) )
{
text += QStringLiteral( "<br/><font color=\"red\">" )
+ tr( "The EFI system partition is too small, please use manual partition." )
+ tr( "The EFI system partition is too small, please select manual partitioning ",
"and increase its size to %1 MB or greater")
.arg(PartUtils::efiFilesystemRecommendedSize() / 1024 / 1024)
Comment thread
alosslessdev marked this conversation as resolved.
Outdated
Comment thread
ptr1337 marked this conversation as resolved.
Outdated
+ QStringLiteral( "</font>" );
}
m_efiLabel->setText( text );
Expand Down