diff --git a/etc/Translation/Blank.ts b/etc/Translation/Blank.ts index 523960d6..a018c88a 100644 --- a/etc/Translation/Blank.ts +++ b/etc/Translation/Blank.ts @@ -2623,124 +2623,124 @@ - + Abort - + Close - + Show details for selected job - + Browse Output File Location - + Encoding Files - + Your files are being encoded, please be patient... - + Encoding files, please wait... - + Multi-threading enabled: Running %1 instances in parallel! - + Aborted! Waiting for running jobs to terminate... - + Encoding: %1 files of %2 completed so far, please wait... - + Creating the playlist file, please wait... - + Process was aborted by the user after %1 file(s)! - + Process was aborted prematurely by the user! - + LameXP - Aborted - + Process was aborted by the user. - + Error: %1 of %2 files failed. Double-click failed items for detailed information! - + LameXP - Error - + At least one file has failed! - + All files completed successfully. - + LameXP - Done - + Playlist creation failed - + The playlist file could not be created: - + Warning: Computer will shutdown in %1 seconds... - - + + Cancel Shutdown diff --git a/etc/Translation/LameXP_PL.ts b/etc/Translation/LameXP_PL.ts index bfba6690..59fc2ce3 100644 --- a/etc/Translation/LameXP_PL.ts +++ b/etc/Translation/LameXP_PL.ts @@ -2623,124 +2623,124 @@ - + Abort Przerwij - + Close Powrót - + Show details for selected job Pokaż szczegóły wybranego zadania - + Browse Output File Location Wybierz lokalizację dla plików wyjściowych - + Encoding Files Kompresowanie plików - + Your files are being encoded, please be patient... Twoje pliki są właśnie kompresowane, prosze być cierpliwy... - + Encoding files, please wait... Kompresowanie plików, prosze czekać... - + Multi-threading enabled: Running %1 instances in parallel! Wielowątkowosć włączona: Równolegle wykonywanych jest %1 kodowań! - + Aborted! Waiting for running jobs to terminate... Przerwano! Czekanie na wyłączenie procesu... - + Encoding: %1 files of %2 completed so far, please wait... Kompresja: Prosze czekać, jak dotąd wykonano %1 z %2 plików... - + Creating the playlist file, please wait... Tworzenie pliku playlisty, prosze czekać... - + Process was aborted by the user after %1 file(s)! Proces został przerwany przez użytkownika po wykonaniu %1 plików! - + Process was aborted prematurely by the user! Proces został przedwcześnie zakończony przez użytkownika! - + LameXP - Aborted LameXP - Przerwano - + Process was aborted by the user. Proces został przerwany przez użytkownika. - + Error: %1 of %2 files failed. Double-click failed items for detailed information! Błąd: %1 z %2 plików nie zostało skompresowanych. Kliknij dwukrotnie na plik aby zobaczyć szczegóły! - + LameXP - Error LameXP - Błąd - + At least one file has failed! Przynajmniej jeden plik nie został skompresowany! - + All files completed successfully. Kompresja wszystkich plików zakończona powodzeniem. - + LameXP - Done LameXP - Zrobione - + Playlist creation failed Tworzenie playlisty zakończone niepowodzeniem - + The playlist file could not be created: Playlista nie mogła zostać utworzona: - + Warning: Computer will shutdown in %1 seconds... Ostrzeżenie: Komputer zostanie zamknięty za %1 sekund/y... - - + + Cancel Shutdown Anuluj wyłączenie komputera diff --git a/gui/ProcessingDialog.ui b/gui/ProcessingDialog.ui index dcc00921..c99d5d95 100644 --- a/gui/ProcessingDialog.ui +++ b/gui/ProcessingDialog.ui @@ -400,7 +400,7 @@ 0% - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + Qt::AlignCenter @@ -479,7 +479,7 @@ 0% - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + Qt::AlignCenter @@ -557,6 +557,9 @@ 0% + + Qt::AlignCenter + diff --git a/src/Config.h b/src/Config.h index bc62ca57..9d8ea51d 100644 --- a/src/Config.h +++ b/src/Config.h @@ -29,7 +29,7 @@ #define VER_LAMEXP_MINOR_HI 0 #define VER_LAMEXP_MINOR_LO 3 #define VER_LAMEXP_TYPE RC -#define VER_LAMEXP_PATCH 2 +#define VER_LAMEXP_PATCH 3 #define VER_LAMEXP_BUILD 760 /////////////////////////////////////////////////////////////////////////////// diff --git a/src/Dialog_Processing.cpp b/src/Dialog_Processing.cpp index e0fd6b2b..89f34e0f 100644 --- a/src/Dialog_Processing.cpp +++ b/src/Dialog_Processing.cpp @@ -87,6 +87,7 @@ } #define SET_FONT_BOLD(WIDGET,BOLD) { QFont _font = WIDGET->font(); _font.setBold(BOLD); WIDGET->setFont(_font); } +#define UPDATE_MIN_WIDTH(WIDGET) { if(WIDGET->width() > WIDGET->minimumWidth()) WIDGET->setMinimumWidth(WIDGET->width()); } //////////////////////////////////////////////////////////// // Constructor @@ -880,12 +881,14 @@ void ProcessingDialog::cpuUsageHasChanged(const double val) { this->label_cpu->setText(QString().sprintf(" %d%%", qRound(val * 100.0))); + UPDATE_MIN_WIDTH(label_cpu); } void ProcessingDialog::ramUsageHasChanged(const double val) { this->label_ram->setText(QString().sprintf(" %d%%", qRound(val * 100.0))); + UPDATE_MIN_WIDTH(label_ram); } void ProcessingDialog::diskUsageHasChanged(const quint64 val) @@ -901,6 +904,7 @@ void ProcessingDialog::diskUsageHasChanged(const quint64 val) } this->label_disk->setText(QString().sprintf(" %3.1f %s", space, postfixStr[postfix])); + UPDATE_MIN_WIDTH(label_disk); } bool ProcessingDialog::shutdownComputer(void)