diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 8a1313237..5cddfe798 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -1057,7 +1057,8 @@ ChoicePage::updateActionChoicePreview( InstallChoice choice ) Q_UNUSED( path ) sizeLabel->setText( tr( "%1 will be shrunk to %2MiB and a new " - "%3MiB partition will be created for %4.", "@info, %1 is partition name, %4 is product name" ) + "%3MiB partition will be created for %4.", + "@info, %1 is partition name, %4 is product name" ) .arg( m_beforePartitionBarsView->selectionModel()->currentIndex().data().toString() ) .arg( Calamares::BytesToMiB( size ) ) .arg( Calamares::BytesToMiB( sizeNext ) ) @@ -1188,14 +1189,16 @@ ChoicePage::setupEfiSystemPartitionSelector() { m_efiLabel->setText( tr( "An EFI system partition cannot be found anywhere " "on this system. Please go back and use manual " - "partitioning to set up %1.", "@info, %1 is product name" ) + "partitioning to set up %1.", + "@info, %1 is product name" ) .arg( Calamares::Branding::instance()->shortProductName() ) ); updateNextEnabled(); } else if ( efiSystemPartitions.count() == 1 ) //probably most usual situation { m_efiLabel->setText( tr( "The EFI system partition at %1 will be used for " - "starting %2.", "@info, %1 is partition path, %2 is product name" ) + "starting %2.", + "@info, %1 is partition path, %2 is product name" ) .arg( efiSystemPartitions.first()->partitionPath() ) .arg( Calamares::Branding::instance()->shortProductName() ) ); } @@ -1505,7 +1508,8 @@ ChoicePage::setupActions() { if ( atLeastOneIsMounted ) { - m_messageLabel->setText( tr( "This storage device has one of its partitions mounted.", "@info" ) ); + m_messageLabel->setText( + tr( "This storage device has one of its partitions mounted.", "@info" ) ); } else { diff --git a/src/modules/partition/gui/EncryptWidget.cpp b/src/modules/partition/gui/EncryptWidget.cpp index 176a7c610..73a6b6f8b 100644 --- a/src/modules/partition/gui/EncryptWidget.cpp +++ b/src/modules/partition/gui/EncryptWidget.cpp @@ -155,7 +155,8 @@ EncryptWidget::updateState( const bool notify ) else if ( m_filesystem == FileSystem::Zfs && p1.length() < ZFS_MIN_LENGTH ) { applyPixmap( m_ui->m_iconLabel, Calamares::StatusError ); - m_ui->m_iconLabel->setToolTip( tr( "Password must be a minimum of %1 characters.", "@tooltip" ).arg( ZFS_MIN_LENGTH ) ); + m_ui->m_iconLabel->setToolTip( + tr( "Password must be a minimum of %1 characters.", "@tooltip" ).arg( ZFS_MIN_LENGTH ) ); } else if ( p1 == p2 ) { diff --git a/src/modules/partition/gui/ScanningDialog.cpp b/src/modules/partition/gui/ScanningDialog.cpp index 8418d8ec8..ce8de22dc 100644 --- a/src/modules/partition/gui/ScanningDialog.cpp +++ b/src/modules/partition/gui/ScanningDialog.cpp @@ -65,7 +65,8 @@ ScanningDialog::run( const QFuture< void >& future, void ScanningDialog::run( const QFuture< void >& future, const std::function< void() >& callback, QWidget* parent ) { - ScanningDialog::run( future, tr( "Scanning storage devices…", "@status" ), tr( "Partitioning…", "@status" ), callback, parent ); + ScanningDialog::run( + future, tr( "Scanning storage devices…", "@status" ), tr( "Partitioning…", "@status" ), callback, parent ); } void