diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 0fac14f3ba..ad14563e05 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -1253,7 +1253,10 @@ ChoicePage::setupEfiSystemPartitionSelector() if ( !PartUtils::isEfiFilesystemRecommendedSize( efiPartition ) ) { text += QStringLiteral( "
" ) - + 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.", + "@info, %1 is the recommended EFI system partition size in MB" ) + .arg( PartUtils::efiFilesystemRecommendedSize() / 1024 / 1024 ) + QStringLiteral( "" ); } m_efiLabel->setText( text );