diff --git a/etc/Translation/Blank.ts b/etc/Translation/Blank.ts index a8da804c..6a88abf7 100644 --- a/etc/Translation/Blank.ts +++ b/etc/Translation/Blank.ts @@ -1770,5 +1770,17 @@ This usually indicates your are currently using a pre-release version of LameXP. + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/etc/Translation/LameXP_DE.ts b/etc/Translation/LameXP_DE.ts index 5b9e28a3..44c99cae 100644 --- a/etc/Translation/LameXP_DE.ts +++ b/etc/Translation/LameXP_DE.ts @@ -1771,5 +1771,17 @@ Unknown Unbekannt + + Update is being downloaded, please be patient... + Update wird heruntergeladen, bitte gedulden Sie sich... + + + Update ready to install. Applicaion will quit... + Update ist bereit zur Installtion. Programm wird beendet... + + + Update failed. Please try again or download manually! + Update fehlgeschlagen. Bitte versuchen Sie es noch einmal! + diff --git a/etc/Translation/LameXP_ES.ts b/etc/Translation/LameXP_ES.ts index 9bcf241a..480eab53 100644 --- a/etc/Translation/LameXP_ES.ts +++ b/etc/Translation/LameXP_ES.ts @@ -1770,5 +1770,17 @@ This usually indicates your are currently using a pre-release version of LameXP. Esto generalmente indica que está usando una versión pre-lanzamiento de LameXP. + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/etc/Translation/LameXP_FR.ts b/etc/Translation/LameXP_FR.ts index f8dd4cdc..a4977c40 100644 --- a/etc/Translation/LameXP_FR.ts +++ b/etc/Translation/LameXP_FR.ts @@ -1780,5 +1780,17 @@ Ouvrir le dossier récursivement... This usually indicates your are currently using a pre-release version of LameXP. Cela indique généralement que vous utilisez actuellement une pré-version de LameXP. + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/etc/Translation/LameXP_IT.ts b/etc/Translation/LameXP_IT.ts index fdfc2761..0e0fffd9 100644 --- a/etc/Translation/LameXP_IT.ts +++ b/etc/Translation/LameXP_IT.ts @@ -1771,5 +1771,17 @@ Unknown Sconosciuto + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/etc/Translation/LameXP_KR.ts b/etc/Translation/LameXP_KR.ts index 989fa667..570e9299 100644 --- a/etc/Translation/LameXP_KR.ts +++ b/etc/Translation/LameXP_KR.ts @@ -1770,5 +1770,17 @@ This usually indicates your are currently using a pre-release version of LameXP. 이런 경우는 LameXP의 시험판 사용을 의미합니다. + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/etc/Translation/LameXP_RU.ts b/etc/Translation/LameXP_RU.ts index af6fdf8c..0b82d8c2 100644 --- a/etc/Translation/LameXP_RU.ts +++ b/etc/Translation/LameXP_RU.ts @@ -1773,5 +1773,17 @@ This usually indicates your are currently using a pre-release version of LameXP. Это обычно показывает, что вы используете бета версию LameXP. + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/etc/Translation/LameXP_UK.ts b/etc/Translation/LameXP_UK.ts index 994ffc2c..754280ed 100644 --- a/etc/Translation/LameXP_UK.ts +++ b/etc/Translation/LameXP_UK.ts @@ -1770,5 +1770,17 @@ This usually indicates your are currently using a pre-release version of LameXP. + + Update is being downloaded, please be patient... + + + + Update ready to install. Applicaion will quit... + + + + Update failed. Please try again or download manually! + + diff --git a/res/localization/LameXP_DE.qm b/res/localization/LameXP_DE.qm index 0f35dc45..61ff5839 100644 Binary files a/res/localization/LameXP_DE.qm and b/res/localization/LameXP_DE.qm differ diff --git a/src/Config.h b/src/Config.h index edf69c10..c01f6a4a 100644 --- a/src/Config.h +++ b/src/Config.h @@ -30,7 +30,7 @@ #define VER_LAMEXP_MINOR_LO 2 #define VER_LAMEXP_TYPE Alpha #define VER_LAMEXP_PATCH 8 -#define VER_LAMEXP_BUILD 470 +#define VER_LAMEXP_BUILD 471 /////////////////////////////////////////////////////////////////////////////// // Tools versions diff --git a/src/Dialog_Update.cpp b/src/Dialog_Update.cpp index f0b2f7bb..4acc2646 100644 --- a/src/Dialog_Update.cpp +++ b/src/Dialog_Update.cpp @@ -661,7 +661,7 @@ void UpdateDialog::applyUpdate(void) if(m_updateInfo) { - statusLabel->setText("Update is being downloaded, please be patient..."); + statusLabel->setText(tr("Update is being downloaded, please be patient...")); frameAnimation->show(); if(hintLabel->isVisible()) hintLabel->hide(); if(hintIcon->isVisible()) hintIcon->hide(); @@ -700,7 +700,7 @@ void UpdateDialog::applyUpdate(void) if(process.exitCode() == 0) { - statusLabel->setText("Update ready to install. Applicaion will quit..."); + statusLabel->setText(tr("Update ready to install. Applicaion will quit...")); m_updateReadyToInstall = true; WinSevenTaskbar::setTaskbarState(this->parentWidget(), WinSevenTaskbar::WinSevenTaskbarNoState); WinSevenTaskbar::setOverlayIcon(this->parentWidget(), NULL); @@ -708,7 +708,7 @@ void UpdateDialog::applyUpdate(void) } else { - statusLabel->setText("Update failed. Please try again or download manually!"); + statusLabel->setText(tr("Update failed. Please try again or download manually!")); WinSevenTaskbar::setTaskbarState(this->parentWidget(), WinSevenTaskbar::WinSevenTaskbarErrorState); WinSevenTaskbar::setOverlayIcon(this->parentWidget(), &QIcon(":/icons/exclamation.png")); WinSevenTaskbar::setTaskbarProgress(this->parentWidget(), 100, 100);