mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 08:58:22 -04:00
Use Retranslator in Partitioning module.
This commit is contained in:
parent
8575240b95
commit
faa77d7f5e
5 changed files with 80 additions and 55 deletions
|
@ -34,6 +34,7 @@
|
|||
#include "CalamaresVersion.h"
|
||||
#include "utils/CalamaresUtilsGui.h"
|
||||
#include "utils/Logger.h"
|
||||
#include "utils/Retranslator.h"
|
||||
#include "widgets/WaitingWidget.h"
|
||||
#include "GlobalStorage.h"
|
||||
#include "JobQueue.h"
|
||||
|
@ -57,8 +58,9 @@ PartitionViewStep::PartitionViewStep( QObject* parent )
|
|||
{
|
||||
m_widget->setContentsMargins( 0, 0, 0, 0 );
|
||||
|
||||
QWidget* waitingWidget = new WaitingWidget( tr( "Gathering system information..." ) );
|
||||
WaitingWidget* waitingWidget = new WaitingWidget( QString() );
|
||||
m_widget->addWidget( waitingWidget );
|
||||
CALAMARES_RETRANSLATE( waitingWidget->setText( tr( "Gathering system information..." ) ); )
|
||||
|
||||
QTimer* timer = new QTimer;
|
||||
timer->setSingleShot( true );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue