From 61c0ab4534ae569c7ea277eabb90b0ac78fe1dc9 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 29 Jun 2017 06:18:52 -0400 Subject: [PATCH 01/23] Clang: fix the right conversions (thanks KKofler) --- src/libcalamaresui/utils/CalamaresUtilsGui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcalamaresui/utils/CalamaresUtilsGui.cpp b/src/libcalamaresui/utils/CalamaresUtilsGui.cpp index 131c4f3cb..3b04897ae 100644 --- a/src/libcalamaresui/utils/CalamaresUtilsGui.cpp +++ b/src/libcalamaresui/utils/CalamaresUtilsGui.cpp @@ -157,7 +157,7 @@ createRoundedImage( const QPixmap& pixmap, const QSize& size, float frameWidthPc painter.setBrush( brush ); painter.setPen( pen ); - painter.drawRoundedRect( outerRect, frameWidthPct * 100.0f, frameWidthPct * 100.0f, Qt::RelativeSize ); + painter.drawRoundedRect( outerRect, qreal(frameWidthPct) * 100.0, qreal(frameWidthPct) * 100.0, Qt::RelativeSize ); /* painter.setBrush( Qt::transparent ); painter.setPen( Qt::white ); @@ -223,7 +223,7 @@ setDefaultFontSize( int points ) QSize defaultIconSize() { - const int w = defaultFontHeight() * 1.6f; + const int w = int(defaultFontHeight() * 1.6); return QSize( w, w ); } From 611cb1f94c59c14cad9aca5038cc13dd0143da85 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 29 Jun 2017 06:25:49 -0400 Subject: [PATCH 02/23] i18n: QT_TRANSLATIONS_DIR hasn't been set since Qt 5.3. None of the Qt translations are found, nor shipped along with the Calamares translations; it depends on the translations of Qt on the live system. The mechanism was broken, anyway, by the split into qt_.qm and qtbase_.qm, and the introduction for QPT for the translation of standard button texts. Just drop the special code looking for Qt translations and the rcc hacks that entails. FIXES #336 --- lang/translations.cmake | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lang/translations.cmake b/lang/translations.cmake index dddad3149..fc18f4f11 100644 --- a/lang/translations.cmake +++ b/lang/translations.cmake @@ -7,12 +7,6 @@ macro(add_calamares_translations language) set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) foreach( lang ${CALAMARES_LANGUAGES} ) set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}calamares_${lang}.qm\n" ) - if( NOT lang STREQUAL "en" AND EXISTS ${QT_TRANSLATIONS_DIR}/qt_${lang}.qm ) - file( COPY ${QT_TRANSLATIONS_DIR}/qt_${lang}.qm DESTINATION ${CMAKE_CURRENT_BINARY_DIR} ) - set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}qt_${lang}.qm\n" ) - endif() - - # build explicitly enabled languages list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/calamares_${lang}.ts" ) endforeach() From 75b5303b49f3fb2eb9f2de408875ca8126b5ead1 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 29 Jun 2017 06:29:29 -0400 Subject: [PATCH 03/23] i18n: stop trying to install Qt translations --- src/libcalamares/utils/CalamaresUtils.cpp | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/libcalamares/utils/CalamaresUtils.cpp b/src/libcalamares/utils/CalamaresUtils.cpp index 9df222217..db748ec94 100644 --- a/src/libcalamares/utils/CalamaresUtils.cpp +++ b/src/libcalamares/utils/CalamaresUtils.cpp @@ -47,7 +47,6 @@ static bool s_isAppDataDirOverridden = false; static QTranslator* s_brandingTranslator = nullptr; static QTranslator* s_translator = nullptr; -static QTranslator* s_qtTranslator = nullptr; static QString s_translatorLocaleName; @@ -207,25 +206,6 @@ installTranslator( const QLocale& locale, QCoreApplication::installTranslator( translator ); s_translator = translator; - // Qt translations - translator = new QTranslator( parent ); - if ( translator->load( QString( ":/lang/qt_" ) + localeName ) ) - { - qDebug() << "Translation: Qt: Using system locale:" << localeName; - } - else - { - qDebug() << "Translation: Qt: Using default locale, system locale one not found:" << localeName; - } - - if ( s_qtTranslator ) - { - QCoreApplication::removeTranslator( s_qtTranslator ); - delete s_qtTranslator; - } - QCoreApplication::installTranslator( translator ); - s_qtTranslator = translator; - s_translatorLocaleName = localeName; } From 1f8af77738a9bf96c81b41ab0f291e1b220328c9 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 30 Jun 2017 01:23:24 +0000 Subject: [PATCH 04/23] [core] Automatic merge of Transifex translations --- lang/calamares_es.ts | 8 ++++---- lang/calamares_fr.ts | 10 +++++----- lang/calamares_pl.ts | 6 +++--- lang/calamares_sk.ts | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index c45c3bf7b..025fbf06b 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -241,7 +241,7 @@ Salida: Cancel installation without changing the system. - + Cancelar instalación sin cambiar el sistema. @@ -278,12 +278,12 @@ Saldrá del instalador y se perderán todos los cambios. &Done - + &Hecho The installation is complete. Close the installer. - + La instalación se ha completado. Cierre el instalador. @@ -1814,7 +1814,7 @@ Saldrá del instalador y se perderán todos los cambios. The screen is too small to display the installer. - + La pantalla es demasiado pequeña para mostrar el instalador. diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index c18143dc4..bf86fe6bb 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -240,7 +240,7 @@ Sortie : Cancel installation without changing the system. - + Annuler l'installation sans modifier votre système. @@ -277,12 +277,12 @@ L'installateur se fermera et les changements seront perdus. &Done - + &Terminé The installation is complete. Close the installer. - + L'installation est terminée. Fermer l'installateur. @@ -1813,7 +1813,7 @@ L'installateur se fermera et les changements seront perdus. The screen is too small to display the installer. - + L'écran est trop petit pour afficher l'installateur. @@ -2226,7 +2226,7 @@ L'installateur se fermera et les changements seront perdus. <h1>Welcome to the Calamares installer for %1.</h1> - + Bien dans l'installateur Calamares pour %1. diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 21473966b..2c8d80249 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -240,7 +240,7 @@ Wyjście: Cancel installation without changing the system. - + Anuluj instalację bez dokonywania zmian w systemie. @@ -277,12 +277,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. &Done - + &Ukończono The installation is complete. Close the installer. - + Instalacja ukończona pomyślnie. Możesz zamknąć instalator. diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index f5375bec0..8d508f20b 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -240,7 +240,7 @@ Výstup: Cancel installation without changing the system. - + Zruší inštaláciu bez zmeny systému. @@ -277,12 +277,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. &Done - + _Dokončiť The installation is complete. Close the installer. - + Inštalácia je dokončená. Zatvorí inštalátor. From 418974c0ea71bb1840965473262bee57cef4cfc3 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 30 Jun 2017 01:23:26 +0000 Subject: [PATCH 05/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 41769a62a6dd82895e52bff5aca2cba8b4ffd546..091b4dbb8043f69d5f28a4a0eb10ee7684bfd0ec 100644 GIT binary patch delta 18 ZcmeBR>0p^q$!@7&XkcY*xv`;x5dbkE1w#M; delta 18 ZcmeBR>0p^q$!?)wXli9-u(6?o5dbj@1w8-& diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index d26fb4c46..07aef85df 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index cfe956f93..50e230eae 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index ddbcd1dce70802bddc0560eb320a25aa9f6cfd2b..7eb3901875c80679f52f02e42dabd5f4b39c1817 100644 GIT binary patch delta 18 ZcmdnNyn}f{CA+19p@EgL<;DgJMgTU!1yKM1 delta 18 ZcmdnNyn}f{CA)=!p{bRT!Nvv)MgTUe1xo+` diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 6d817500f..26deb964c 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index c3beddc8e..830d075a5 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 6fd307e7e..746c15dd8 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index d43bd44e6..4f16bdef1 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 49e36f68e..c9cca382e 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 5e3f02516..562aaa4ae 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 6b79064cb22ab95f139896bd35148892e7b2260b..5f1dcaee78897fe771bcbf560c9c9cfc4e81166d 100644 GIT binary patch delta 18 ZcmdnOyoGr}CA+19p@EgL<;DgRMgTT31w{Y= delta 18 ZcmdnOyoGr}CA)=!p{bRT!Nvv?MgTS&1wQ}) diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index a98d9a6ae..d31f87a23 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index d31f7e7656124359402a7fcbb6dde1f605bc9b69..96ffe9c299bb831275557149d2cf1368d50f1ab0 100644 GIT binary patch delta 18 ZcmX@he3p4aCA+19p@EgL<;DhIMgTdr1&{y$ delta 18 ZcmX@he3p4aCA)=!p{bRT!Nvw(MgTdV1&ROw diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index 93979309f..6e651362d 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 6ad5d082f..d8d32290e 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 1e0343d15ae4db14e8c4f754a299e02bd7adcb2b..2c77f31de5c9926043a5aceefb8a73a3e65891af 100644 GIT binary patch delta 18 ZcmX@Ye1v&ICA+19p@EgL<;DgVMgTZ*1$6)b delta 18 ZcmX@Ye1v&ICA)=!p{bRT!Nvv`MgTZl1#bWV diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index 908056a38..de502d9f1 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index baee492cae38abd6a1ddc9fb98c65b272143183d..1a47f2a1f01cb30c9e42659114cd4ce787f5b2d2 100644 GIT binary patch delta 18 ZcmX@ge3W@YCA+19p@EgL<;DhAMgTaK1$Y1e delta 18 ZcmX@ge3W@YCA)=!p{bRT!NvwxMgTZ}1#$oY diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index b9de152da..8375b182d 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index fa30693d24fdfa61eb0bea32dd061d95068a9361..e37cf6dbd676c252f14a539bb9f1f88174f86aa6 100644 GIT binary patch delta 18 ZcmX@be2RHOCA+19p@EgL<;DgtMgTcU1&06t delta 18 ZcmX@be2RHOCA)=!p{bRT!NvwJMgTc81%Utn diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index 798818760..e56213a3c 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index d807f92f6ee27c50c43ce5b5cbce1d3f19824e1e..87f4e83baf53380459a92b1bdb75000a3708ef3d 100644 GIT binary patch delta 18 Zcmdnayq$SMCA+19p@EgL<;DhcMgTUQ1x^3} delta 18 Zcmdnayq$SMCA)=!p{bRT!Nvx2MgTU41xNq@ diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index 45a791f31..22fa8662c 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index f3111bee103efaa91d24f39ec118d1ee2e68bc8b..3536223e9eb611467c523f3798267a643e807f3b 100644 GIT binary patch delta 18 ZcmdnWyp?%ECA+19p@EgL<;Dh6MgTTd1xNq@ delta 18 ZcmdnWyp?%ECA)=!p{bRT!NvwtMgTTH1wsG- diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 375c82a9b..f6c897743 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index bc4ead8220ecac42b6f040fe4654993bd1640bd5..334a176e68c155f4e3cf36a3b1f3cddddf7c4c34 100644 GIT binary patch delta 18 ZcmZ3_yq, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index baffdf87a..66a775eb9 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 63b862a0a87b12dc000b47967c31a0017bbd627a..f5042e4da661f9ebc77c5f920da65d3d2615249a 100644 GIT binary patch delta 20 bcmZo*Z(!e0!N_i@U}#`vY`M9fk&y`iI5Y&+ delta 20 bcmZo*Z(!e0!N_i*U}$P(WU#rOk&y`iI2Z)a diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index a2ef6bb34..8c61e90b2 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 64633d0b5..f93b99de7 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index 6d8cc51af..21c7e0b9d 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index a00975495..87a3d4835 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index 0eaee98804c9e624e98da97e02aaa5897a316666..ebb5cb9d1e6a5938de3a69247198f4105c4d7310 100644 GIT binary patch delta 18 ZcmZ3-ypDN7CA+19p@EgL<;Dg*MgTQg1v3Bu delta 18 ZcmZ3-ypDN7CA)=!p{bRT!NvwXMgTQK1uXyo diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index c420a7473..df2acdb0f 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 58c3ac7fa9565673d28523a59afdd8e070635313..5e4db78a06416528f9d658538db22a0b396dbfbe 100644 GIT binary patch delta 18 ZcmZ3@yqbAJCA+19p@EgL<;DhWMgTPJ1u6gl delta 18 ZcmZ3@yqbAJCA)=!p{bRT!Nvw{MgTO|1tb6f diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 1dad9343a..c40afb9ab 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index eef0d7ca7..4c599f05c 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index d2de7e7dd0b4a4b4eda1c83ec7df90b2784f7260..a458360c5684101e76502cbf63d8fb69f57f2830 100644 GIT binary patch delta 18 ZcmdnSyp4H6CA+19p@EgL<;DgxMgTT>1xo+` delta 18 ZcmdnSyp4H6CA)=!p{bRT!NvwNMgTTr1w{Y= diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 61d6c1189..981306bf3 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 13f2e0987e0a9ea7962eb7fad42ea282370de632..b9a7598c56824b7a0a827a7264c7d42d03a61e5d 100644 GIT binary patch delta 18 ZcmX@We1LgECA+19p@EgL<;DgFMgTYA1!({P delta 18 ZcmX@We1LgECA)=!p{bRT!Nvv$MgTX<1!DjJ diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index b535a76f7..b9dab095a 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 49f2892ccdbd058286907bfcd653ee8f7d2b6dd7..0926938128cffb8b0eea6d76b44ec56740c9f6a0 100644 GIT binary patch delta 20 bcmeBS?_u9i!N_i@U}#`vY`M9fk(UVoIur!? delta 20 bcmeBS?_u9i!N_i*U}$P(WU#rOk(UVoIrs$g diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index ea44cd078..17464428d 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index 449405604..d69f01051 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 2f412b571bcde94dc24200f8106b0783823d3f81..c730ea43100116692430057a8f7878c786a76ad3 100644 GIT binary patch delta 18 Zcmcb{a*bs|CA+19p@EgL<;I3, 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 1fc7c11c2..7fe66a173 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index 79066c769c4406725de2b83dd2789985a402f415..43de8eeb458a82416d70d1a0b1220c0a9707b58a 100644 GIT binary patch delta 20 bcmdnRzKeZB1tYtqf}w$xvE}A^Mr$SjK|}?E delta 20 bcmdnRzKeZB1tYtKf}yFEk-_GAMr$SjK_~@% diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 58cf564bd..ad5b26106 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 2fabb3d25..3af8030a6 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 6264caa53..384393b4c 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 334ba6755477b0615d076e6fae0c063538628372..b24d18580de81a2c59c0d82d4f675ec678bca58b 100644 GIT binary patch delta 18 ZcmaFE{Dyf#CA+19p@EgL<;I2_MgTq$1?>O; delta 18 ZcmaFE{Dyf#CA)=!p{bRT!N!IhMgTqg1?K<& diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index b650a9fcf..57dbf0816 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index c580a5235..06aa6609a 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index 12704b90cedae8c3cfcc4d0d7436b32e5cfceb19..cb8d41334f90977c85a7c13899d3c35e5b1e0aa0 100644 GIT binary patch delta 18 ZcmbQjGKFPACA+19p@EgL<;I37i~usx1!n*N delta 18 ZcmbQjGKFPACA)=!p{bRT!N!Iui~usb1z`XH diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index e6f294c3d..ea97a1add 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 5a19e07a465c85ace6dc43e3ace5d25abe8d98ba..758cadf6ab222efee111cbb582c7564cbad25989 100644 GIT binary patch delta 18 ZcmdnSyp4H6CA+19p@EgL<;DgxMgTT>1xo+` delta 18 ZcmdnSyp4H6CA)=!p{bRT!NvwNMgTTr1w{Y= diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 4e13eb82c..479959f06 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 1df44881cbe5aac66a4f40f2f877206e9b6a160d..eff4b6cdfb088c0a34117a1739e1173b83c0bb82 100644 GIT binary patch delta 18 ZcmZ3(yoPx~CA+19p@EgL<;DgbMgTPt1uXyo delta 18 ZcmZ3(yoPx~CA)=!p{bRT!Nvw1MgTPX1t$Oi diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index b0c760cb5..c1b6fa572 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index 224ddb275..29f945e99 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 2428be7ceed76d0fd210b7d40f5d8a4b8f6137a1..f531971a829917525d39522f4ee64086a52f29db 100644 GIT binary patch delta 18 ZcmZo-X=0gB$!@7&XkcY*xv`;%5dbhr1u*~s delta 18 ZcmZo-X=0gB$!?)wXli9-u(6?u5dbhV1uFmm diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index 243a42bc9..f4f277e48 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index feb59b5948c16348d37ae87e72c634ec93611ab2..1282a6de8be01f00bdeeec92f8cde3060f61dfea 100644 GIT binary patch delta 18 ZcmdnYyqS4ICA+19p@EgL<;DhMMgTSq1wsG- delta 18 ZcmdnYyqS4ICA)=!p{bRT!Nvw-MgTSU1v~%% diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index 7abbf6e24..394c4686e 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 0b8f5fab1b13392595995049cce08e9d2a4aa3a2..6e38d0b5762abc7d2f0dd6ed8b4d37d4a2e07656 100644 GIT binary patch delta 18 ZcmZ3>yq0-FCA+19p@EgL<;DhGMgTQ61uy^r delta 18 ZcmZ3>yq0-FCA)=!p{bRT!Nvw%MgTP*1u6gl diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index 03521228d..9dd5bbb90 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 2f46741ec..8fc21bcba 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index d137a5c5a..544df4e73 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-28 15:20+0000\n" +"POT-Creation-Date: 2017-06-29 10:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From 6b7a03ea97d8aed0cf678d35b29d2d6717b08547 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Fri, 30 Jun 2017 03:26:52 +0000 Subject: [PATCH 06/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 091b4dbb8043f69d5f28a4a0eb10ee7684bfd0ec..f1af7e3a6b61a30dc272e5c888f91c24e5442c29 100644 GIT binary patch delta 19 acmeBR>0p^q!C`EmU|?irWV*4TgAo8VHw9?` delta 19 acmeBR>0p^q!C_>nU}#`vY`L+agAo8Vp#^mS diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 07aef85df..4b52d99a1 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 50e230eae..968b119aa 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 7eb3901875c80679f52f02e42dabd5f4b39c1817..cb983d607e1c6bd21d904c2ea5b72e964f9eafc5 100644 GIT binary patch delta 19 acmdnNyn}f{1&6VLf`O5hk?F<;3q}AtH3fG7 delta 19 acmdnNyn}f{1&5KPf}w$xvE{}F3q}Atp9O;e diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 26deb964c..13476e2ba 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 830d075a5..15949ddbe 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 746c15dd8..541baad10 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index 4f16bdef1..1d213816a 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index c9cca382e..906d49728 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 562aaa4ae..71910bdaf 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 5f1dcaee78897fe771bcbf560c9c9cfc4e81166d..100a2c05d2b98295c6f7a78a3001823c3cdee83d 100644 GIT binary patch delta 19 acmdnOyoGr}1&6VLf`O5hk?F<;6Gi|!ods(E delta 19 acmdnOyoGr}1&5KPf}w$xvE{}F6Gi|#2L*Qk diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index d31f87a23..4f94b22d4 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 96ffe9c299bb831275557149d2cf1368d50f1ab0..3873139042ddfe9324e0cdd2eb88f85a64e925ee 100644 GIT binary patch delta 19 acmX@he3p4a1&6VLf`O5hk?F<;Uq%2vQw6pF delta 19 acmX@he3p4a1&5KPf}w$xvE{}FUq%2vy#>Mm diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index 6e651362d..be96e07ec 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index d8d32290e..9ccd3774f 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 2c77f31de5c9926043a5aceefb8a73a3e65891af..87a798e49988df019b088e6819ec8f7f02d153e3 100644 GIT binary patch delta 19 acmX@Ye1v&I1&6VLf`O5hk?F<;7e)X){RNu< delta 19 acmX@Ye1v&I1&5KPf}w$xvE{}F7e)X*X9cGK diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index de502d9f1..ba54c4865 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index 1a47f2a1f01cb30c9e42659114cd4ce787f5b2d2..9cde914a0774dcd9b8251fd8aeeab57944a59a75 100644 GIT binary patch delta 19 acmX@ge3W@Y1&6VLf`O5hk?F<;S4IFmBL$uS delta 19 acmX@ge3W@Y1&5KPf}w$xvE{}FS4IFmjRmRz diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index 8375b182d..bb061c631 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index e37cf6dbd676c252f14a539bb9f1f88174f86aa6..8f02057f3667461517ac50db4483708f11dbfa01 100644 GIT binary patch delta 19 acmX@be2RHO1&6VLf`O5hk?F<;FGc`8;RUS# delta 19 acmX@be2RHO1&5KPf}w$xvE{}FFGc`9O9i, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index 66a775eb9..d1f16a6f0 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index f5042e4da661f9ebc77c5f920da65d3d2615249a..c5584eca6505f9e91902ee587e0f6d38a36df5fb 100644 GIT binary patch delta 21 ccmZo*Z(!e0&d6bGpkQERWn{X!o{^CW06c{R`v3p{ delta 21 ccmZo*Z(!e0&d6b8sbFYeWo)^*o{^CW06hBz2LJ#7 diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 8c61e90b2..8354461a9 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index f93b99de7..13bdcde8b 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index 21c7e0b9d..fbe8af067 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index 87a3d4835..6d9e69770 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index ebb5cb9d1e6a5938de3a69247198f4105c4d7310..e0dc93b3591ece17565a75112a0a1636d375e78d 100644 GIT binary patch delta 19 acmZ3-ypDN71&6VLf`O5hk?F<;Jw^aIxdmAO delta 19 acmZ3-ypDN71&5KPf}w$xvE{}FJw^aJBL!su diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index df2acdb0f..e7a505189 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 5e4db78a06416528f9d658538db22a0b396dbfbe..994a515a55822249236a315c59615af53179ef61 100644 GIT binary patch delta 19 acmZ3@yqbAJ1&6VLf`O5hk?F<;ZAJh&M+Hy- delta 19 acmZ3@yqbAJ1&5KPf}w$xvE{}FZAJh&u?1WJ diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index c40afb9ab..56904f24e 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index 4c599f05c..fbcdf4aeb 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index a458360c5684101e76502cbf63d8fb69f57f2830..c6a73ad996d79ade8a9e19a2aa7b034d48cfc20b 100644 GIT binary patch delta 19 acmdnSyp4H61&6VLf`O5hk?F<;Ge!V9=>>5B delta 19 acmdnSyp4H61&5KPf}w$xvE{}FGe!VAQw4nh diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 981306bf3..faaefebb3 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index b9a7598c56824b7a0a827a7264c7d42d03a61e5d..b79ec5a13b62872a0aee1374a7bcb62e0c5debed 100644 GIT binary patch delta 19 acmX@We1LgE1&6VLf`O5hk?F<;2SxxqWd)A_ delta 19 acmX@We1LgE1&5KPf}w$xvE{}F2Sxxq&jp(R diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index b9dab095a..8f2f92d22 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 0926938128cffb8b0eea6d76b44ec56740c9f6a0..5b1fef4a7b050f6b80bd1e8997836f073d88d8f7 100644 GIT binary patch delta 21 ccmeBS?_u9i&d6bGpkQERWn{X!o{^Uc06u*M9{>OV delta 21 ccmeBS?_u9i&d6b8sbFYeWo)^*o{^Uc06y~tD*ylh diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index 17464428d..5f02b4fd4 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index d69f01051..b60ea1056 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index c730ea43100116692430057a8f7878c786a76ad3..581949f00368ebb44402e8c602c26992afedb286 100644 GIT binary patch delta 19 acmcb{a*bs|1&6VLf`O5hk?F>UYm5Lu%LY>b delta 19 acmcb{a*bs|1&5KPf}w$xvE{~wYm5LvH3nY* diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index f3eb70480..408f6fbf1 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 0a956e649..4d51a0bd8 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 7fe66a173..46dbd9508 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index 43de8eeb458a82416d70d1a0b1220c0a9707b58a..bfdba3e95c2fd061b741bb9a402eaa8a3cd28730 100644 GIT binary patch delta 21 ccmdnRzKeZBIU|R$fr5dNm67S@dPZv|07eM~sQ>@~ delta 21 ccmdnRzKeZBIU|RWrGlY>m9gdKdPZv|07icWwEzGB diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index ad5b26106..e8fdb8466 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 3af8030a6..a49c11e95 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 384393b4c..6f29b74c4 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index b24d18580de81a2c59c0d82d4f675ec678bca58b..13074df5c5491bc1e60d7880e9742fde4c696f28 100644 GIT binary patch delta 19 acmaFE{Dyf#1&6VLf`O5hk?F>U97X^_?FJJ7 delta 19 acmaFE{Dyf#1&5KPf}w$xvE{~w97X^`R|X#d diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index 57dbf0816..5cbdef58b 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index 06aa6609a..a74a1562e 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index cb8d41334f90977c85a7c13899d3c35e5b1e0aa0..10adac609a553a9e3e02857aed74a758266b9c6b 100644 GIT binary patch delta 19 acmbQjGKFPA1&6VLf`O5hk?F>UDU1L%{{@Wz delta 19 acmbQjGKFPA1&5KPf}w$xvE{~wDU1L&X$6@8 diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index ea97a1add..afe259139 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 758cadf6ab222efee111cbb582c7564cbad25989..8fa4e456de7303e005faf9b8e6c3386fec183d5f 100644 GIT binary patch delta 19 acmdnSyp4H61&6VLf`O5hk?F<;Ge!V9=>>5B delta 19 acmdnSyp4H61&5KPf}w$xvE{}FGe!VAQw4nh diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 479959f06..22a46c3a0 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index eff4b6cdfb088c0a34117a1739e1173b83c0bb82..06b9610cc958d67b42a218fabc0a6739ccf05857 100644 GIT binary patch delta 19 acmZ3(yoPx~1&6VLf`O5hk?F<;9Yz2-Z3R;R delta 19 acmZ3(yoPx~1&5KPf}w$xvE{}F9Yz2-*9Bhy diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index c1b6fa572..d43f172f1 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index 29f945e99..8707592ce 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index f531971a829917525d39522f4ee64086a52f29db..57ff0c7afadc730176bb520d1a16deea92a36782 100644 GIT binary patch delta 19 acmZo-X=0gB!C`EmU|?irWV*4Ti4g!aQw3K5 delta 19 acmZo-X=0gB!C_>nU}#`vY`L+ai4g!ay#-?c diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index f4f277e48..164b0bd96 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 1282a6de8be01f00bdeeec92f8cde3060f61dfea..5dcf699fb45235311dbd8cd4cbe8800797c113df 100644 GIT binary patch delta 19 acmdnYyqS4I1&6VLf`O5hk?F<;V@3cvcLitw delta 19 acmdnYyqS4I1&5KPf}w$xvE{}FV@3cv;RSR6 diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index 394c4686e..5f5c94d30 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 6e38d0b5762abc7d2f0dd6ed8b4d37d4a2e07656..db1111b295933275eb99447dca1651b50ac2448c 100644 GIT binary patch delta 19 acmZ3>yq0-F1&6VLf`O5hk?F<;T}A*olLb}) delta 19 acmZ3>yq0-F1&5KPf}w$xvE{}FT}A*o{RLtG diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index 9dd5bbb90..2471dacac 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 8fc21bcba..b17216379 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 544df4e73..6a5dfe25d 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-29 10:39+0000\n" +"POT-Creation-Date: 2017-06-30 02:25+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From b2fe83d69885f3ab8f6982fa9640f2688cbfe1e0 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sat, 1 Jul 2017 01:01:55 +0000 Subject: [PATCH 07/23] [core] Automatic merge of Transifex translations --- lang/calamares_hr.ts | 6 +++--- lang/calamares_zh_CN.ts | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 88f105e41..1d80d1298 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -240,7 +240,7 @@ Izlaz: Cancel installation without changing the system. - + Odustanite od instalacije bez promjena na sustavu. @@ -277,12 +277,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. &Done - + &Gotovo The installation is complete. Close the installer. - + Instalacija je završena. Zatvorite instalacijski program. diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index ffcdabd79..8cabb9f04 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -241,7 +241,7 @@ Output: Cancel installation without changing the system. - + 取消安装,并不做任何更改。 @@ -278,12 +278,12 @@ The installer will quit and all changes will be lost. &Done - + &完成 The installation is complete. Close the installer. - + 安装过程已完毕。请关闭安装器。 @@ -1815,7 +1815,7 @@ The installer will quit and all changes will be lost. The screen is too small to display the installer. - + 屏幕不能完整显示安装器。 @@ -2223,12 +2223,12 @@ The installer will quit and all changes will be lost. <h1>Welcome to the %1 installer.</h1> - <h1>欢迎来到 %1 安装程序。</h1> + <h1>欢迎使用 %1 安装程序。</h1> <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>欢迎使用 Calamares 安装程序 - %1。</h1> From b3fbfec997ee24dd756433b3b088e85e68a793f3 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sat, 1 Jul 2017 01:01:58 +0000 Subject: [PATCH 08/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index f1af7e3a6b61a30dc272e5c888f91c24e5442c29..df41d263332f855001a4a0b1c5cc918802c5c258 100644 GIT binary patch delta 15 WcmeBR>0p^q!(wJ-V6?HJgAo8FI0Ur- delta 15 WcmeBR>0p^q!(wD*WV*4TgAo8FGX%B( diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 4b52d99a1..60e81eeb4 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 968b119aa..f986a8326 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index cb983d607e1c6bd21d904c2ea5b72e964f9eafc5..9f558c728a10233bb8b9262bf0523539de95dd1b 100644 GIT binary patch delta 15 WcmdnNyn}f{4U3tTfzieW3q}Abz68Sn delta 15 WcmdnNyn}f{4U3VLk?F<;3q}Abxdg-j diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 13476e2ba..eecfce77b 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 15949ddbe..89ccd8cbe 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 541baad10..538ea0877 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index 1d213816a..61860e983 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 906d49728..fc6748db5 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 71910bdaf..de53369ed 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 100a2c05d2b98295c6f7a78a3001823c3cdee83d..1adef7743ee7a8fdc70c0bcd13ad0202c8834992 100644 GIT binary patch delta 15 WcmdnOyoGr}4U3tTfzieW6Gi|jMg+G2 delta 15 WcmdnOyoGr}4U3VLk?F<;6Gi|jK?Jw} diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 4f94b22d4..5a18f2deb 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 3873139042ddfe9324e0cdd2eb88f85a64e925ee..307c918eccb95d1fedfe0cb74623e3b060d5e9b5 100644 GIT binary patch delta 15 WcmX@he3p4a4U3tTfzieWUq%2dGz9_x delta 15 WcmX@he3p4a4U3VLk?F<;Uq%2dF9ibt diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index be96e07ec..a863cf68c 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 9ccd3774f..487a48fed 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 87a798e49988df019b088e6819ec8f7f02d153e3..dfebc2531a0ec9aeaba3eae15dd50f61ebe245b7 100644 GIT binary patch delta 15 WcmX@Ye1v&I4U3tTfzieW7e)XpCIsgI delta 15 WcmX@Ye1v&I4U3VLk?F<;7e)XpAq40E diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index ba54c4865..5e5b696db 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index 9cde914a0774dcd9b8251fd8aeeab57944a59a75..2537a6a617d813f8bc28ef5fb9bffc9585046f8c 100644 GIT binary patch delta 15 WcmX@ge3W@Y4U3tTfzieWS4IFUL+64Ik delta 15 WcmX@be2RHO4U3VLk?F<;FGc_>)dczg diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index af747ec77..aece55adf 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index a96a9a3083a46bc5f7bfde55284654118bf33890..305a06a48309d0587593bed4f232b9655ea519e3 100644 GIT binary patch delta 15 Wcmdnayq$SM4U3tTfzieWb4CCupaj4G delta 15 Wcmdnayq$SM4U3VLk?F<;b4CCun*_lC diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index 71dd98c80..fdd3d8f26 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index ffbd0d824842088edf6172fb7c8532d27af5f72c..2e1f612bc458f2d4e723248c634c0445ab05de2d 100644 GIT binary patch delta 15 WcmdnWyp?%E4U3tTfzieWQ$_$OWCXeZ delta 15 WcmdnWyp?%E4U3VLk?F<;Q$_$OUj(}V diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index c5f443b40..3a5761b39 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index cae556d0dd44ad0cef011fa0663cfa215b0e206f..6d02a76968533156baa22652347af876cff527ea 100644 GIT binary patch delta 15 WcmZ3_yq, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index d1f16a6f0..33570e619 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index c5584eca6505f9e91902ee587e0f6d38a36df5fb..a86f96d9e44a54acdbbc28a6ea60bfd9b175f89e 100644 GIT binary patch delta 17 YcmZo*Z(!e0&B$VAWni?qo{^CW04sh3M*si- delta 17 YcmZo*Z(!e0&B$V8Wn{X!o{^CW04sU~NB{r; diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 8354461a9..dbb7bd45d 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 13bdcde8b..be59ec69a 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index fbe8af067..ae2082627 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index 6d9e69770..b9438d7a4 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index e0dc93b3591ece17565a75112a0a1636d375e78d..db8e9f2589ab716dc21794685b69cfc0ac1cf43c 100644 GIT binary patch delta 15 WcmZ3-ypDN74U3tTfzieWJw^a1k_4py delta 15 WcmZ3-ypDN74U3VLk?F<;Jw^a1jRd9u diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index e7a505189..792c1a4b3 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 994a515a55822249236a315c59615af53179ef61..937208e46348daa2200891ad7c4e24023d1a2a2d 100644 GIT binary patch delta 15 WcmZ3@yqbAJ4U3tTfzieWZAJhnI0T#k delta 15 WcmZ3@yqbAJ4U3VLk?F<;ZAJhnGX$Lg diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 56904f24e..74233f1d6 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index fbcdf4aeb..e0aa2932f 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index c6a73ad996d79ade8a9e19a2aa7b034d48cfc20b..dcf5413e5b92a6e11a5102dfd160f8caee1c195f 100644 GIT binary patch delta 15 WcmdnSyp4H64U3tTfzieWGe!U@f&{$) delta 15 WcmdnSyp4H64U3VLk?F<;Ge!U@eFVM$ diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index faaefebb3..e82bdaf5f 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index b79ec5a13b62872a0aee1374a7bcb62e0c5debed..566178ebea4b005c2f415acfc84b51c6baee02df 100644 GIT binary patch delta 15 WcmX@We1LgE4U3tTfzieW2SxxYt_0fv delta 15 WcmX@We1LgE4U3VLk?F<;2SxxYsRY~r diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index 8f2f92d22..288122ab1 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 5b1fef4a7b050f6b80bd1e8997836f073d88d8f7..9d4dcfd1b38b510ba9c2b15422ea78c3ff69dbb3 100644 GIT binary patch delta 17 YcmeBS?_u9i&B$VAWni?qo{^Uc04){-YXATM delta 17 YcmeBS?_u9i&B$V8Wn{X!o{^Uc04)*(YybcN diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index 5f02b4fd4..8eba70c4a 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index b60ea1056..de039b078 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 581949f00368ebb44402e8c602c26992afedb286..726c782ca9146fcf737bd206b922a6ab24f76e1d 100644 GIT binary patch delta 15 Wcmcb{a*bs|4U3tTfzif>Ym5LcTm_#1 delta 15 Wcmcb{a*bs|4U3VLk?F>UYm5LcR|TK| diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 408f6fbf1..05a89b26d 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 4d51a0bd8..612cbcea4 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 46dbd9508..fb66345a5 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index bfdba3e95c2fd061b741bb9a402eaa8a3cd28730..533b8fce73fd64d2d07f8bd7473d243b8415b070 100644 GIT binary patch delta 17 YcmdnRzKeZBH6x3em4VUbdPZv|05dWK^#A|> delta 17 YcmdnRzKeZBH6x3Wm67S@dPZv|05dKG_5c6? diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index e8fdb8466..9d72cf38b 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index a49c11e95..f48c2ebdc 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 6f29b74c4..25ea18041 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 13074df5c5491bc1e60d7880e9742fde4c696f28..5cf2ddfa932c7f81f92d90631c5d8d8239537a41 100644 GIT binary patch delta 15 WcmaFE{Dyf#4U3tTfzif>97X^y)&*Yx delta 15 WcmaFE{Dyf#4U3VLk?F>U97X^y(FI@t diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index 5cbdef58b..a388b91e4 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index a74a1562e..6fa5eb6b0 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index 10adac609a553a9e3e02857aed74a758266b9c6b..a3502575794d88cd11fbd1e145e01c9c84e76301 100644 GIT binary patch delta 15 WcmbQjGKFPA4U3tTfzif>DU1Lnpaj_f delta 15 WcmbQjGKFPA4U3VLk?F>UDU1Lnn*`bb diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index afe259139..fe78b08c1 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 8fa4e456de7303e005faf9b8e6c3386fec183d5f..aa432021ae04de31104e712c925b5ebe0b648f58 100644 GIT binary patch delta 15 WcmdnSyp4H64U3tTfzieWGe!U@f&{$) delta 15 WcmdnSyp4H64U3VLk?F<;Ge!U@eFVM$ diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 22a46c3a0..459ed73d8 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 06b9610cc958d67b42a218fabc0a6739ccf05857..1e858026b956158195ee0f98c0fa3a7575583554 100644 GIT binary patch delta 15 WcmZ3(yoPx~4U3tTfzieW9Yz2sRs^2_ delta 15 WcmZ3(yoPx~4U3VLk?F<;9Yz2sQ3Rj> diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index d43f172f1..68dc7bfa0 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index 8707592ce..2aeedc81c 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 57ff0c7afadc730176bb520d1a16deea92a36782..c8adb02cb913cee0a6d78aa2c755388725b0c159 100644 GIT binary patch delta 15 WcmZo-X=0gB!(wJ-V6?HJi4g!Kgao4i delta 15 WcmZo-X=0gB!(wD*WV*4Ti4g!Ke*~le diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index 164b0bd96..a59c66eba 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 5dcf699fb45235311dbd8cd4cbe8800797c113df..56f5b78bee510cf0eec3faf4df532476c19fd997 100644 GIT binary patch delta 15 WcmdnYyqS4I4U3tTfzieWV@3ceCyq0-F4U3tTfzieWT}A*XbOfRR delta 15 WcmZ3>yq0-F4U3VLk?F<;T}A*XZv>+N diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index 2471dacac..f75f3e536 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index b17216379..601bb9f05 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 6a5dfe25d..d8e7d2088 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 02:25+0000\n" +"POT-Creation-Date: 2017-06-30 06:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From a9b89d1b25fb28f02afec8201c6265aa728656ec Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sat, 1 Jul 2017 03:09:55 +0000 Subject: [PATCH 09/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index df41d263332f855001a4a0b1c5cc918802c5c258..aefc67923ec8383351e40bb30f984611670ff573 100644 GIT binary patch delta 21 ccmeBR>0p^q#$~Q+V5neVWMyc$v7v(z06w1u#sB~S delta 21 ccmeBR>0p^q#$~2!Y@lFZW@TWsv7v(z06xhD%K!iX diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 60e81eeb4..e6daaa18f 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index f986a8326..9264aa5ac 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 9f558c728a10233bb8b9262bf0523539de95dd1b..c842105ba13f3907623efd6f925300d6996865e7 100644 GIT binary patch delta 21 ccmdnNyn}f{8JD@PfuVwdk(Ht0#s&*U07Y2^)Bpeg delta 21 ccmdnNyn}f{8JC%^v4MhtnU#Uj#s&*U07ZiZ*#H0l diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index eecfce77b..4bd4334f3 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 89ccd8cbe..8f24b9e8e 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 538ea0877..f1aca43e0 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index 61860e983..d7e38430f 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index fc6748db5..08c68038b 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index de53369ed..a292fa703 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 1adef7743ee7a8fdc70c0bcd13ad0202c8834992..b0d553a6c503191d152febf33f476afe8278aa54 100644 GIT binary patch delta 21 ccmdnOyoGr}8JD@PfuVwdk(Ht0#s(8c07S6`$N&HU delta 21 ccmdnOyoGr}8JC%^v4MhtnU#Uj#s(8c07Tmb%>V!Z diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 5a18f2deb..2147a5516 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 307c918eccb95d1fedfe0cb74623e3b060d5e9b5..d355d71350af21f491f9e102f83db35fb573a9ce 100644 GIT binary patch delta 21 ccmX@he3p4a8JD@PfuVwdk(Ht0#s*(T07%OQ6951J delta 21 ccmX@he3p4a8JC%^v4MhtnU#Uj#s*(T07&%)7ytkO diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index a863cf68c..a8efcdaef 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 487a48fed..2047aa1c0 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index dfebc2531a0ec9aeaba3eae15dd50f61ebe245b7..7a3818972144f77eb29c2da073f87cc10ec77da4 100644 GIT binary patch delta 21 ccmX@Ye1v&I8JD@PfuVwdk(Ht0#s(Kg07p>;_y7O^ delta 21 ccmX@Ye1v&I8JC%^v4MhtnU#Uj#s(Kg07rWT{Qv*} diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index 5e5b696db..b648bdfa4 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index 2537a6a617d813f8bc28ef5fb9bffc9585046f8c..e60db60dc05f2735428210b3025c96304f20e456 100644 GIT binary patch delta 21 ccmX@ge3W@Y8JD@PfuVwdk(Ht0#s*hL07rWT`v3p{ delta 21 ccmX@ge3W@Y8JC%^v4MhtnU#Uj#s*hL07s<;00000 diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index dabb77c46..48d3500d5 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index 1ffb8449a260f8784d00052f23f215c8fd05c92b..1167df5142ac64bae4a7e63a213f07a0c688a644 100644 GIT binary patch delta 21 ccmX@be2RHO8JD@PfuVwdk(Ht0#s)7&07y*+3IG5A delta 21 ccmX@be2RHO8JC%^v4MhtnU#Uj#s)7&07!QR4*&oF diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index aece55adf..b486aa42f 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index 305a06a48309d0587593bed4f232b9655ea519e3..3a7563470472c0a7514998f518e36072d6dbfe90 100644 GIT binary patch delta 21 ccmdnayq$SM8JD@PfuVwdk(Ht0#s+gn07Wka(EtDd delta 21 ccmdnayq$SM8JC%^v4MhtnU#Uj#s+gn07Y2^)&Kwi diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index fdd3d8f26..c1f54bab0 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index 2e1f612bc458f2d4e723248c634c0445ab05de2d..96aebe7a8f3f7824dee3e98824ce3fa309b1497a 100644 GIT binary patch delta 21 ccmdnWyp?%E8JD@PfuVwdk(Ht0#s*VH07Tmb%K!iX delta 21 ccmdnWyp?%E8JC%^v4MhtnU#Uj#s*VH07V4_&;S4c diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 3a5761b39..07b8c946a 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index 6d02a76968533156baa22652347af876cff527ea..483d8ac257a280c7941bd2e319607ddf6eee7326 100644 GIT binary patch delta 21 ccmZ3_yqV!Z diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po index e4653bfa0..e4633d21a 100644 --- a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo index 2f543e23b3205a28cb8adf1cab134ab3384ea8fe..e64ec1f342a89da3dc278b9f97e01b528650d5ec 100644 GIT binary patch delta 21 ccmX@Xe1dsG8JD@PfuVwdk(Ht0#s&{Y07v--1ONa4 delta 21 ccmX@Xe1dsG8JC%^v4MhtnU#Uj#s&{Y07xSS2><{9 diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po index 5607f720a..2ba038caa 100644 --- a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo index 7f521682fe227f0a01a20521567a02588a545d6b..438cbd38eabcc39dfd5bcbcc367cbab3c3a0c4ad 100644 GIT binary patch delta 21 ccmdnayq$SM8JD@PfuVwdk(Ht0#s+gn07Wka(EtDd delta 21 ccmdnayq$SM8JC%^v4MhtnU#Uj#s+gn07Y2^)&Kwi diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po index 0f75f10a4..a214b1d04 100644 --- a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo index a16e6014d44e6afacbc3ac5bca525795fa76bb57..b60586e598ccc8cccb3071dc23f2c1b659426835 100644 GIT binary patch delta 21 ccmdnayq$SM8JD@PfuVwdk(Ht0#s+gn07Wka(EtDd delta 21 ccmdnayq$SM8JC%^v4MhtnU#Uj#s+gn07Y2^)&Kwi diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po index 16e392e4f..bda9e1b4f 100644 --- a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index 9c5d4fd7b47d2738c354526def845ec20c72367e..fb22b93115585ed1759dc6944eee0391ad3e593a 100644 GIT binary patch delta 21 ccmdnOyoGr}8JD@PfuVwdk(Ht0#s(8c07S6`$N&HU delta 21 ccmdnOyoGr}8JC%^v4MhtnU#Uj#s(8c07Tmb%>V!Z diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po index 782126019..7e072f7e3 100644 --- a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po index 1a8b73e0a..bfc77223d 100644 --- a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lovro Kudelić , 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index 33570e619..e3b23f112 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index a86f96d9e44a54acdbbc28a6ea60bfd9b175f89e..9dbd80ee70aaba6d273a0d4899dc020266116c2e 100644 GIT binary patch delta 23 ecmZo*Z(!e0%E)D|Yhb8gU}R-zxVfH@kqH1sbOl%d delta 23 ecmZo*Z(!e0%E)D=YiyukU}j}tw7H&, 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index be59ec69a..5d7b33bfd 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index ae2082627..11136f0bb 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index b9438d7a4..b5f10b6fd 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index db8e9f2589ab716dc21794685b69cfc0ac1cf43c..4bc40174790f4795a21129195637c3ee4bc856ed 100644 GIT binary patch delta 21 ccmZ3-ypDN78JD@PfuVwdk(Ht0#s)n`07JC}wg3PC delta 21 ccmZ3-ypDN78JC%^v4MhtnU#Uj#s)n`07Ksey8r+H diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index 792c1a4b3..0875853e6 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 937208e46348daa2200891ad7c4e24023d1a2a2d..6ea1cd8271a5a1583a2f9fcadda2280612b7e891 100644 GIT binary patch delta 21 ccmZ3@yqbAJ8JD@PfuVwdk(Ht0#s+Oh07EwgtpET3 delta 21 ccmZ3@yqbAJ8JC%^v4MhtnU#Uj#s+Oh07GE~vH$=8 diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 74233f1d6..5e9b3e681 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index e0aa2932f..078211b15 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index dcf5413e5b92a6e11a5102dfd160f8caee1c195f..758386bf54fe8459959ce1772b7e48ace8a5aca0 100644 GIT binary patch delta 21 ccmdnSyp4H68JD@PfuVwdk(Ht0#s)J+07V4_&Hw-a delta 21 ccmdnSyp4H68JC%^v4MhtnU#Uj#s)J+07Wka(*OVf diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index e82bdaf5f..d4b48e0c4 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 566178ebea4b005c2f415acfc84b51c6baee02df..d47358f42f6985681b78100cd83d9e28ca5026f4 100644 GIT binary patch delta 21 ccmX@We1LgE8JD@PfuVwdk(Ht0#s&vQ07j_=>;M1& delta 21 ccmX@We1LgE8JC%^v4MhtnU#Uj#s&vQ07laV@c;k- diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index 288122ab1..460bfd0cb 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 9d4dcfd1b38b510ba9c2b15422ea78c3ff69dbb3..40e5070ab140ef6cb89169ce44a73f6e71618db4 100644 GIT binary patch delta 23 ecmeBS?_u9i%E)D|Yhb8gU}R-zxVfH@mk9t!oCSOU delta 23 ecmeBS?_u9i%E)D=YiyukU}j}tw7H&, 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index de039b078..d461ec42c 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 726c782ca9146fcf737bd206b922a6ab24f76e1d..9d82b786e0e2b5a7789ceb3236f546db3e1913c7 100644 GIT binary patch delta 21 ccmcb{a*bs|8JD@PfuVwdk(Ht0#)fN*0848IumAu6 delta 21 ccmcb{a*bs|8JC%^v4MhtnU#Uj#)fN*085nywEzGB diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 05a89b26d..ed26307b3 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 612cbcea4..a75e33bbf 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index fb66345a5..942e63a87 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index 533b8fce73fd64d2d07f8bd7473d243b8415b070..a2e391566d8c64aff04eef66e159bc6e809da479 100644 GIT binary patch delta 23 ecmdnRzKeZBDI=G;u7RO~fsvJ=;pTcqYbF3t;06W& delta 23 ecmdnRzKeZBDI=GeuCalFfti(o(dK$aYbF3u4+aYW diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 9d72cf38b..2763ef533 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index f48c2ebdc..805ffc312 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 25ea18041..24c9f7fa7 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 5cf2ddfa932c7f81f92d90631c5d8d8239537a41..777c0ce4477f53a81d4d5990e01c7832b19c98c4 100644 GIT binary patch delta 21 ccmaFE{Dyf#8JD@PfuVwdk(Ht0#)ce508QZrZ~y=R delta 21 ccmaFE{Dyf#8JC%^v4MhtnU#Uj#)ce508R@AbpQYW diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index a388b91e4..38a27598d 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index 6fa5eb6b0..baa6c1fc6 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index a3502575794d88cd11fbd1e145e01c9c84e76301..20f33fb11b0f4f8badeaadc08a20e431f847f8ac 100644 GIT binary patch delta 21 ccmbQjGKFPA8JD@PfuVwdk(Ht0#)c`306>=o>Hq)$ delta 21 ccmbQjGKFPA8JC%^v4MhtnU#Uj#)c`306@V7?*IS* diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index fe78b08c1..2e8bc9f28 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index aa432021ae04de31104e712c925b5ebe0b648f58..07e40918580fb469d08bfee86c546d61823244ba 100644 GIT binary patch delta 21 ccmdnSyp4H68JD@PfuVwdk(Ht0#s)J+07V4_&Hw-a delta 21 ccmdnSyp4H68JC%^v4MhtnU#Uj#s)J+07Wka(*OVf diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 459ed73d8..044c46bba 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 1e858026b956158195ee0f98c0fa3a7575583554..1a9fd17a8bd46235dd26c7006541457f7d855604 100644 GIT binary patch delta 21 ccmZ3(yoPx~8JD@PfuVwdk(Ht0#s(cm07GE~umAu6 delta 21 ccmZ3(yoPx~8JC%^v4MhtnU#Uj#s(cm07HufwEzGB diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index 68dc7bfa0..97c614790 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index 2aeedc81c..b2c62e963 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index c8adb02cb913cee0a6d78aa2c755388725b0c159..24355f35f7c32436c65b3d985623188716cc5f6e 100644 GIT binary patch delta 21 ccmZo-X=0gB#$~Q+V5neVWMyc$v7w0(06n7xv;Y7A delta 21 ccmZo-X=0gB#$~2!Y@lFZW@TWsv7w0(06onGxc~qF diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index a59c66eba..d96f0dd04 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 56f5b78bee510cf0eec3faf4df532476c19fd997..fce286500e09fd009f989eecff4ce6304ff707d5 100644 GIT binary patch delta 21 ccmdnYyqS4I8JD@PfuVwdk(Ht0#s*_X07Qoc#Q*>R delta 21 ccmdnYyqS4I8JC%^v4MhtnU#Uj#s*_X07S6`$^ZZW diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index c74064485..65295340d 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 8859dda1456fbac8d0dd5267cc04c69ba7ed55ea..2a356aa8d76b515dbb4b3149dfaafc96a811e71a 100644 GIT binary patch delta 21 ccmZ3>yq0-F8JD@PfuVwdk(Ht0#s*zR07Hufvj6}9 delta 21 ccmZ3>yq0-F8JC%^v4MhtnU#Uj#s*zR07JC}xBvhE diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index f75f3e536..952d29f1b 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 601bb9f05..13f25743b 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index d8e7d2088..3dc0d6667 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-06-30 06:02+0000\n" +"POT-Creation-Date: 2017-07-01 02:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From 75e9123e05f1b0ea3b7ace2e5069cf0dede0098a Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sun, 2 Jul 2017 00:40:15 +0000 Subject: [PATCH 10/23] [core] Automatic merge of Transifex translations --- lang/calamares_da.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 16d529168..b9c47794c 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -240,7 +240,7 @@ Output: Cancel installation without changing the system. - + Annullér installation uden at ændre systemet. @@ -277,12 +277,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. &Done - + &Færdig The installation is complete. Close the installer. - + Installationen er fuldført. Luk installationsprogrammet. From 955c20c8d7b23ac64c86c77e13599cc4983fb4d4 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sun, 2 Jul 2017 00:40:16 +0000 Subject: [PATCH 11/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index aefc67923ec8383351e40bb30f984611670ff573..8e4b6fe9cf550e8a3b616728b0f0d8a5e7f576f2 100644 GIT binary patch delta 15 WcmeBR>0p^q!(wb@YPqqYgAo8FVFbPa delta 15 WcmeBR>0p^q!(wD*Xt=SVgAo8F83eHa diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index e6daaa18f..dc34ce43f 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 9264aa5ac..822d6526c 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index c842105ba13f3907623efd6f925300d6996865e7..818053333b2933b385dbf5cd3cb91199f3e005d4 100644 GIT binary patch delta 15 WcmdnNyn}f{4U4grspZB73q}Ab=LF0E delta 15 WcmdnNyn}f{4U3VLq2a~`3q}Abp9H@E diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 4bd4334f3..9370488ab 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 8f24b9e8e..0a8de7288 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index f1aca43e0..576ed5380 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index d7e38430f..3fec9a7d0 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 08c68038b..c1068371c 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index a292fa703..c1c53cf36 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index b0d553a6c503191d152febf33f476afe8278aa54..74887e5f35efafab497aa1411f1b47b4145d3a84 100644 GIT binary patch delta 15 WcmdnOyoGr}4U4grspZB76Gi|jZv?;q delta 15 WcmdnOyoGr}4U3VLq2a~`6Gi|jCj_$q diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 2147a5516..0de92ad47 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index d355d71350af21f491f9e102f83db35fb573a9ce..1710ace906c3df8b1639ab29b4eb85e60d8bcfdf 100644 GIT binary patch delta 15 WcmX@he3p4a4U4grspZB7Uq%2dT?GpO delta 15 WcmX@he3p4a4U3VLq2a~`Uq%2d6$JhO diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index a8efcdaef..86bf51b9a 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 2047aa1c0..dd45d531d 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 7a3818972144f77eb29c2da073f87cc10ec77da4..1f092f5854aba903217abc1de4f12f691b69289c 100644 GIT binary patch delta 15 WcmX@Ye1v&I4U4grspZB77e)XpPXzD) delta 15 WcmX@Ye1v&I4U3VLq2a~`7e)Xp2L$5) diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index b648bdfa4..ef1f8fa32 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index e60db60dc05f2735428210b3025c96304f20e456..a58e17311b0085656adacdd73a06be0c0755b73b 100644 GIT binary patch delta 15 WcmX@ge3W@Y4U4grspZB7S4IFUZ3OcG delta 15 WcmX@ge3W@Y4U3VLq2a~`S4IFUB?RUG diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index 48d3500d5..b24014a8f 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index 1167df5142ac64bae4a7e63a213f07a0c688a644..0a33a42ecd9d580826170eb2e85ad4145a089615 100644 GIT binary patch delta 15 WcmX@be2RHO4U4grspZB7FGc_?0|f#A delta 15 WcmX@be2RHO4U3VLq2a~`FGc_>y9D(B diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index b486aa42f..603e4ff00 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index 3a7563470472c0a7514998f518e36072d6dbfe90..867ede45312389650db6ce24ce85bab8071f26e2 100644 GIT binary patch delta 15 Wcmdnayq$SM4U4grspZB7b4CCu$ppy& delta 15 Wcmdnayq$SM4U3VLq2a~`b4CCufdsq& diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index c1f54bab0..78644b4d2 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index 96aebe7a8f3f7824dee3e98824ce3fa309b1497a..c566ccd97047cec23680b04969bf0b473a892d8c 100644 GIT binary patch delta 15 WcmdnWyp?%E4U4grspZB7Q$_$OjReC0 delta 15 WcmdnWyp?%E4U3VLq2a~`Q$_$OMFh40 diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 07b8c946a..6a06e61d1 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index 483d8ac257a280c7941bd2e319607ddf6eee7326..984b444963a11466489ac751354f3f74c28bfdf5 100644 GIT binary patch delta 15 WcmZ3_yqsn diff --git a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po index 2f7fef202..8920d7f73 100644 --- a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo index bc79584a748ff56eee3c21d616e324293838e76b..5e4e14630cd50dd979cbeaed2198484da487d25d 100644 GIT binary patch delta 15 WcmdnOyoGr}4U4grspZB76Gi|jZv?;q delta 15 WcmdnOyoGr}4U3VLq2a~`6Gi|jCj_$q diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po index e4633d21a..7d3feeba7 100644 --- a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo index e64ec1f342a89da3dc278b9f97e01b528650d5ec..10cefa0af5228532de3b1ef4d5753b76b65f20df 100644 GIT binary patch delta 15 WcmX@Xe1dsG4U4grspZB74@Lkh#{~QU delta 15 WcmX@Xe1dsG4U3VLq2a~`4@Lkhe+2IU diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po index 2ba038caa..746a7399f 100644 --- a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo index 438cbd38eabcc39dfd5bcbcc367cbab3c3a0c4ad..ea1f4e686f8631c4b52f811ffa6b87f4650aecc6 100644 GIT binary patch delta 15 Wcmdnayq$SM4U4grspZB7b4CCu$ppy& delta 15 Wcmdnayq$SM4U3VLq2a~`b4CCufdsq& diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po index a214b1d04..11c3fae2c 100644 --- a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo index b60586e598ccc8cccb3071dc23f2c1b659426835..c09bfd1ebab4857a74008caaa6350a47a3e0a080 100644 GIT binary patch delta 15 Wcmdnayq$SM4U4grspZB7b4CCu$ppy& delta 15 Wcmdnayq$SM4U3VLq2a~`b4CCufdsq& diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po index bda9e1b4f..b0aab681e 100644 --- a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index fb22b93115585ed1759dc6944eee0391ad3e593a..babd653e9f35213267dd6c74e9beb6dde28586ef 100644 GIT binary patch delta 15 WcmdnOyoGr}4U4grspZB76Gi|jZv?;q delta 15 WcmdnOyoGr}4U3VLq2a~`6Gi|jCj_$q diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po index 7e072f7e3..bf840c52c 100644 --- a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po index bfc77223d..2e9eb3820 100644 --- a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lovro Kudelić , 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index e3b23f112..4464452b0 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 9dbd80ee70aaba6d273a0d4899dc020266116c2e..7d5ae1941883ea0d7284b42e50e2b238a9c43fa0 100644 GIT binary patch delta 17 YcmZo*Z(!e0&B$VGWoo&(o{^CW04uNrPyhe` delta 17 YcmZo*Z(!e0&B$V8WoWp$o{^CW04rMrLjV8( diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 6e0d87840..4fa13b3b5 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 5d7b33bfd..b651d1781 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index 11136f0bb..a584092f0 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index b5f10b6fd..83914d2b1 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index 4bc40174790f4795a21129195637c3ee4bc856ed..285616cb693caef836218f847c0796cf8d172707 100644 GIT binary patch delta 15 WcmZ3-ypDN74U4grspZB7Jw^a1y9BNP delta 15 WcmZ3-ypDN74U3VLq2a~`Jw^a1a|EFP diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index 0875853e6..615c700dc 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 6ea1cd8271a5a1583a2f9fcadda2280612b7e891..78d6592fd6b846774301ceae8b41575703b4cb84 100644 GIT binary patch delta 15 WcmZ3@yqbAJ4U4grspZB7ZAJhnVFaZB delta 15 WcmZ3@yqbAJ4U3VLq2a~`ZAJhn83dRB diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 5e9b3e681..bfe6a42a3 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index 078211b15..b931ce279 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 758386bf54fe8459959ce1772b7e48ace8a5aca0..6f7875c1be1e1f75f9851b05cbcad144a447b004 100644 GIT binary patch delta 15 WcmdnSyp4H64U4grspZB7Ge!U@s|3aX delta 15 WcmdnSyp4H64U3VLq2a~`Ge!U@V+6SX diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index d4b48e0c4..938a1bcef 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index d47358f42f6985681b78100cd83d9e28ca5026f4..668fe4ba6b5b8a6de88f90dc017834205f9418a2 100644 GIT binary patch delta 15 WcmX@We1LgE4U4grspZB72SxxY*97DM delta 15 WcmX@We1LgE4U3VLq2a~`2SxxYj|A5M diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index 460bfd0cb..d3b088d33 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 40e5070ab140ef6cb89169ce44a73f6e71618db4..c8586f4b1a23518987ebc0235d1b9e83d1a10035 100644 GIT binary patch delta 17 YcmeBS?_u9i&B$VGWoo&(o{^Uc04+!abN~PV delta 17 YcmeBS?_u9i&B$V8WoWp$o{^Uc04(zaX8-^I diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index ce6aad7a8..8e20be028 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index d461ec42c..b8f866d0f 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 9d82b786e0e2b5a7789ceb3236f546db3e1913c7..114f207068533c308d3329c446ba4ea40afdd74f 100644 GIT binary patch delta 15 Wcmcb{a*bs|4U4grspZCoYm5Lcg$1Yp delta 15 Wcmcb{a*bs|4U3VLq2b1cYm5LcJq4Qp diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index ed26307b3..0639d7b85 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index a75e33bbf..611b0949c 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 942e63a87..92b8f619a 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index a2e391566d8c64aff04eef66e159bc6e809da479..e1918698ac4dca32ecb2779f8aa751e9238c0b3b 100644 GIT binary patch delta 17 YcmdnRzKeZBH6x3$m8s?CdPZv|05fC+{r~^~ delta 17 YcmdnRzKeZBH6x3Wm7(G0dPZv|05cB+@c;k- diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 2763ef533..39ca436b7 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 805ffc312..ee8f26c06 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 24c9f7fa7..1140c7c5f 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 777c0ce4477f53a81d4d5990e01c7832b19c98c4..58ff1eb6fe5d8f05d2737dcc19e2af5565a25c13 100644 GIT binary patch delta 15 WcmaFE{Dyf#4U4grspZCo97X^y{{?6O delta 15 WcmaFE{Dyf#4U3VLq2b1c97X^yw*^}O diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index 38a27598d..058a7e1bf 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index baa6c1fc6..4f42ffc46 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index 20f33fb11b0f4f8badeaadc08a20e431f847f8ac..a8c5572f42f1c342b86e3cc64d663ec90409ad25 100644 GIT binary patch delta 15 WcmbQjGKFPA4U4grspZCoDU1Ln$pqp6 delta 15 WcmbQjGKFPA4U3VLq2b1cDU1Lnfdth6 diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index 2e8bc9f28..54e57c5ed 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 07e40918580fb469d08bfee86c546d61823244ba..d96a739a1331b77d60326aefc58c6ce6d3b0575e 100644 GIT binary patch delta 15 WcmdnSyp4H64U4grspZB7Ge!U@s|3aX delta 15 WcmdnSyp4H64U3VLq2a~`Ge!U@V+6SX diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 044c46bba..185f999ea 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 1a9fd17a8bd46235dd26c7006541457f7d855604..f31f664716d2816378aba8662037c3cd96e08358 100644 GIT binary patch delta 15 WcmZ3(yoPx~4U4grspZB79Yz2se*~xi delta 15 WcmZ3(yoPx~4U3VLq2a~`9Yz2sHw2pi diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index 97c614790..6a256c839 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index b2c62e963..bb6491d40 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 24355f35f7c32436c65b3d985623188716cc5f6e..b9219d30f314869f43d8fbcb84ccf9748389a0b7 100644 GIT binary patch delta 15 WcmZo-X=0gB!(wb@YPqqYi4g!Ktpuz9 delta 15 WcmZo-X=0gB!(wD*Xt=SVi4g!KWdxr9 diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index d96f0dd04..721ab85c1 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index fce286500e09fd009f989eecff4ce6304ff707d5..358e44b0ff7fc00fd0888fb88970c366d5214a09 100644 GIT binary patch delta 15 WcmdnYyqS4I4U4grspZB7V@3ceQ3SmJ delta 15 WcmdnYyqS4I4U3VLq2a~`V@3ce2?VeJ diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index 65295340d..1996dd36b 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 2a356aa8d76b515dbb4b3149dfaafc96a811e71a..0d778d7eaa07d6be0b675363206f2bf76f3e1168 100644 GIT binary patch delta 15 WcmZ3>yq0-F4U4grspZB7T}A*Xodl}@ delta 15 WcmZ3>yq0-F4U3VLq2a~`T}A*XRRo>@ diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index 952d29f1b..f638a2dba 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 13f25743b..0d9ec18d0 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 3dc0d6667..1b981a39b 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 02:11+0000\n" +"POT-Creation-Date: 2017-07-01 03:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From c583e4c21b0634e3896959162ad28284a75b89a3 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Sun, 2 Jul 2017 02:50:59 +0000 Subject: [PATCH 12/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 8e4b6fe9cf550e8a3b616728b0f0d8a5e7f576f2..7f5e135d6cd8d0616382a761547f4c943576edfe 100644 GIT binary patch delta 17 YcmeBR>0p^q$!4TrU}$B$vA&ZL04!kz0ssI2 delta 17 YcmeBR>0p^q$!4fvU~FZ&vA&ZL04#3>1poj5 diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index dc34ce43f..b63eec008 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 822d6526c..7d2346e88 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 818053333b2933b385dbf5cd3cb91199f3e005d4..e086695daf37ab2b3424cea101744777ad0faf45 100644 GIT binary patch delta 17 YcmdnNyn}f{C7Y3gfuWW0#(GOe05PKl5C8xG delta 17 YcmdnNyn}f{C7Ypwfw7h8#(GOe05P!z6951J diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 9370488ab..f6bbdb254 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 0a8de7288..53215d79c 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 576ed5380..62c304969 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index 3fec9a7d0..aa514e0ce 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index c1068371c..448710451 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index c1c53cf36..d193b9a34 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 74887e5f35efafab497aa1411f1b47b4145d3a84..46321699fcc2d3a106d7e5a128b080016083b5b1 100644 GIT binary patch delta 17 YcmdnOyoGr}C7Y3gfuWW0#(Gmm05KZ{1ONa4 delta 17 YcmdnOyoGr}C7Ypwfw7h8#(Gmm05K^A2LJ#7 diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 0de92ad47..13168035e 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 1710ace906c3df8b1639ab29b4eb85e60d8bcfdf..059c00153fd9a2d50618d478ca80a63b71d14794 100644 GIT binary patch delta 17 YcmX@he3p4aC7Y3gfuWW0#(F, 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 1f092f5854aba903217abc1de4f12f691b69289c..9d3c6935aca89b016376b4c41cfdea3238c22cad 100644 GIT binary patch delta 17 YcmX@Ye1v&IC7Y3gfuWW0#(Gyq05dxUGynhq delta 17 YcmX@Ye1v&IC7Ypwfw7h8#(Gyq05eGiHvj+t diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index ef1f8fa32..773333d4f 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index a58e17311b0085656adacdd73a06be0c0755b73b..a2a17be721490d8832cb65c526c74f104bb3e5e6 100644 GIT binary patch delta 17 YcmX@ge3W@YC7Y3gfuWW0#(FnK05e?$Hvj+t delta 17 YcmX@ge3W@YC7Ypwfw7h8#(FnK05fX^IsgCw diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index b24014a8f..e23b122d2 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index 0a33a42ecd9d580826170eb2e85ad4145a089615..495f17f56576331cd38080a395fdd50624d35d1e 100644 GIT binary patch delta 17 YcmX@be2RHOC7Y3gfuWW0#(Hl?05k^$MgRZ+ delta 17 YcmX@be2RHOC7Ypwfw7h8#(Hl?05lZ^NdN!< diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index 603e4ff00..517f3d46e 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index 867ede45312389650db6ce24ce85bab8071f26e2..fd04cf25477f643b9439f2867d7d288ff100151d 100644 GIT binary patch delta 17 Ycmdnayq$SMC7Y3gfuWW0#(E1z05O3D4FCWD delta 17 Ycmdnayq$SMC7Ypwfw7h8#(E1z05OjR5C8xG diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index 78644b4d2..e3ae23d77 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index c566ccd97047cec23680b04969bf0b473a892d8c..0c4d9e863ae98f99d90d0595357eddeb8fbf91ac 100644 GIT binary patch delta 17 YcmdnWyp?%EC7Y3gfuWW0#(FbG05LrU2LJ#7 delta 17 YcmdnWyp?%EC7Ypwfw7h8#(FbG05MAi3IG5A diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 6a06e61d1..43fb5e3b0 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index 984b444963a11466489ac751354f3f74c28bfdf5..fad8b8d77c623c51bfa7d00c7ab94b1abbb162c5 100644 GIT binary patch delta 17 YcmZ3_yq delta 17 YcmZ3_yq, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index 4464452b0..5b314dd5e 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 7d5ae1941883ea0d7284b42e50e2b238a9c43fa0..34dea4d551530c2ba003849d87f0d335053b3fbd 100644 GIT binary patch delta 19 acmZo*Z(!e0!N_K$U|?uvyt$5%i3tER90ZgA delta 19 acmZo*Z(!e0!N_K)U|?)zy19;#i3tEREd-YU diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 4fa13b3b5..389b18631 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index b651d1781..6a11145a5 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index a584092f0..d089cd18a 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index 83914d2b1..4ca26a2e3 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index 285616cb693caef836218f847c0796cf8d172707..eebe1ed11f17718ea557b47b84669b4dce6c70b5 100644 GIT binary patch delta 17 YcmZ3-ypDN7C7Y3gfuWW0#(I5505DGk@&Et; delta 17 YcmZ3-ypDN7C7Ypwfw7h8#(I5505Dwy^#A|> diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index 615c700dc..f79c7ef7b 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 78d6592fd6b846774301ceae8b41575703b4cb84..f4ccad40711f96dd65af2c8ecdcb81473c889819 100644 GIT binary patch delta 17 YcmZ3@yqbAJC7Y3gfuWW0#(Et_059nT=>Px# delta 17 YcmZ3@yqbAJC7Ypwfw7h8#(Et_05A6h>;M1& diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index bfe6a42a3..3bed73a0a 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index b931ce279..5110d191d 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 6f7875c1be1e1f75f9851b05cbcad144a447b004..585fa05fc08a17804ca290b1187552f4ba00dda5 100644 GIT binary patch delta 17 YcmdnSyp4H6C7Y3gfuWW0#(Hx`05M+$3IG5A delta 17 YcmdnSyp4H6C7Ypwfw7h8#(Hx`05NR^4FCWD diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 938a1bcef..9e58c4e05 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 668fe4ba6b5b8a6de88f90dc017834205f9418a2..114afa2592e339b7cf5c7e70b47e80ffd85af63b 100644 GIT binary patch delta 17 YcmX@We1LgEC7Y3gfuWW0#(GCa05Y=$C;$Ke delta 17 YcmX@We1LgEC7Ypwfw7h8#(GCa05ZV^D*ylh diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index d3b088d33..157356134 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index c8586f4b1a23518987ebc0235d1b9e83d1a10035..0e6986f01f515e28d0a16bc2661d5243a41a7b6b 100644 GIT binary patch delta 19 acmeBS?_u9i!N_K$U|?uvyt$5%j|l)YB diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index 8e20be028..366b3b89c 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index b8f866d0f..861052e5d 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 114f207068533c308d3329c446ba4ea40afdd74f..2ba690e60de30d3b83f5c9f57dba2d4639978bf3 100644 GIT binary patch delta 17 Ycmcb{a*bs|C7Y3gfuWW0#`^1w05-h^>;M1& delta 17 Ycmcb{a*bs|C7Ypwfw7h8#`^1w05;17?*IS* diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 0639d7b85..2b1aaf0a9 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 611b0949c..641913e55 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 92b8f619a..3cb205b37 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index e1918698ac4dca32ecb2779f8aa751e9238c0b3b..08bedf1948f7a471c18a893173bbb874f1cf1137 100644 GIT binary patch delta 19 acmdnRzKeZB1tXi0f`Orx@#Z>48zuldxCKH0 delta 19 acmdnRzKeZB1tXiGf`PG>>E=2{8zuld$pu9K diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 39ca436b7..95f55b0ed 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index ee8f26c06..3b05743c1 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 1140c7c5f..5aa1b7789 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 58ff1eb6fe5d8f05d2737dcc19e2af5565a25c13..6e7a9ef1b7e81795c3858439fbd0aea14abef57f 100644 GIT binary patch delta 17 YcmaFE{Dyf#C7Y3gfuWW0#`;`F062>UtN;K2 delta 17 YcmaFE{Dyf#C7Ypwfw7h8#`;`F063WiuK)l5 diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index 058a7e1bf..a5f08fd9d 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index 4f42ffc46..e6f493596 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index a8c5572f42f1c342b86e3cc64d663ec90409ad25..a25b74d3114c4801fe82113fc546ad7b634451a9 100644 GIT binary patch delta 17 YcmbQjGKFPAC7Y3gfuWW0#`>v@04@0iCIA2c delta 17 YcmbQjGKFPAC7Ypwfw7h8#`>v@04@gwDF6Tf diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index 54e57c5ed..32d91575d 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index d96a739a1331b77d60326aefc58c6ce6d3b0575e..7dd4da70e950da5d24b4d7470ce4c90fb4baf1a6 100644 GIT binary patch delta 17 YcmdnSyp4H6C7Y3gfuWW0#(Hx`05M+$3IG5A delta 17 YcmdnSyp4H6C7Ypwfw7h8#(Hx`05NR^4FCWD diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index 185f999ea..e3c4bbbf2 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index f31f664716d2816378aba8662037c3cd96e08358..939a454f632d4f00e9f64aa06c5721782812dcf6 100644 GIT binary patch delta 17 YcmZ3(yoPx~C7Y3gfuWW0#(G^w05A&#>;M1& delta 17 YcmZ3(yoPx~C7Ypwfw7h8#(G^w05BN@?*IS* diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index 6a256c839..025baa7ac 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index bb6491d40..a9a8947db 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index b9219d30f314869f43d8fbcb84ccf9748389a0b7..970230484c145f15138e4cc9f917f0331448278f 100644 GIT binary patch delta 17 YcmZo-X=0gB$!4TrU}$B$vA&rR04tRQ@Bjb+ delta 17 YcmZo-X=0gB$!4fvU~FZ&vA&rR04t*e^8f$< diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index 721ab85c1..ecece3c0f 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 358e44b0ff7fc00fd0888fb88970c366d5214a09..426352cd96fd99abd1340e1b27a9efe688ae363b 100644 GIT binary patch delta 17 YcmdnYyqS4IC7Y3gfuWW0#(EP*05JIl0RR91 delta 17 YcmdnYyqS4IC7Ypwfw7h8#(EP*05Jyz1ONa4 diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index 1996dd36b..194a6e92e 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 0d778d7eaa07d6be0b675363206f2bf76f3e1168..b57902941b13bd3d7f376fea08b5953bb3453f7a 100644 GIT binary patch delta 17 YcmZ3>yq0-FC7Y3gfuWW0#(F(Q05B~C?*IS* delta 17 YcmZ3>yq0-FC7Ypwfw7h8#(F(Q05CfQ@&Et; diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index f638a2dba..d218e51d1 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 0d9ec18d0..085504469 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 1b981a39b..a0d43044c 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-01 03:59+0000\n" +"POT-Creation-Date: 2017-07-02 01:39+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From 314282731b4a1cd75e4f65dc48eb3027db0784e2 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Mon, 3 Jul 2017 00:40:53 +0000 Subject: [PATCH 13/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 7f5e135d6cd8d0616382a761547f4c943576edfe..6bfbc98e07cac41e736f9b56ad55cec6c283cb61 100644 GIT binary patch delta 15 WcmeBR>0p^q!(wb@V!W}TgAo8FJp{J^ delta 15 WcmeBR>0p^q!(wP, 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index e086695daf37ab2b3424cea101744777ad0faf45..f61897d939911a3b79ce5dcb7015ea9b63f6e461 100644 GIT binary patch delta 15 WcmdnNyn}f{4U4griSfn;3q}Ab!vw_u delta 15 WcmdnNyn}f{4U3_bvE{}F3q}Ab%LK>( diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index f6bbdb254..9e2076043 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 53215d79c..3b329ea4b 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 62c304969..576847fae 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index aa514e0ce..adcb6e725 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 448710451..f8c7fda79 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index d193b9a34..6c0ac2bf4 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 46321699fcc2d3a106d7e5a128b080016083b5b1..b4c289f157d12f77587585dbeb19b2b6bcfe7b98 100644 GIT binary patch delta 15 WcmdnOyoGr}4U4griSfn;6Gi|jO9Z(9 delta 15 WcmdnOyoGr}4U3_bvE{}F6Gi|jQv|#K diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 13168035e..883447804 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 059c00153fd9a2d50618d478ca80a63b71d14794..1d991c73b6a923aeeee432605d934888dc5f7150 100644 GIT binary patch delta 15 WcmX@he3p4a4U4griSfn;Uq%2dIRyj& delta 15 WcmX@he3p4a4U3_bvE{}FUq%2dK?Mf@ diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index 17f45f8f1..0eedae7aa 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index d7e1937a7..1b5ac3029 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 9d3c6935aca89b016376b4c41cfdea3238c22cad..ad1cc47605673825cbe8d5a76f7e3de35c8d72cb 100644 GIT binary patch delta 15 WcmX@Ye1v&I4U4griSfn;7e)XpD+K8P delta 15 WcmX@Ye1v&I4U3_bvE{}F7e)XpGX(4a diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index 773333d4f..f89e80bad 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index a2a17be721490d8832cb65c526c74f104bb3e5e6..945c9ab2aa5e14fc742d46eeb6bf049925c5cef3 100644 GIT binary patch delta 15 WcmX@ge3W@Y4U4griSfn;S4IFUNd)Ww delta 15 WcmX@ge3W@Y4U3_bvE{}FS4IFUQ3US* diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index e23b122d2..0e5ae28b6 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index 495f17f56576331cd38080a395fdd50624d35d1e..415fe5c552c11f34f635bf9053de67a49179e282 100644 GIT binary patch delta 15 WcmX@be2RHO4U4griSfn;FGc_>-vs*r delta 15 WcmX@be2RHO4U3_bvE{}FFGc_>=LG%$ diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po index 517f3d46e..02417b17d 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index fd04cf25477f643b9439f2867d7d288ff100151d..716857e69fccaf14d8baab3754a8832055e56290 100644 GIT binary patch delta 15 Wcmdnayq$SM4U4griSfn;b4CCur3AtN delta 15 Wcmdnayq$SM4U3_bvE{}Fb4CCutpvpY diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index e3ae23d77..f5b3ea3b4 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index 0c4d9e863ae98f99d90d0595357eddeb8fbf91ac..693f6667876dee9eaa0bbaf24263099466ff01da 100644 GIT binary patch delta 15 WcmdnWyp?%E4U4griSfn;Q$_$OX#~6g delta 15 WcmdnWyp?%E4U3_bvE{}FQ$_$OaRk2r diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 43fb5e3b0..247d2f5f5 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index fad8b8d77c623c51bfa7d00c7ab94b1abbb162c5..904fcd4c50f2b6c63eca14b65883a84a8c485df2 100644 GIT binary patch delta 15 WcmZ3_yq, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index 5b314dd5e..b98a8a17a 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 34dea4d551530c2ba003849d87f0d335053b3fbd..6b4de779a9c8fbcf309a350c97f2b140a6074596 100644 GIT binary patch delta 17 YcmZo*Z(!e0&B$VGWn#R!o{^CW04s$ANdN!< delta 17 YcmZo*Z(!e0&B$VCWo)^*o{^CW04tCLOaK4? diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 389b18631..4ef2a1ed6 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 6a11145a5..751889715 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index d089cd18a..6724ec864 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index 4ca26a2e3..3baba0d53 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index eebe1ed11f17718ea557b47b84669b4dce6c70b5..e843c852f6d19b49c1897b55ea806fe165ffbd6a 100644 GIT binary patch delta 15 WcmZ3-ypDN74U4griSfn;Jw^a1mjtH( delta 15 WcmZ3-ypDN74U3_bvE{}FJw^a1p9HD^ diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index f79c7ef7b..2ba1ef25d 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index f4ccad40711f96dd65af2c8ecdcb81473c889819..eabd08ba7e9c637836035f4a814fc0bc9cea7241 100644 GIT binary patch delta 15 WcmZ3@yqbAJ4U4griSfn;ZAJhnJp`Tr delta 15 WcmZ3@yqbAJ4U3_bvE{}FZAJhnMFgP$ diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 3bed73a0a..c8980b0d7 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index 5110d191d..63c49afa1 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Moo , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 585fa05fc08a17804ca290b1187552f4ba00dda5..a4d9aad497af3ff7a01119878d3f52850486b60e 100644 GIT binary patch delta 15 WcmdnSyp4H64U4griSfn;Ge!U@hXlU> delta 15 WcmdnSyp4H64U3_bvE{}FGe!U@j|9R1 diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 9e58c4e05..6e4052023 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index 114afa2592e339b7cf5c7e70b47e80ffd85af63b..446564797960fda959ac1b1190abdbea201203c2 100644 GIT binary patch delta 15 WcmX@We1LgE4U4griSfn;2SxxYvjp7$ delta 15 WcmX@We1LgE4U3_bvE{}F2SxxYy9D3> diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index 157356134..b7288c995 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 0e6986f01f515e28d0a16bc2661d5243a41a7b6b..ac8a61e3d6b3fa6cf3986e96aa02d8b41bf003ce 100644 GIT binary patch delta 17 YcmeBS?_u9i&B$VGWn#R!o{^Uc04*H^Z2$lO delta 17 YcmeBS?_u9i&B$VCWo)^*o{^Uc04*p4Z~y=R diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index 366b3b89c..f8ce056f2 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index 861052e5d..3da130c42 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 2ba690e60de30d3b83f5c9f57dba2d4639978bf3..09360aa47caf1f45bc82a81aea191cbc8748cd6e 100644 GIT binary patch delta 15 Wcmcb{a*bs|4U4griSfpUYm5LcVFjT8 delta 15 Wcmcb{a*bs|4U3_bvE{~wYm5LcX$7PJ diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 2b1aaf0a9..55c1ade92 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 641913e55..0d73a3d20 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 3cb205b37..04ab1973a 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index 08bedf1948f7a471c18a893173bbb874f1cf1137..12d95eda55a4eed84f787641c7f91e758a816d58 100644 GIT binary patch delta 17 YcmdnRzKeZBH6x3$m5K4@dPZv|05drR_W%F@ delta 17 YcmdnRzKeZBH6x3mm9gdKdPZv|05e1c`Tzg` diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 95f55b0ed..f00976693 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 3b05743c1..9bf914f77 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 5aa1b7789..7f51ae792 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 6e7a9ef1b7e81795c3858439fbd0aea14abef57f..44374f5ffd3e7b3ef6600538c08565dc483c4027 100644 GIT binary patch delta 15 WcmaFE{Dyf#4U4griSfpU97X^y+XZ0& delta 15 WcmaFE{Dyf#4U3_bvE{~w97X^y;{{{@ diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index a5f08fd9d..b97373641 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index e6f493596..4b506a661 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Slobodan Simić , 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index a25b74d3114c4801fe82113fc546ad7b634451a9..3a22b51cc9c37aa9f137653bf5d09240967c99b4 100644 GIT binary patch delta 15 WcmbQjGKFPA4U4griSfpUDU1Lnr3Bjm delta 15 WcmbQjGKFPA4U3_bvE{~wDU1Lntpwfx diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index 32d91575d..fc49c6497 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 7dd4da70e950da5d24b4d7470ce4c90fb4baf1a6..346131bd07a7d7e8e6e76f56632988cd0f5da8e0 100644 GIT binary patch delta 15 WcmdnSyp4H64U4griSfn;Ge!U@hXlU> delta 15 WcmdnSyp4H64U3_bvE{}FGe!U@j|9R1 diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index e3c4bbbf2..3672a7891 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 939a454f632d4f00e9f64aa06c5721782812dcf6..3a4f50a968432de6407fd25930dab896676e20d0 100644 GIT binary patch delta 15 WcmZ3(yoPx~4U4griSfn;9Yz2sTLhs1 delta 15 WcmZ3(yoPx~4U3_bvE{}F9Yz2sV+5oC diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index 025baa7ac..aff3bafa1 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index a9a8947db..2b2a2fdc6 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 970230484c145f15138e4cc9f917f0331448278f..9088b3114326b8c512600784f24f6562c6d3ec7d 100644 GIT binary patch delta 15 WcmZo-X=0gB!(wb@V!W}Ti4g!Ki3Ftp delta 15 WcmZo-X=0gB!(wPyq0-F4U4griSfn;T}A*Xc?6^Y delta 15 WcmZ3>yq0-F4U3_bvE{}FT}A*Xfdr=j diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index d218e51d1..0b18a5716 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 085504469..af7e9b50f 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index a0d43044c..13bd8c560 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 01:39+0000\n" +"POT-Creation-Date: 2017-07-02 03:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From 6291cc9db120152ad468ab0674b2cd5b68b95054 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Mon, 3 Jul 2017 02:51:00 +0000 Subject: [PATCH 14/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 520 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ast/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 440 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ca/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/da/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/de/LC_MESSAGES/dummypythonqt.po | 2 +- .../dummypythonqt/lang/dummypythonqt.pot | 2 +- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 461 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 452 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 453 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 458 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 437 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 431 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 454 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 456 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 439 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 436 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/hu/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 896 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/is/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ja/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 430 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 427 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/lt/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 448 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 908 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 598 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 954 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ru/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 492 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 532 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 438 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 428 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 514 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 435 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 429 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 2 +- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 2 +- 84 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 6bfbc98e07cac41e736f9b56ad55cec6c283cb61..89103b9fc8e79adaecc4e801d0fc25f3a8ea709a 100644 GIT binary patch delta 15 WcmeBR>0p^q$zrTvV7Rfin-KscL0p^q$zr5nV7#%mn-KscMg)}r diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 5b28a6618..aa79e272b 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index 50e079392..8ad3fcc29 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: enolp , 2017\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index f61897d939911a3b79ce5dcb7015ea9b63f6e461..5810b5c8b4e65fe49951577f81efa7b41cc87ba4 100644 GIT binary patch delta 15 WcmdnNyn}f{C5y3wf#JqlYeoPl$^@bS delta 15 WcmdnNyn}f{C5w@Qf$_##YeoPl%mkwV diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 9e2076043..aeccde868 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 3b329ea4b..8b835d53e 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Davidmp , 2016\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index 576847fae..39315aad3 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index adcb6e725..2ef0c478a 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: scootergrisen , 2017\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index f8c7fda79..bdda5587c 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 6c0ac2bf4..e86a7cfb5 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index b4c289f157d12f77587585dbeb19b2b6bcfe7b98..623651b28b7e77e593bb2acd2178184e557c5a67 100644 GIT binary patch delta 15 WcmdnOyoGr}C5y3wf#Jqlb4CCtQUsO& delta 15 WcmdnOyoGr}C5w@Qf$_##b4CCtR0Nj* diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 883447804..a0a1e39ac 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo index 1d991c73b6a923aeeee432605d934888dc5f7150..13929285977fc4f5c69c2b6583fd71b720a6bbae 100644 GIT binary patch delta 15 WcmX@he3p4aC5y3wf#Js507d{SKm_3c delta 15 WcmX@he3p4aC5w@Qf$_%L07d{SLImOf diff --git a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po index 0eedae7aa..fbef3574d 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 1b5ac3029..c6ad9cb49 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: strel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index ad1cc47605673825cbe8d5a76f7e3de35c8d72cb..2df0f55989d632e920b77ca3be9f0cb3a34ae4c9 100644 GIT binary patch delta 15 WcmX@Ye1v&IC5y3wf#JqlcSZmzG6co| delta 15 WcmX@Ye1v&IC5w@Qf$_##cSZmzGz7;0 diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po index f89e80bad..0bf137e63 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo index 945c9ab2aa5e14fc742d46eeb6bf049925c5cef3..7edfbd4c559549ed653ab7f8007026ba1eef5f6d 100644 GIT binary patch delta 15 WcmX@ge3W@YC5y3wf#Jql4@LkgPz1>U delta 15 WcmX@ge3W@YC5w@Qf$_##4@LkgQUuBX diff --git a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po index 0e5ae28b6..e4ddecd1f 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo index 415fe5c552c11f34f635bf9053de67a49179e282..c0bdc9dd32667e403755753d4847476b25f29e06 100644 GIT binary patch delta 15 WcmX@be2RHOC5y3wf#JqlUq%2b<^ diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po index 2a5e27fc6..5eda8fd4b 100644 --- a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo index 16956c816c658dc0e0087bf4f90989b5f52765ff..267f72a1d5b6ca12b854889dc73417c27fc3b0e3 100644 GIT binary patch delta 15 WcmX@ce2jTQC5y3wf#JqlPeuSLZUoE# delta 15 WcmX@ce2jTQC5w@Qf$_##PeuSLa0JZ& diff --git a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po index 8d077c9d2..039d7178a 100644 --- a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo index af40fdddf4536625ee559298a10ee975e659b040..5d9ac8564da3dab20e05b1cacbb7532c82fd4f86 100644 GIT binary patch delta 15 WcmdnOyoGr}C5y3wf#Jqlb4CCtQUsO& delta 15 WcmdnOyoGr}C5w@Qf$_##b4CCtR0Nj* diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po index f8476cca1..c3e7786a8 100644 --- a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo index 57b7adf131ee74945013981e7a8880139900bd2d..e89b41257af979fc77b6788118ca466d8bb9c220 100644 GIT binary patch delta 15 WcmX@Xe1dsGC5y3wf#JqlZ$, 2016\n" "Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index b98a8a17a..892d5cb8c 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Lajos Pasztor , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 6b4de779a9c8fbcf309a350c97f2b140a6074596..219d010fce6512f8af46a320e462dbc8f44ef16b 100644 GIT binary patch delta 17 YcmZo*Z(!e0!N_8)U|_hphLME{04ieyCIA2c delta 17 YcmZo*Z(!e0!N_8yU|_tthLME{04in#CjbBd diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 4ef2a1ed6..0a84e5d54 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kukuh Syafaat , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 751889715..ec4db184f 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kristján Magnússon , 2017\n" "Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po index 6724ec864..80131f589 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Saverio , 2016\n" "Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index 3baba0d53..66443d7cc 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Takefumi Nagata , 2016\n" "Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index e843c852f6d19b49c1897b55ea806fe165ffbd6a..a3c73b12831b474698b64790038e0708cf5a2bb1 100644 GIT binary patch delta 15 WcmZ3-ypDN7C5y3wf#JqlLq-56o&, 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index a4d9aad497af3ff7a01119878d3f52850486b60e..20fc45a6a6915db2760ceed2d60dd228540bf70f 100644 GIT binary patch delta 15 WcmdnSyp4H6C5y3wf#JqlOGW@Fjs% diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index f8ce056f2..d17eedee7 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: De Zeeappel , 2016\n" "Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index 3da130c42..56775f80e 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 09360aa47caf1f45bc82a81aea191cbc8748cd6e..fc8f6ec8e373c076da23019bf5f36c4e112eeb41 100644 GIT binary patch delta 15 Wcmcb{a*bs|C5y3wf#Js5n~VT0Xa#-% delta 15 Wcmcb{a*bs|C5w@Qf$_%Ln~VT0Y6X7) diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po index 55c1ade92..71804d37e 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po index 0d73a3d20..d648d5e30 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po index 04ab1973a..6462d9e0e 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Ricardo Simões , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index 12d95eda55a4eed84f787641c7f91e758a816d58..255365834fbb717346c1cff2af21cd8dbe59b11d 100644 GIT binary patch delta 17 YcmdnRzKeZB1tW{Gf`Q@Y8b&)N05TT@)Bpeg delta 17 YcmdnRzKeZB1tW`*f`Reo8b&)N05Tc`)c^nh diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index f00976693..eae72ff2b 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Baadur Jobava , 2016\n" "Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 9bf914f77..7601a6d5a 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Вадим Сабынич , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 7f51ae792..7c7ec4c5e 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Dušan Kazik , 2016\n" "Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 44374f5ffd3e7b3ef6600538c08565dc483c4027..6a2fade9d5699d8f71ca996b531edfca8ca85813 100644 GIT binary patch delta 15 WcmaFE{Dyf#C5y3wf#Js5d`18+;srhc delta 15 WcmaFE{Dyf#C5w@Qf$_%Ld`18+, 2017\n" "Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo index 3a22b51cc9c37aa9f137653bf5d09240967c99b4..40465ae481c67fb2cc1e3db5a0f1d84583749b6f 100644 GIT binary patch delta 15 WcmbQjGKFPAC5y3wf#Js5>5Kp+tOU3K delta 15 WcmbQjGKFPAC5w@Qf$_%L>5Kp+t^~ON diff --git a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po index fc49c6497..df24670d8 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 346131bd07a7d7e8e6e76f56632988cd0f5da8e0..475f73d3b6960be59e1aa6004658f7a311193858 100644 GIT binary patch delta 15 WcmdnSyp4H6C5y3wf#JqlOGW@Fjs%, 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index 9088b3114326b8c512600784f24f6562c6d3ec7d..b401ea7b19064cf6b08a9c892afa5f115198cfcf 100644 GIT binary patch delta 15 WcmZo-X=0gB$zrTvV7Rfil@S0VkOYDN delta 15 WcmZo-X=0gB$zr5nV7#%ml@S0Vk_3YQ diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index ae0a72501..8e6409fb5 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 572c10a8209d7f54d2aca1781b0f6feb593932b3..0b3ce610da506c6bab3bbf761fe43815966c96fe 100644 GIT binary patch delta 15 WcmdnYyqS4IC5y3wf#JqlGe!U?Gz60X delta 15 WcmdnYyqS4IC5w@Qf$_##Ge!U?HUyLa diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index 7b8160ea3..5cdd23dff 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index 0a342a5832e94dee0e1cb8131842da72a1b95c09..810a317147f9a9b4446f73fe7493e4e29da895a0 100644 GIT binary patch delta 15 WcmZ3>yq0-FC5y3wf#Jql14aNRfCPa6 delta 15 WcmZ3>yq0-FC5w@Qf$_##14aNRf&_v9 diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index 0b18a5716..dea118a29 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" "MIME-Version: 1.0\n" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index af7e9b50f..457a7224d 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po index 13bd8c560..ac17673da 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-02 03:43+0000\n" +"POT-Creation-Date: 2017-07-03 01:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Jeff Huang , 2016\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" From 4885b4afec73c8b821607341f59764d4b454afa6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 3 Jul 2017 05:23:58 -0400 Subject: [PATCH 15/23] i18n: reduce noise-only commits from Transifex --- ci/txpull.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ci/txpull.sh b/ci/txpull.sh index 44a7d846b..624da0bd4 100755 --- a/ci/txpull.sh +++ b/ci/txpull.sh @@ -10,16 +10,22 @@ git config --global http.sslVerify false export QT_SELECT=5 tx pull --force --source --all + git add --verbose lang/calamares*.ts git commit --author='Calamares CI ' --message='[core] Automatic merge of Transifex translations' | true +# Transifex updates the PO-Created timestamp also when nothing interesting +# has happened, so drop the files which have just 1 line changed (the +# PO-Created line). This applies only to modules which use po-files. +git diff --numstat src/modules | awk '($1==1 && $2==1){print $3}' | xargs git checkout -- + for MODULE_DIR in `find src/modules -maxdepth 1 -mindepth 1 -type d`; do FILES=(${MODULE_DIR}/*.py) if [ ${#FILES[@]} -gt 0 ]; then MODULE_NAME=$(basename ${MODULE_DIR}) if [ -d ${MODULE_DIR}/lang ]; then # Convert PO files to MO files - for POFILE in `find . -name "*.po"` ; do + for POFILE in `find ${MODULE_DIR} -name "*.po"` ; do msgfmt -o ${POFILE/.po/.mo} $POFILE done git add --verbose ${MODULE_DIR}/lang/* From 9b3af4aac3b3335594ff9d0a8b3f0ac8cceb2624 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 3 Jul 2017 05:40:53 -0400 Subject: [PATCH 16/23] i18n: translate yes/no buttons, don't rely on Qt translations --- src/libcalamaresui/ViewManager.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/libcalamaresui/ViewManager.cpp b/src/libcalamaresui/ViewManager.cpp index 98476767c..7c9f1897d 100644 --- a/src/libcalamaresui/ViewManager.cpp +++ b/src/libcalamaresui/ViewManager.cpp @@ -94,12 +94,16 @@ ViewManager::ViewManager( QObject* parent ) if ( !( m_currentStep == m_steps.count() -1 && m_steps.last()->isAtEnd() ) ) { - int response = QMessageBox::question( m_widget, + QMessageBox mb( QMessageBox::Question, tr( "Cancel installation?" ), tr( "Do you really want to cancel the current install process?\n" "The installer will quit and all changes will be lost." ), QMessageBox::Yes | QMessageBox::No, - QMessageBox::No ); + m_widget ); + mb.setDefaultButton( QMessageBox::No ); + mb.button( QMessageBox::Yes )->setText( tr( "&Yes" ) ); + mb.button( QMessageBox::No )->setText( tr( "&No" ) ); + int response = mb.exec(); if ( response == QMessageBox::Yes ) qApp->quit(); } From 5704719ea4672da80cd9976a3cfaf0d2d2c086bd Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 3 Jul 2017 08:16:09 -0400 Subject: [PATCH 17/23] CMake: minor styling --- CMakeLists.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca0aab5f4..707f6ab25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,11 +57,11 @@ find_package( PolkitQt5-1 REQUIRED ) option( WITH_PYTHON "Enable Python modules API (requires Boost.Python)." ON ) option( WITH_CRASHREPORTER "Build with CrashReporter" ON ) -option( INSTALL_CONFIG "Install configuration files" ON) +option( INSTALL_CONFIG "Install configuration files" ON ) option( WITH_PYTHONQT "Enable next generation Python modules API (experimental, requires PythonQt)." OFF ) -option(BUILD_TESTING "Build the testing tree." ON) +option( BUILD_TESTING "Build the testing tree." ON ) -if(BUILD_TESTING) +if( BUILD_TESTING ) enable_testing() endif () @@ -102,10 +102,10 @@ if ( PYTHONLIBS_FOUND ) ) endif() -if ( PYTHONLIBS_NOTFOUND OR NOT CALAMARES_BOOST_PYTHON3_FOUND ) +if( PYTHONLIBS_NOTFOUND OR NOT CALAMARES_BOOST_PYTHON3_FOUND ) set( WITH_PYTHON OFF ) endif() -if ( PYTHONLIBS_NOTFOUND OR NOT PYTHONQT_FOUND ) +if( PYTHONLIBS_NOTFOUND OR NOT PYTHONQT_FOUND ) set( WITH_PYTHONQT OFF ) endif() @@ -185,15 +185,15 @@ add_subdirectory( src ) macro_display_feature_log() -if ( NOT WITH_PYTHON ) +if( NOT WITH_PYTHON ) message( "-- WARNING: Building Calamares without Python support. Legacy Python job modules will not work.\n" ) endif() -if ( NOT WITH_PYTHONQT ) +if( NOT WITH_PYTHONQT ) message( "-- WARNING: Building Calamares without PythonQt support. Python modules will not work.\n" ) endif() -if ( NOT INSTALL_CONFIG ) +if( NOT INSTALL_CONFIG ) message( "-- WARNING: Configuration files will not be installed.\n" ) endif() @@ -238,7 +238,7 @@ install( "${CMAKE_INSTALL_CMAKEDIR}" ) -if (INSTALL_CONFIG) +if( INSTALL_CONFIG ) install( FILES settings.conf From ef8cbcf526bee75c4bf7b00e8023731ce8ea6af8 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 3 Jul 2017 09:18:09 -0400 Subject: [PATCH 18/23] Coverity: add (stub) modeling file --- ci/coverity-model.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ci/coverity-model.c diff --git a/ci/coverity-model.c b/ci/coverity-model.c new file mode 100644 index 000000000..b4282397c --- /dev/null +++ b/ci/coverity-model.c @@ -0,0 +1,6 @@ +/* Model file for Coverity checker. + See https://scan.coverity.com/tune + + Calamares doesn't seem to geenerate any false positives, + so the model-file is empty. +*/ From 79595eb53264a71cd7391d505cf3d9cb43a6f318 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 3 Jul 2017 09:21:05 -0400 Subject: [PATCH 19/23] Coverity: explicitly initialize --- src/modules/partition/tests/PartitionJobTests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/partition/tests/PartitionJobTests.cpp b/src/modules/partition/tests/PartitionJobTests.cpp index 8521f4224..5a09bbab5 100644 --- a/src/modules/partition/tests/PartitionJobTests.cpp +++ b/src/modules/partition/tests/PartitionJobTests.cpp @@ -121,6 +121,8 @@ firstFreePartition( PartitionNode* parent ) //- QueueRunner --------------------------------------------------------------- QueueRunner::QueueRunner( JobQueue* queue ) : m_queue( queue ) + , m_finished( false ) // Same initalizations as in ::run() + , m_success( true ) { connect( m_queue, &JobQueue::finished, this, &QueueRunner::onFinished ); connect( m_queue, &JobQueue::failed, this, &QueueRunner::onFailed ); From da75035654a041bbb1ea9a1f6b52d8fb7796f01c Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 3 Jul 2017 10:26:59 -0400 Subject: [PATCH 20/23] Cleanup: summary module description --- src/modules/summary/module.desc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/modules/summary/module.desc b/src/modules/summary/module.desc index fcd8c6f86..2fedbaabf 100644 --- a/src/modules/summary/module.desc +++ b/src/modules/summary/module.desc @@ -1,4 +1,9 @@ -# Module metadata file for keyboard viewmodule +# Module metadata file for summary viewmodule +# +# The summary module tells the user what is going to happen (next) +# during the installation. Each other step is responsible for +# creating a summary widget that this step can display. +# # Syntax is YAML 1.2 --- type: "view" From 6f680c0269f092a05507841071386d93ed9e05bd Mon Sep 17 00:00:00 2001 From: Kai Dohmen Date: Mon, 3 Jul 2017 17:20:02 +0200 Subject: [PATCH 21/23] Fix unknown partition-type Fat32 at mount and in fstab Only the string "fat32" and "fat16" will be replaced with vfat. If an case sensitive "Fat32" some problems occure: - mount: partition cannot be mounted (e.g. a fat32 efi partition) - fstab: system won't even boot because fstab does not know the type "Fat32" --- src/modules/fstab/main.py | 2 +- src/modules/mount/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/fstab/main.py b/src/modules/fstab/main.py index 384dadbb6..9c116b8a0 100644 --- a/src/modules/fstab/main.py +++ b/src/modules/fstab/main.py @@ -224,7 +224,7 @@ class FstabGenerator(object): def generate_fstab_line_info(self, partition): """ Generates information for each fstab entry. """ - filesystem = partition["fs"] + filesystem = partition["fs"].lower() mount_point = partition["mountPoint"] disk_name = disk_name_for_partition(partition) is_ssd = disk_name in self.ssd_disks diff --git a/src/modules/mount/main.py b/src/modules/mount/main.py index 68f042af9..c32c5bfdd 100644 --- a/src/modules/mount/main.py +++ b/src/modules/mount/main.py @@ -38,7 +38,7 @@ def mount_partitions(root_mount_point, partitions): # Create mount point with `+` rather than `os.path.join()` because # `partition["mountPoint"]` starts with a '/'. mount_point = root_mount_point + partition["mountPoint"] - fstype = partition.get("fs", "") + fstype = partition.get("fs", "").lower() if fstype == "fat16" or fstype == "fat32": fstype = "vfat" From 9d2f8cac3c617d73276dbbb0fb03dcaf05b71ea6 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Tue, 4 Jul 2017 01:22:26 +0000 Subject: [PATCH 22/23] [core] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 30 +- lang/calamares_ast.ts | 30 +- lang/calamares_bg.ts | 30 +- lang/calamares_ca.ts | 30 +- lang/calamares_cs_CZ.ts | 30 +- lang/calamares_da.ts | 30 +- lang/calamares_de.ts | 30 +- lang/calamares_el.ts | 30 +- lang/calamares_en.ts | 30 +- lang/calamares_en_GB.ts | 30 +- lang/calamares_es.ts | 30 +- lang/calamares_es_ES.ts | 30 +- lang/calamares_es_MX.ts | 30 +- lang/calamares_es_PR.ts | 30 +- lang/calamares_et.ts | 30 +- lang/calamares_eu.ts | 30 +- lang/calamares_fa.ts | 30 +- lang/calamares_fi_FI.ts | 30 +- lang/calamares_fr.ts | 30 +- lang/calamares_fr_CH.ts | 30 +- lang/calamares_gl.ts | 30 +- lang/calamares_gu.ts | 30 +- lang/calamares_he.ts | 2261 ++++++++++++++++++++++++++++++++++++ lang/calamares_hi.ts | 30 +- lang/calamares_hr.ts | 30 +- lang/calamares_hu.ts | 30 +- lang/calamares_id.ts | 30 +- lang/calamares_is.ts | 30 +- lang/calamares_it_IT.ts | 30 +- lang/calamares_ja.ts | 30 +- lang/calamares_kk.ts | 30 +- lang/calamares_lo.ts | 30 +- lang/calamares_lt.ts | 30 +- lang/calamares_mr.ts | 30 +- lang/calamares_nb.ts | 30 +- lang/calamares_nl.ts | 36 +- lang/calamares_pl.ts | 30 +- lang/calamares_pl_PL.ts | 30 +- lang/calamares_pt_BR.ts | 30 +- lang/calamares_pt_PT.ts | 30 +- lang/calamares_ro.ts | 30 +- lang/calamares_ru.ts | 30 +- lang/calamares_sk.ts | 30 +- lang/calamares_sl.ts | 30 +- lang/calamares_sr.ts | 30 +- lang/calamares_sr@latin.ts | 30 +- lang/calamares_sv.ts | 30 +- lang/calamares_th.ts | 30 +- lang/calamares_tr_TR.ts | 30 +- lang/calamares_uk.ts | 30 +- lang/calamares_ur.ts | 30 +- lang/calamares_uz.ts | 30 +- lang/calamares_zh_CN.ts | 30 +- lang/calamares_zh_TW.ts | 30 +- 54 files changed, 3324 insertions(+), 533 deletions(-) create mode 100644 lang/calamares_he.ts diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 039e594cb..033f74f83 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &إلغاء - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. سيخرج المثبّت وتضيع كلّ التّغييرات. - + + &Yes + + + + + &No + + + + Continue with setup? الإستمرار في التثبيت؟ - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> مثبّت %1 على وشك بإجراء تعديلات على قرصك لتثبيت %2.<br/><strong>لن تستطيع التّراجع عن هذا.</strong> - + &Install now &ثبت الأن - + Go &back &إرجع - + &Done - + The installation is complete. Close the installer. - + Error خطأ - + Installation Failed فشل التثبيت diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index eafcd79ed..f938cb024 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel &Encaboxar - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. L'instalador colará y perderánse toles camudancies. - + + &Yes + + + + + &No + + + + Continue with setup? ¿Siguir cola configuración? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> L'instalador %1 ta a piques de facer camudancies al to discu pa instalar %2.<br/><strong>Nun sedrás capaz a desfacer estes camudancies.</strong> - + &Install now &Instalar agora - + Go &back &Dir p'atrás - + &Done - + The installation is complete. Close the installer. - + Error Fallu - + Installation Failed Instalación fallida diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 4d70b9f6b..6853e8c43 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Отказ - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Инсталатора ще прекъсне и всичките промени ще бъдат загубени. - + + &Yes + + + + + &No + + + + Continue with setup? Продължаване? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Инсталатора на %1 ще направи промени по вашия диск за да инсталира %2. <br><strong>Промените ще бъдат окончателни.</strong> - + &Install now &Инсталирай сега - + Go &back В&ръщане - + &Done - + The installation is complete. Close the installer. - + Error Грешка - + Installation Failed Неуспешна инсталация diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 2b047ce32..8c7f64b4c 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -232,13 +232,13 @@ Sortida: - + &Cancel &Cancel·la - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. L'instal·lador es tancarà i tots els canvis es perdran. - + + &Yes + + + + + &No + + + + Continue with setup? Voleu continuar la configuració? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> L'instal·lador de %1 està a punt de fer canvis al disc per tal d'instal·lar-hi %2.<br/><strong>No podreu desfer aquests canvis.</strong> - + &Install now &Instal·la ara - + Go &back Vés &enrere - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed La instal·lació ha fallat diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index 4b740eb35..b9c3d7c9f 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -232,13 +232,13 @@ Výstup: - + &Cancel &Zrušit - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Instalační program bude ukončen a všechny změny ztraceny. - + + &Yes + + + + + &No + + + + Continue with setup? Pokračovat s instalací? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Instalační program %1 provede změny na disku, aby se nainstaloval %2.<br/><strong>Změny nebude možné vrátit zpět.</strong> - + &Install now &Spustit instalaci - + Go &back Jít &zpět - + &Done - + The installation is complete. Close the installer. - + Error Chyba - + Installation Failed Instalace selhala diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index b9c47794c..4c9741609 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Annullér - + Cancel installation without changing the system. Annullér installation uden at ændre systemet. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. - + + &Yes + + + + + &No + + + + Continue with setup? Fortsæt med installation? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1-installationsprogrammet er ved at lave ændringer til din disk for at installere %2. <br/><strong>Det vil ikke være muligt at fortryde disse ændringer.</strong> - + &Install now &Installér nu - + Go &back Gå &tilbage - + &Done &Færdig - + The installation is complete. Close the installer. Installationen er fuldført. Luk installationsprogrammet. - + Error Fejl - + Installation Failed Installation mislykkedes diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index a6c25a9aa..63481d53c 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -232,13 +232,13 @@ Ausgabe: - + &Cancel &Abbrechen - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. - + + &Yes + + + + + &No + + + + Continue with setup? Setup fortsetzen? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Das %1 Installationsprogramm wird Änderungen an Ihrer Festplatte vornehmen, um %2 zu installieren.<br/><strong>Diese Änderungen können nicht rückgängig gemacht werden.</strong> - + &Install now Jetzt &installieren - + Go &back Gehe &zurück - + &Done - + The installation is complete. Close the installer. - + Error Fehler - + Installation Failed Installation gescheitert diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index 65a56e1a9..371bad5b1 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Ακύρωση - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Το πρόγραμμα εγκατάστασης θα τερματιστεί και όλες οι αλλαγές θα χαθούν. - + + &Yes + + + + + &No + + + + Continue with setup? Συνέχεια με την εγκατάσταση; - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Το πρόγραμμα εγκατάστασης %1 θα κάνει αλλαγές στον δίσκο για να εγκαταστήσετε το %2.<br/><strong>Δεν θα είστε σε θέση να αναιρέσετε τις αλλαγές.</strong> - + &Install now Ε&γκατάσταση τώρα - + Go &back Μετάβαση πί&σω - + &Done - + The installation is complete. Close the installer. - + Error Σφάλμα - + Installation Failed Η εγκατάσταση απέτυχε diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index 68a9641ba..a67d7336a 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Cancel - + Cancel installation without changing the system. Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. The installer will quit and all changes will be lost. - + + &Yes + &Yes + + + + &No + &No + + + Continue with setup? Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Install now - + Go &back Go &back - + &Done &Done - + The installation is complete. Close the installer. The installation is complete. Close the installer. - + Error Error - + Installation Failed Installation Failed diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index c0b7e064c..32584b18f 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Cancel - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Install now - + Go &back Go &back - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed Installation Failed diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 025fbf06b..49221603a 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -233,13 +233,13 @@ Salida: - + &Cancel &Cancelar - + Cancel installation without changing the system. Cancelar instalación sin cambiar el sistema. @@ -256,42 +256,52 @@ The installer will quit and all changes will be lost. Saldrá del instalador y se perderán todos los cambios. - + + &Yes + &Sí + + + + &No + &No + + + Continue with setup? ¿Continuar con la configuración? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> El instalador %1 va a realizar cambios en su disco para instalar %2.<br/><strong>No podrá deshacer estos cambios.</strong> - + &Install now &Instalar ahora - + Go &back Regresar - + &Done &Hecho - + The installation is complete. Close the installer. La instalación se ha completado. Cierre el instalador. - + Error Error - + Installation Failed Error en la Instalación diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index 39b428086..d3da4477d 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel &Cancelar - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. El instalador se cerrará y se perderán todos los cambios. - + + &Yes + + + + + &No + + + + Continue with setup? ¿Continuar con la configuración? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Instalar ahora - + Go &back Volver atrás. - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed La instalación ha fallado diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 956f7b713..d71161a02 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel &Cancelar - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. El instalador terminará y se perderán todos los cambios. - + + &Yes + + + + + &No + + + + Continue with setup? Continuar con la instalación? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> El instalador %1 va a realizar cambios en su disco para instalar %2.<br/><strong>No podrá deshacer estos cambios.</strong> - + &Install now &Instalar ahora - + Go &back &Regresar - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed Instalación Fallida diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index 76a09cd44..56976def2 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -232,13 +232,13 @@ Salida: - + &Cancel - + Cancel installation without changing the system. @@ -254,42 +254,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Error - + Installation Failed Falló la instalación diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index af564e793..dc21b94a2 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Viga - + Installation Failed diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 6b455a17a..a069117d9 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -230,13 +230,13 @@ Output: - + &Cancel &Utzi - + Cancel installation without changing the system. @@ -252,42 +252,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? Ezarpenarekin jarraitu? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Instalatu orain - + Go &back &Atzera - + &Done - + The installation is complete. Close the installer. - + Error Akatsa - + Installation Failed Instalazioak huts egin du diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index f917989ad..942070280 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index 6a8536d04..adf524713 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -232,13 +232,13 @@ Tuloste: - + &Cancel &Peruuta - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Virhe - + Installation Failed Asennus Epäonnistui diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index bf86fe6bb..525c3c175 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -232,13 +232,13 @@ Sortie : - + &Cancel &Annuler - + Cancel installation without changing the system. Annuler l'installation sans modifier votre système. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. L'installateur se fermera et les changements seront perdus. - + + &Yes + &Oui + + + + &No + &Non + + + Continue with setup? Poursuivre la configuration ? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> L'installateur %1 est sur le point de procéder aux changements sur le disque afin d'installer %2.<br/> <strong>Vous ne pourrez pas annulez ces changements.<strong> - + &Install now &Installer maintenant - + Go &back &Retour - + &Done &Terminé - + The installation is complete. Close the installer. L'installation est terminée. Fermer l'installateur. - + Error Erreur - + Installation Failed L'installation a échoué diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 03dfd60d8..a286b75e9 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index d1d6f9af0..676b4b524 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -233,13 +233,13 @@ Saída: - + &Cancel &Cancelar - + Cancel installation without changing the system. @@ -256,42 +256,52 @@ The installer will quit and all changes will be lost. O instalador pecharase e perderanse todos os cambios. - + + &Yes + + + + + &No + + + + Continue with setup? Continuar coa posta en marcha? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> O %1 instalador está a piques de realizar cambios no seu disco para instalar %2.<br/><strong>Estes cambios non poderán desfacerse.</strong> - + &Install now &Instalar agora - + Go &back Ir &atrás - + &Done - + The installation is complete. Close the installer. - + Error Erro - + Installation Failed Erro na instalación diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index 59d68e515..13d879b5e 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts new file mode 100644 index 000000000..6b016700c --- /dev/null +++ b/lang/calamares_he.ts @@ -0,0 +1,2261 @@ + + + BootInfoWidget + + + The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. + + + + + This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. + + + + + This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. + + + + + BootLoaderModel + + + Master Boot Record of %1 + + + + + Boot Partition + + + + + System Partition + מחיצת מערכת + + + + Do not install a boot loader + אל תתקין מנהל אתחול, boot loader + + + + %1 (%2) + %1 (%2) + + + + Calamares::DebugWindow + + + Form + + + + + GlobalStorage + אחסון גלובלי + + + + JobQueue + + + + + Modules + + + + + Type: + סוג: + + + + + none + ללא + + + + Interface: + ממשק: + + + + Tools + כלים + + + + Debug information + מידע על ניפוי שגיאות + + + + Calamares::ExecutionViewStep + + + Install + התקן + + + + Calamares::JobThread + + + Done + בוצע + + + + Calamares::ProcessJob + + + Run command %1 %2 + הרץ פקודה %1 %2 + + + + Running command %1 %2 + מריץ פקודה %1 %2 + + + + External command crashed + פקודה חיצונית קרסה + + + + Command %1 crashed. +Output: +%2 + פקודה %1 קרסה. +פלט: +%2 + + + + External command failed to start + הרצת פקודה חיצונית כשלה + + + + Command %1 failed to start. + הרצת פקודה %1 כשלה. + + + + Internal error when starting command + שגיאה פנימית בעת התחלת הרצת הפקודה + + + + Bad parameters for process job call. + + + + + External command failed to finish + פקודה חיצונית כשלה בעת סוף הרצת הפקודה + + + + Command %1 failed to finish in %2s. +Output: +%3 + + + + + External command finished with errors + + + + + Command %1 finished with exit code %2. +Output: +%3 + + + + + Calamares::PythonJob + + + Running %1 operation. + + + + + Bad working directory path + + + + + Working directory %1 for python job %2 is not readable. + + + + + Bad main script file + + + + + Main script file %1 for python job %2 is not readable. + + + + + Boost.Python error in job "%1". + + + + + Calamares::ViewManager + + + &Back + &קודם + + + + &Next + &הבא + + + + + &Cancel + &בטל + + + + + Cancel installation without changing the system. + בטל התקנה ללא ביצוע שינוי במערכת. + + + + Cancel installation? + בטל את ההתקנה? + + + + Do you really want to cancel the current install process? +The installer will quit and all changes will be lost. + האם אתה בטוח שברצונך לבטל את תהליך ההתקנה? +אשף ההתקנה ייסגר וכלל השינויים יאבדו. + + + + &Yes + &כן + + + + &No + &לא + + + + Continue with setup? + המשך עם תהליך ההתקנה? + + + + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> + אשף ההתקנה של %1 הולך לבצע שינויים בכונן שלך לטובת התקנת %2.<br/><strong>לא תוכל לבטל את השינויים הללו.</strong> + + + + &Install now + &התקן כעת + + + + Go &back + + + + + &Done + &בוצע + + + + The installation is complete. Close the installer. + תהליך ההתקנה הושלם. אנא סגור את אשף ההתקנה. + + + + Error + שגיאה + + + + Installation Failed + ההתקנה נכשלה + + + + CalamaresPython::Helper + + + Unknown exception type + + + + + unparseable Python error + + + + + unparseable Python traceback + + + + + Unfetchable Python error. + + + + + CalamaresWindow + + + %1 Installer + אשף התקנה של %1 + + + + Show debug information + הצג מידע על ניפוי שגיאות + + + + CheckFileSystemJob + + + Checking file system on partition %1. + בודק את מערכת הקבצים על מחיצה %1. + + + + The file system check on partition %1 failed. + בדיקת מערכת הקבצים על מחיצה %1 נכשלה. + + + + CheckerWidget + + + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> + המחשב לא עומד ברף דרישות המינימום להתקנת %1. <br/>ההתקנה לא יכולה להמשיך. <a href="#details"> פרטים...</a> + + + + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. + המחשב לא עומד בחלק מרף דרישות המינימום להתקנת %1.<br/> ההתקנה יכולה להמשיך, אך חלק מהתכונות יכולות להיות מבוטלות. + + + + This program will ask you some questions and set up %2 on your computer. + תוכנה זו תשאל אותך מספר שאלות ותגדיר את %2 על המחשב שלך. + + + + For best results, please ensure that this computer: + לקבלת התוצאות הטובות ביותר, אנא וודא כי מחשב זה: + + + + System requirements + דרישות מערכת + + + + ChoicePage + + + Form + + + + + After: + + + + + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. + <strong>הגדרת מחיצות באופן ידני</strong><br/>תוכל ליצור או לשנות את גודל המחיצות בעצמך. + + + + Boot loader location: + מיקום מנהל האיתחול: + + + + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. + %1 תוקטן ל %2 MB ומחיצה חדשה בגודל %3 MB תיווצר עבור %4. + + + + Select storage de&vice: + בחר ה&תקן אחסון: + + + + + + + Current: + נוכחי: + + + + Reuse %1 as home partition for %2. + השתמש ב %1 כמחיצת הבית, home, עבור %2. + + + + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> + <strong>בחר מחיצה לכיווץ, לאחר מכן גרור את הפס התחתון בכדי לשנות את גודלה</strong> + + + + <strong>Select a partition to install on</strong> + <strong>בחר מחיצה בכדי לבצע את ההתקנה עליה</strong> + + + + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + מחיצת EFI לא נמצאה באף מקום על המערכת. אנא חזור והשתמש ביצירת מחיצות באופן ידני בכדי להגדיר את %1. + + + + The EFI system partition at %1 will be used for starting %2. + מחיצת EFI ב %1 תשמש עבור טעינת %2. + + + + EFI system partition: + מחיצת EFI: + + + + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + לא נמצאה מערכת הפעלה על התקן האחסון הזה. מה ברצונך לעשות?<br/> תוכל לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. + + + + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. + <strong>מחק כונן</strong><br/> פעולה זו <font color="red">תמחק</font> את כל המידע השמור על התקן האחסון הנבחר. + + + + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + נמצא %1 על התקן האחסון הזה. מה ברצונך לעשות?<br/> תוכל לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. + + + + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. + <strong>התקן לצד</strong><br/> אשף ההתקנה יכווץ מחיצה בכדי לפנות מקום עבור %1. + + + + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. + <strong>החלף מחיצה</strong><br/> מבצע החלפה של המחיצה עם %1. + + + + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + מערכת הפעלה קיימת על התקן האחסון הזה. מה ברצונך לעשות?<br/> תוכל לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. + + + + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + מערכות הפעלה מרובות קיימות על התקן אחסון זה. מה ברצונך לעשות? <br/>תוכל לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון. + + + + ClearMountsJob + + + Clear mounts for partitioning operations on %1 + מחק נקודות עיגון עבור ביצוע פעולות של הגדרות מחיצה על %1. + + + + Clearing mounts for partitioning operations on %1. + מבצע מחיקה של נקודות עיגון עבור ביצוע פעולות של הגדרות מחיצה על %1. + + + + Cleared all mounts for %1 + בוצעה מחיקה עבור כל נקודות העיגון על %1. + + + + ClearTempMountsJob + + + Clear all temporary mounts. + מחק את כל נקודות העיגון הזמניות. + + + + Clearing all temporary mounts. + מבצע מחיקה של כל נקודות העיגון הזמניות. + + + + Cannot get list of temporary mounts. + לא ניתן לשלוף רשימה של כל נקודות העיגון הזמניות. + + + + Cleared all temporary mounts. + בוצעה מחיקה של כל נקודות העיגון הזמניות. + + + + CreatePartitionDialog + + + Create a Partition + ייצר מחיצה + + + + Partition &Type: + מחיצה &מסוג: + + + + &Primary + &ראשי + + + + E&xtended + מ&ורחב + + + + Fi&le System: + מ&ערכת קבצים + + + + Flags: + סימונים: + + + + &Mount Point: + נקודת &עיגון: + + + + Si&ze: + גו&דל: + + + + MB + מגה בייט + + + + En&crypt + ה&צפן + + + + Logical + לוגי + + + + Primary + ראשי + + + + GPT + GPT + + + + Mountpoint already in use. Please select another one. + נקודת העיגון בשימוש. אנא בחר אחרת. + + + + CreatePartitionJob + + + Create new %2MB partition on %4 (%3) with file system %1. + הגדר מחיצה חדשה בגודל %2 MB על %4 (%3) עם מערכת קבצים %1. + + + + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. + הגדר מחיצה חדשה בגודל <strong>%2 MB</strong> על <strong>%4</strong> (%3) עם מערכת קבצים <strong>%1</strong>. + + + + Creating new %1 partition on %2. + מגדיר מחיצה %1 חדשה על %2. + + + + The installer failed to create partition on disk '%1'. + אשף ההתקנה נכשל ביצירת מחיצה על כונן '%1'. + + + + Could not open device '%1'. + לא ניתן לפתוח את התקן '%1'. + + + + Could not open partition table. + לא ניתן לפתוח את טבלת המחיצות. + + + + The installer failed to create file system on partition %1. + אשף ההתקנה נכשל בעת יצירת מערכת הקבצים על המחיצה %1. + + + + The installer failed to update partition table on disk '%1'. + אשף ההתקנה נכשל בעת עדכון טבלת המחיצות על כונן '%1'. + + + + CreatePartitionTableDialog + + + Create Partition Table + הגדר טבלת מחיצות + + + + Creating a new partition table will delete all existing data on the disk. + יצירת טבלת מחיצות חדשה תמחק את כל המידע הקיים על הכונן. + + + + What kind of partition table do you want to create? + איזה סוג של טבלת מחיצות ברצונך לייצר? + + + + Master Boot Record (MBR) + Master Boot Record (MBR) + + + + GUID Partition Table (GPT) + GUID Partition Table (GPT) + + + + CreatePartitionTableJob + + + Create new %1 partition table on %2. + הגדר טבלת מחיצות %1 חדשה על %2. + + + + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). + הגדר טבלת מחיצות <strong>%1</strong> חדשה על <strong>%2</strong> (%3). + + + + Creating new %1 partition table on %2. + הגדר טבלת מחיצות %1 חדשה על %2. + + + + The installer failed to create a partition table on %1. + אשף ההתקנה נכשל בעת הגדרת טבלת המחיצות על %1. + + + + Could not open device %1. + לא ניתן לפתוח את ההתקן %1. + + + + CreateUserJob + + + Create user %1 + צור משתמש %1 + + + + Create user <strong>%1</strong>. + צור משתמש <strong>%1</strong>. + + + + Creating user %1. + יוצר משתמש %1. + + + + Sudoers dir is not writable. + תיקיית מנהלי המערכת לא ניתנת לכתיבה. + + + + Cannot create sudoers file for writing. + לא ניתן ליצור את קובץ מנהלי המערכת לכתיבה. + + + + Cannot chmod sudoers file. + לא ניתן לשנות את מאפייני קובץ מנהלי המערכת. + + + + Cannot open groups file for reading. + לא ניתן לפתוח את קובץ הקבוצות לקריאה. + + + + Cannot create user %1. + לא ניתן ליצור את המשתמש %1. + + + + useradd terminated with error code %1. + פקודת יצירת המשתמש, useradd, נכשלה עם קוד יציאה %1. + + + + Cannot add user %1 to groups: %2. + לא ניתן להוסיף את המשתמש %1 לקבוצות: %2. + + + + usermod terminated with error code %1. + פקודת שינוי מאפייני המשתמש, usermod, נכשלה עם קוד יציאה %1. + + + + Cannot set home directory ownership for user %1. + לא ניתן להגדיר בעלות על תיקיית הבית עבור משתמש %1. + + + + chown terminated with error code %1. + פקודת שינוי בעלות, chown, נכשלה עם קוד יציאה %1. + + + + DeletePartitionJob + + + Delete partition %1. + מחק את מחיצה %1. + + + + Delete partition <strong>%1</strong>. + מחק את מחיצה <strong>%1</strong>. + + + + Deleting partition %1. + מבצע מחיקה של מחיצה %1. + + + + The installer failed to delete partition %1. + אשף ההתקנה נכשל בעת מחיקת מחיצה %1. + + + + Partition (%1) and device (%2) do not match. + מחיצה (%1) והתקן (%2) לא תואמים. + + + + Could not open device %1. + לא ניתן לפתוח את ההתקן %1. + + + + Could not open partition table. + לא ניתן לפתוח את טבלת המחיצות. + + + + DeviceInfoWidget + + + The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. + + + + + This device has a <strong>%1</strong> partition table. + על התקן זה קיימת טבלת מחיצות <strong>%1</strong>. + + + + This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. + + + + + This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. + + + + + <br><br>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. + + + + + <br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. + + + + + DeviceModel + + + %1 - %2 (%3) + %1 - %2 (%3) + + + + DracutLuksCfgJob + + + Write LUKS configuration for Dracut to %1 + רשום הגדרות הצפנה LUKS עבור Dracut אל %1 + + + + Skip writing LUKS configuration for Dracut: "/" partition is not encrypted + דלג רישום הגדרות הצפנה LUKS עבור Dracut: מחיצת "/" לא תוצפן. + + + + Failed to open %1 + נכשלה פתיחת %1. + + + + DummyCppJob + + + Dummy C++ Job + + + + + EditExistingPartitionDialog + + + Edit Existing Partition + ערוך מחיצה קיימת + + + + Content: + תכולה: + + + + &Keep + &השאר + + + + Format + אתחול + + + + Warning: Formatting the partition will erase all existing data. + אזהרה: אתחול המחיצה ימחק את כל המידע הקיים. + + + + &Mount Point: + &נקודת עיגון: + + + + Si&ze: + גו&דל: + + + + Fi&le System: + מ&ערכת קבצים: + + + + Flags: + סימונים: + + + + Mountpoint already in use. Please select another one. + נקודת העיגון בשימוש. אנא בחר אחרת. + + + + EncryptWidget + + + Form + + + + + En&crypt system + ה&צפן את המערכת + + + + Passphrase + ביטוי אבטחה + + + + Confirm passphrase + אשר ביטוי אבטחה + + + + Please enter the same passphrase in both boxes. + אנא הכנס את אותו ביטוי אבטחה בשני התאים. + + + + FillGlobalStorageJob + + + Set partition information + הגדר מידע עבור המחיצה + + + + Install %1 on <strong>new</strong> %2 system partition. + התקן %1 על מחיצת מערכת %2 <strong>חדשה</strong>. + + + + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. + הגדר מחיצת מערכת %2 <strong>חדשה</strong>בעלת נקודת עיגון <strong>%1</strong>. + + + + Install %2 on %3 system partition <strong>%1</strong>. + התקן %2 על מחיצת מערכת %3 <strong>%1</strong>. + + + + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. + התקן מחיצה %3 <strong>%1</strong> עם נקודת עיגון <strong>%2</strong>. + + + + Install boot loader on <strong>%1</strong>. + התקן מנהל אתחול על <strong>%1</strong>. + + + + Setting up mount points. + מגדיר נקודות עיגון. + + + + FinishedPage + + + Form + + + + + &Restart now + %אתחל כעת + + + + <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. + <h1>תהליך ההתקנה הסתיים.</h1><br/>%1 הותקן על המחשב שלך.<br/> כעת ניתן לאתחל את המחשב אל המערכת החדשה שהותקנה, או להמשיך להשתמש בסביבה הנוכחית של %2. + + + + FinishedViewStep + + + Finish + סיים + + + + FormatPartitionJob + + + Format partition %1 (file system: %2, size: %3 MB) on %4. + אתחל מחיצה %1 (מערכת קבצים: %2, גודל: %3 MB) על %4. + + + + Format <strong>%3MB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. + + + + + Formatting partition %1 with file system %2. + מאתחל מחיצה %1 עם מערכת קבצים %2. + + + + The installer failed to format partition %1 on disk '%2'. + אשף ההתקנה נכשל בעת אתחול המחיצה %1 על כונן '%2'. + + + + Could not open device '%1'. + לא ניתן לפתוח את התקן '%1'. + + + + Could not open partition table. + לא ניתן לפתוח את טבלת המחיצות. + + + + The installer failed to create file system on partition %1. + אשף ההתקנה נכשל בעת יצירת מערכת הקבצים על המחיצה %1. + + + + The installer failed to update partition table on disk '%1'. + אשף ההתקנה נכשל בעת עדכון טבלת המחיצות על כונן '%1'. + + + + InteractiveTerminalPage + + + + + Konsole not installed + Konsole לא מותקן. + + + + + + Please install the kde konsole and try again! + אנא התקן את kde konsole ונסה שוב! + + + + Executing script: &nbsp;<code>%1</code> + + + + + InteractiveTerminalViewStep + + + Script + + + + + KeyboardPage + + + Set keyboard model to %1.<br/> + הגדר את דגם המקלדת ל %1.<br/> + + + + Set keyboard layout to %1/%2. + הגדר את פריסת לוח המקשים ל %1/%2. + + + + KeyboardViewStep + + + Keyboard + מקלדת + + + + LCLocaleDialog + + + System locale setting + הגדרות מיקום המערכת + + + + The system locale setting affects the language and character set for some command line user interface elements.<br/>The current setting is <strong>%1</strong>. + + + + + LicensePage + + + Form + + + + + I accept the terms and conditions above. + אני מאשר את התנאים וההתניות מעלה. + + + + <h1>License Agreement</h1>This setup procedure will install proprietary software that is subject to licensing terms. + + + + + Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, the setup procedure cannot continue. + + + + + <h1>License Agreement</h1>This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. + + + + + Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. + + + + + <strong>%1 driver</strong><br/>by %2 + %1 is an untranslatable product name, example: Creative Audigy driver + <strong>התקן %1</strong><br/> מאת %2 + + + + <strong>%1 graphics driver</strong><br/><font color="Grey">by %2</font> + %1 is usually a vendor name, example: Nvidia graphics driver + <strong>התקן תצוגה %1</strong><br/><font color="Grey"> מאת %2</font> + + + + <strong>%1 browser plugin</strong><br/><font color="Grey">by %2</font> + <strong>תוסף לדפדפן %1</strong><br/><font color="Grey"> מאת %2</font> + + + + <strong>%1 codec</strong><br/><font color="Grey">by %2</font> + <strong>קידוד %1</strong><br/><font color="Grey"> מאת %2</font> + + + + <strong>%1 package</strong><br/><font color="Grey">by %2</font> + <strong>חבילה %1</strong><br/><font color="Grey"> מאת %2</font> + + + + <strong>%1</strong><br/><font color="Grey">by %2</font> + <strong>%1</strong><br/><font color="Grey">על ידי %2</font> + + + + <a href="%1">view license agreement</a> + <a href="%1">צפה בהסכם הרשיון</a> + + + + LicenseViewStep + + + License + רשיון + + + + LocalePage + + + The system language will be set to %1. + שפת המערכת תוגדר להיות %1. + + + + The numbers and dates locale will be set to %1. + + + + + Region: + איזור: + + + + Zone: + מיקום: + + + + + &Change... + &החלף... + + + + Set timezone to %1/%2.<br/> + הגדרת אזור זמן ל %1/%2.<br/> + + + + %1 (%2) + Language (Country) + %1 (%2) + + + + LocaleViewStep + + + Loading location data... + טוען נתונים על המיקום... + + + + Location + מיקום + + + + MoveFileSystemJob + + + Move file system of partition %1. + העבר את מערכת הקבצים של מחיצה %1. + + + + Could not open file system on partition %1 for moving. + פתיחת מערכת הקבצים במחיצה %1 לטובת העברה נכשלה. + + + + Could not create target for moving file system on partition %1. + + + + + Moving of partition %1 failed, changes have been rolled back. + + + + + Moving of partition %1 failed. Roll back of the changes have failed. + + + + + Updating boot sector after the moving of partition %1 failed. + + + + + The logical sector sizes in the source and target for copying are not the same. This is currently unsupported. + + + + + Source and target for copying do not overlap: Rollback is not required. + + + + + + Could not open device %1 to rollback copying. + פתיחת התקן %1 בכדי לבצע העתקה למצב הקודם נכשלה. + + + + NetInstallPage + + + Name + שם + + + + Description + תיאור + + + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) + + + + + NetInstallViewStep + + + Package selection + בחירת חבילות + + + + Page_Keyboard + + + Form + + + + + Keyboard Model: + דגם מקלדת: + + + + Type here to test your keyboard + הקלד כאן בכדי לבדוק את המקלדת שלך + + + + Page_UserSetup + + + Form + + + + + What is your name? + מהו שמך? + + + + What name do you want to use to log in? + באיזה שם ברצונך להשתמש בעת כניסה למחשב? + + + + + + + font-weight: normal + משקל-גופן: נורמלי + + + + <small>If more than one person will use this computer, you can set up multiple accounts after installation.</small> + <small>במידה ויותר מאדם אחד ישתמשו במחשב זה, תוכל להגדיר משתמשים נוספים לאחר ההתקנה.</small> + + + + Choose a password to keep your account safe. + בחר סיסמה בכדי להגן על חשבונך. + + + + <small>Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.</small> + <small>הכנס את אותה הסיסמה פעמיים, בכדי שניתן יהיה לבדוק שגיאות הקלדה. סיסמה טובה אמורה להכיל שילוב של אותיות, מספרים וסימני פיסוק, להיות באורך שמונה תווים לפחות, ועליה להשתנות במרווחי זמן קבועים.</small> + + + + What is the name of this computer? + מהו שם המחשב הזה? + + + + <small>This name will be used if you make the computer visible to others on a network.</small> + + + + + Log in automatically without asking for the password. + התחבר באופן אוטומטי מבלי לבקש סיסמה. + + + + Use the same password for the administrator account. + השתמש באותה הסיסמה עבור חשבון המנהל. + + + + Choose a password for the administrator account. + בחר סיסמה עבור חשבון המנהל. + + + + <small>Enter the same password twice, so that it can be checked for typing errors.</small> + <small>הכנס את אותה הסיסמה פעמיים, בכדי שניתן יהיה לבדוק שגיאות הקלדה.</small> + + + + PartitionLabelsView + + + Root + מערכת הפעלה Root + + + + Home + בית Home + + + + Boot + טעינה Boot + + + + EFI system + מערכת EFI + + + + Swap + + + + + New partition for %1 + מחיצה חדשה עבור %1 + + + + New partition + מחיצה חדשה + + + + %1 %2 + %1 %2 + + + + PartitionModel + + + + Free Space + זכרון פנוי + + + + + New partition + מחיצה חדשה + + + + Name + שם + + + + File System + מערכת קבצים + + + + Mount Point + נקודת עיגון + + + + Size + גודל + + + + PartitionPage + + + Form + + + + + Storage de&vice: + &התקן זכרון: + + + + &Revert All Changes + &בטל את כל השינויים + + + + New Partition &Table + &טבלת מחיצות חדשה + + + + &Create + &צור + + + + &Edit + &ערוך + + + + &Delete + &מחק + + + + Install boot &loader on: + + + + + Are you sure you want to create a new partition table on %1? + האם אתה בטוח שברצונך לייצר טבלת מחיצות חדשה על %1? + + + + PartitionViewStep + + + Gathering system information... + מלקט מידע אודות המערכת... + + + + Partitions + מחיצות + + + + Install %1 <strong>alongside</strong> another operating system. + התקן את %1 <strong>לצד</strong> מערכת הפעלה אחרת. + + + + <strong>Erase</strong> disk and install %1. + <strong>מחק</strong> את הכונן והתקן את %1. + + + + <strong>Replace</strong> a partition with %1. + <strong>החלף</strong> מחיצה עם %1. + + + + <strong>Manual</strong> partitioning. + מגדיר מחיצות באופן <strong>ידני</strong>. + + + + Install %1 <strong>alongside</strong> another operating system on disk <strong>%2</strong> (%3). + התקן את %1 <strong>לצד</strong> מערכת הפעלה אחרת על כונן <strong>%2</strong> (%3). + + + + <strong>Erase</strong> disk <strong>%2</strong> (%3) and install %1. + <strong>מחק</strong> כונן <strong>%2</strong> (%3) והתקן %1. + + + + <strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. + <strong>החלף</strong> מחיצה על כונן <strong>%2</strong> (%3) עם %1. + + + + <strong>Manual</strong> partitioning on disk <strong>%1</strong> (%2). + מגדיר מחיצות באופן <strong>ידני</strong> על כונן <strong>%1</strong>(%2). + + + + Disk <strong>%1</strong> (%2) + כונן <strong>%1</strong> (%2) + + + + Current: + נוכחי: + + + + After: + לאחר: + + + + No EFI system partition configured + לא הוגדרה מחיצת EFI + + + + An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>esp</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. + + + + + EFI system partition flag not set + + + + + An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>esp</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. + + + + + Boot partition not encrypted + מחיצת טעינת המערכת boot לא מוצפנת. + + + + A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. + + + + + QObject + + + Default Keyboard Model + + + + + + Default + ברירת מחדל + + + + unknown + לא מוכרת + + + + extended + מורחבת + + + + unformatted + לא מאותחל + + + + swap + + + + + Unpartitioned space or unknown partition table + הזכרון לא מחולק למחיצות או טבלת מחיצות לא מוכרת. + + + + ReplaceWidget + + + Form + + + + + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. + בחר מיקום התקנת %1.<br/><font color="red">אזהרה: </font> הפעולה תמחק את כל הקבצים במחיצה שנבחרה. + + + + The selected item does not appear to be a valid partition. + הפריט הנבחר איננו מחיצה תקינה. + + + + %1 cannot be installed on empty space. Please select an existing partition. + לא ניתן להתקין את %1 על זכרון ריק. אנא בחר מחיצה קיימת. + + + + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. + לא ניתן להתקין את %1 על מחיצה מורחבת. אנא בחר מחיצה ראשית או לוגית קיימת. + + + + %1 cannot be installed on this partition. + לא ניתן להתקין את %1 על המחיצה הזו. + + + + Data partition (%1) + מחיצת מידע (%1) + + + + Unknown system partition (%1) + מחיצת מערכת (%1) לא מוכרת + + + + %1 system partition (%2) + %1 מחיצת מערכת (%2) + + + + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. + <strong>%4</strong><br/><br/> גודל המחיצה %1 קטן מדי עבור %2. אנא בחר מחיצה עם קיבולת בנפח %3 GiB לפחות. + + + + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + <strong>%2</strong><br/><br/> מחיצת EFI לא נמצאה באף מקום על המערכת. חזור בבקשה והשתמש ביצירת מחיצות באופן ידני בכדי להגדיר את %1. + + + + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. + <strong>%3</strong><br/><br/>%1 יותקן על %2. <br/><font color="red">אזהרה: </font>כל המידע אשר קיים במחיצה %2 יאבד. + + + + The EFI system partition at %1 will be used for starting %2. + מחיצת EFI ב %1 תשמש עבור טעינת %2. + + + + EFI system partition: + מחיצת EFI: + + + + RequirementsChecker + + + Gathering system information... + מלקט מידע אודות המערכת... + + + + has at least %1 GB available drive space + קיים לפחות %1 גיגה - בייט של נפח אחסון + + + + There is not enough drive space. At least %1 GB is required. + נפח האחסון לא מספק. נדרש לפחות %1 גיגה - בייט. + + + + has at least %1 GB working memory + קיים לפחות %1 גיגה - בייט של זכרון פעולה + + + + The system does not have enough working memory. At least %1 GB is required. + כמות הזכרון הנדרשת לפעולה לא מספיקה. נדרש לפחות %1 גיגה - בייט. + + + + is plugged in to a power source + מחובר לספק חשמל חיצוני + + + + The system is not plugged in to a power source. + המערכת לא מחוברת לספק חשמל חיצוני. + + + + is connected to the Internet + מחובר לאינטרנט + + + + The system is not connected to the Internet. + המערכת לא מחוברת לאינטרנט. + + + + The installer is not running with administrator rights. + מנהל ההתקנה לא רץ עם הרשאות מנהל. + + + + The screen is too small to display the installer. + גודל המסך קטן מדי בכדי להציג את מנהל ההתקנה. + + + + ResizeFileSystemJob + + + Resize file system on partition %1. + שנה את גודל מערכת הקבצים במחיצה %1. + + + + Parted failed to resize filesystem. + Parted נכשלה לשנות את גודל מערכת הקבצים. + + + + Failed to resize filesystem. + שינוי גודל מערכת הקבצים נכשלה. + + + + ResizePartitionJob + + + Resize partition %1. + שנה גודל מחיצה %1. + + + + Resize <strong>%2MB</strong> partition <strong>%1</strong> to <strong>%3MB</strong>. + משנה את מחיצה <strong>%1</strong> מגודל <strong>%2 MB</strong> ל <strong>%3 MB</strong>. + + + + Resizing %2MB partition %1 to %3MB. + משנה את מחיצה %1 מ %2 MB ל %3 MB. + + + + + The installer failed to resize partition %1 on disk '%2'. + תהליך ההתקנה נכשל בשינוי גודל המחיצה %1 על כונן '%2'. + + + + Could not open device '%1'. + נכשלה פתיחת התקן '%1'. + + + + ScanningDialog + + + Scanning storage devices... + סורק התקני זכרון... + + + + Partitioning + מגדיר מחיצות + + + + SetHostNameJob + + + Set hostname %1 + הגדר שם המחשב %1 + + + + Set hostname <strong>%1</strong>. + הגדר שם המחשב <strong>%1</strong>. + + + + Setting hostname %1. + מגדיר את שם המחשב %1. + + + + + Internal Error + שגיאה פנימית + + + + + Cannot write hostname to target system + נכשלה כתיבת שם המחשב למערכת המטרה. + + + + SetKeyboardLayoutJob + + + Set keyboard model to %1, layout to %2-%3 + + + + + Failed to write keyboard configuration for the virtual console. + נכשלה כתיבת הגדרת מקלדת למסוף. + + + + + + Failed to write to %1 + נכשלה כתיבה ל %1 + + + + Failed to write keyboard configuration for X11. + נכשלה כתיבת הגדרת מקלדת עבור X11. + + + + Failed to write keyboard configuration to existing /etc/default directory. + נכשלה כתיבת הגדרת מקלדת לתיקיה קיימת /etc/default. + + + + SetPartFlagsJob + + + Set flags on partition %1. + + + + + Set flags on %1MB %2 partition. + + + + + Set flags on new partition. + + + + + Clear flags on partition <strong>%1</strong>. + + + + + Clear flags on %1MB <strong>%2</strong> partition. + + + + + Clear flags on new partition. + + + + + Flag partition <strong>%1</strong> as <strong>%2</strong>. + + + + + Flag %1MB <strong>%2</strong> partition as <strong>%3</strong>. + + + + + Flag new partition as <strong>%1</strong>. + + + + + Clearing flags on partition <strong>%1</strong>. + + + + + Clearing flags on %1MB <strong>%2</strong> partition. + + + + + Clearing flags on new partition. + + + + + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. + + + + + Setting flags <strong>%3</strong> on %1MB <strong>%2</strong> partition. + + + + + Setting flags <strong>%1</strong> on new partition. + + + + + The installer failed to set flags on partition %1. + תהליך ההתקנה נכשל בעת סימון דגלים במחיצה %1. + + + + Could not open device '%1'. + פתיחת כונן '%1' נכשלה. + + + + Could not open partition table on device '%1'. + פתיחת טבלת מחיצות על כונן '%1' נכשלה. + + + + Could not find partition '%1'. + לא נמצאה מחיצה '%1'. + + + + SetPartGeometryJob + + + Update geometry of partition %1. + עדכן גאומטריית מחיצה %1. + + + + Failed to change the geometry of the partition. + נכשל שינוי גאומטריית המחיצה. + + + + SetPasswordJob + + + Set password for user %1 + הגדר סיסמה עבור משתמש %1 + + + + Setting password for user %1. + מגדיר סיסמה עבור משתמש %1. + + + + Bad destination system path. + + + + + rootMountPoint is %1 + עיגון מחיצת מערכת ההפעלה היא %1 + + + + Cannot disable root account. + לא ניתן לנטרל את חשבון ה root. + + + + passwd terminated with error code %1. + passwd הסתיימה עם שגיאת קוד %1. + + + + Cannot set password for user %1. + + + + + usermod terminated with error code %1. + + + + + SetTimezoneJob + + + Set timezone to %1/%2 + הגדרת אזור זמן ל %1/%2 + + + + Cannot access selected timezone path. + + + + + Bad path: %1 + + + + + Cannot set timezone. + לא ניתן להגדיר את אזור הזמן. + + + + Link creation failed, target: %1; link name: %2 + נכשלה יצירת קיצור דרך, מיקום: %1; שם קיצור הדרך: %2 + + + + Cannot set timezone, + לא ניתן להגדיר את אזור הזמן, + + + + Cannot open /etc/timezone for writing + לא ניתן לפתוח את /etc/timezone לכתיבה + + + + SummaryPage + + + This is an overview of what will happen once you start the install procedure. + + + + + SummaryViewStep + + + Summary + סיכום + + + + UsersPage + + + Your username is too long. + שם המשתמש ארוך מדי. + + + + Your username contains invalid characters. Only lowercase letters and numbers are allowed. + שם המחשב מכיל ערכים לא תקינים. אך ורק אותיות לא רישיות ומספרים מורשים. + + + + Your hostname is too short. + שם המחשב קצר מדי. + + + + Your hostname is too long. + שם המחשב ארוך מדי. + + + + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. + שם המחשב מכיל ערכים לא תקינים. אך ורק אותיות, מספרים ומקפים מורשים. + + + + + Your passwords do not match! + הסיסמאות לא תואמות! + + + + UsersViewStep + + + Users + משתמשים + + + + WelcomePage + + + Form + + + + + &Language: + &שפה: + + + + &Release notes + + + + + &Known issues + &בעיות נפוצות + + + + &Support + &תמיכה + + + + &About + &אודות + + + + <h1>Welcome to the %1 installer.</h1> + <h1>ברוכים הבאים להתקנת %1.</h1> + + + + <h1>Welcome to the Calamares installer for %1.</h1> + <h1>ברוכים הבאים להתקנת קלמרס עבור %1.</h1> + + + + About %1 installer + אודות התקנת %1 + + + + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. + + + + + %1 support + תמיכה ב - %1 + + + + WelcomeViewStep + + + Welcome + ברוכים הבאים + + + \ No newline at end of file diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index c0913963d..f2685345c 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index 1d80d1298..0abaa7e60 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -232,13 +232,13 @@ Izlaz: - + &Cancel &Odustani - + Cancel installation without changing the system. Odustanite od instalacije bez promjena na sustavu. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Instalacijski program će izaći i sve promjene će biti izgubljene. - + + &Yes + + + + + &No + + + + Continue with setup? Nastaviti s postavljanjem? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 instalacijski program će napraviti promjene na disku kako bi instalirao %2.<br/><strong>Nećete moći vratiti te promjene.</strong> - + &Install now &Instaliraj sada - + Go &back Idi &natrag - + &Done &Gotovo - + The installation is complete. Close the installer. Instalacija je završena. Zatvorite instalacijski program. - + Error Greška - + Installation Failed Instalacija nije uspjela diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index d54375c0b..18a2d09f2 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -232,13 +232,13 @@ Kimenet: - + &Cancel &Mégse - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Minden változtatás elveszik, ha kilépsz a telepítőből. - + + &Yes + + + + + &No + + + + Continue with setup? Folytatod a telepítéssel? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> A %1 telepítő változtatásokat fog elvégezni, hogy telepítse a következőt: %2.<br/><strong>A változtatások visszavonhatatlanok lesznek.</strong> - + &Install now &Telepítés most - + Go &back Menj &vissza - + &Done - + The installation is complete. Close the installer. - + Error Hiba - + Installation Failed Telepítés nem sikerült diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 9d9954746..768c53a6f 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -232,13 +232,13 @@ Keluaran: - + &Cancel &Batal - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Pemasangan akan ditutup dan semua perubahan akan hilang. - + + &Yes + + + + + &No + + + + Continue with setup? Lanjutkan dengan setelan ini? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Pemasang %1 akan membuat perubahan ke disk Anda untuk memasang %2.<br/><strong>Anda tidak dapat membatalkan perubahan tersebut.</strong> - + &Install now &Pasang sekarang - + Go &back &Kembali - + &Done - + The installation is complete. Close the installer. - + Error Kesalahan - + Installation Failed Pemasangan Gagal diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index b3869126a..4f422e59a 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -232,13 +232,13 @@ Frálag: - + &Cancel &Hætta við - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Uppsetningarforritið mun hætta og allar breytingar tapast. - + + &Yes + + + + + &No + + + + Continue with setup? Halda áfram með uppsetningu? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 uppsetningarforritið er um það bil að gera breytingar á diskinum til að setja upp %2.<br/><strong>Þú munt ekki geta afturkallað þessar breytingar.</strong> - + &Install now Setja &inn núna - + Go &back Fara til &baka - + &Done - + The installation is complete. Close the installer. - + Error Villa - + Installation Failed Uppsetning mistókst diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 5a1ef5a04..46e164529 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Annulla - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Il programma d'installazione sarà terminato e tutte le modifiche andranno perse. - + + &Yes + + + + + &No + + + + Continue with setup? Procedere con la configurazione? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Il programma d'nstallazione %1 sta per eseguire delle modifiche al tuo disco per poter installare %2.<br/><strong> Non sarà possibile annullare tali modifiche.</strong> - + &Install now &Installa adesso - + Go &back &Indietro - + &Done - + The installation is complete. Close the installer. - + Error Errore - + Installation Failed Installazione non riuscita diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index b6f167b41..cfb32d64f 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -232,13 +232,13 @@ Output: - + &Cancel 中止(&C) - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. すべての変更が取り消されます。 - + + &Yes + + + + + &No + + + + Continue with setup? セットアップを続行しますか? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 インストーラーは %2 をインストールするためにディスクの内容を変更しようとします。<br/><strong>これらの変更は取り消しできなくなります。</strong> - + &Install now 今すぐインストール(&I) - + Go &back 戻る(&B) - + &Done - + The installation is complete. Close the installer. - + Error エラー - + Installation Failed インストールに失敗 diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 6087300c2..bac242d9c 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -226,13 +226,13 @@ Output: - + &Cancel Ба&с тарту - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index 94df3b85d..1163bc237 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index ecd1c173f..a57e73d81 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -232,13 +232,13 @@ Išvestis: - + &Cancel A&tšaukti - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. - + + &Yes + + + + + &No + + + + Continue with setup? Tęsti sąranką? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 diegimo programa, siekdama įdiegti %2, ketina atlikti pakeitimus diske.<br/><strong>Negalėsite atšaukti šių pakeitimų.</strong> - + &Install now Į&diegti dabar - + Go &back &Grįžti - + &Done - + The installation is complete. Close the installer. - + Error Klaida - + Installation Failed Diegimas nepavyko diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index 360b83949..015be7062 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index fb5a1a284..44b495bab 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Avbryt - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + + &Yes + + + + + &No + + + + Continue with setup? Fortsette å sette opp? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 vil nå gjøre endringer på harddisken, for å installere %2. <br/><strong>Du vil ikke kunne omgjøre disse endringene.</strong> - + &Install now &Installer nå - + Go &back Gå &tilbake - + &Done - + The installation is complete. Close the installer. - + Error Feil - + Installation Failed Installasjon feilet diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index 13f579a19..13b386084 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -232,15 +232,15 @@ Uitvoer: - + &Cancel &Afbreken - + Cancel installation without changing the system. - + Installatie afbreken zonder aanpassingen aan het systeem. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. - + + &Yes + &ja + + + + &No + &Nee + + + Continue with setup? Doorgaan met installatie? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Het %1 installatieprogramma zal nu aanpassingen maken aan je schijf om %2 te installeren.<br/><strong>Deze veranderingen kunnen niet ongedaan gemaakt worden.</strong> - + &Install now Nu &installeren - + Go &back Ga &terug - + &Done - + Voltooi&d - + The installation is complete. Close the installer. - + De installatie is voltooid. Sluit het installatie-programma. - + Error Fout - + Installation Failed Installatie Mislukt diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index 2c8d80249..e92523789 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -232,13 +232,13 @@ Wyjście: - + &Cancel &Anuluj - + Cancel installation without changing the system. Anuluj instalację bez dokonywania zmian w systemie. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. - + + &Yes + &Tak + + + + &No + &Nie + + + Continue with setup? Kontynuować z programem instalacyjnym? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Instalator %1 zamierza przeprowadzić zmiany na Twoim dysku, aby zainstalować %2.<br/><strong>Nie będziesz mógł cofnąć tych zmian.</strong> - + &Install now &Zainstaluj teraz - + Go &back &Cofnij się - + &Done &Ukończono - + The installation is complete. Close the installer. Instalacja ukończona pomyślnie. Możesz zamknąć instalator. - + Error Błąd - + Installation Failed Wystąpił błąd instalacji diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index afe7bf763..1133c327e 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -232,13 +232,13 @@ Wyjście: - + &Cancel &Anuluj - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - + + &Yes + + + + + &No + + + + Continue with setup? Kontynuować instalację? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Zainstaluj - + Go &back &Wstecz - + &Done - + The installation is complete. Close the installer. - + Error Błąd - + Installation Failed Wystąpił błąd instalacji diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index e5d6b5565..1b27cff70 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -232,13 +232,13 @@ Saída: - + &Cancel &Cancelar - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. O instalador será fechado e todas as alterações serão perdidas. - + + &Yes + + + + + &No + + + + Continue with setup? Continuar com configuração? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> O instalador %1 está prestes a fazer alterações no disco a fim de instalar %2.<br/><strong>Você não será capaz de desfazer estas mudanças.</strong> - + &Install now &Instalar agora - + Go &back Voltar - + &Done - + The installation is complete. Close the installer. - + Error Erro - + Installation Failed Falha na Instalação diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index d1042d193..a0eecec3d 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -232,13 +232,13 @@ Saída: - + &Cancel &Cancelar - + Cancel installation without changing the system. Cancelar instalar instalação sem modificar o sistema. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. O instalador será encerrado e todas as alterações serão perdidas. - + + &Yes + &Sim + + + + &No + &Não + + + Continue with setup? Continuar com a configuração? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> O %1 instalador está prestes a fazer alterações ao seu disco em ordem para instalar %2.<br/><strong>Não será capaz de desfazer estas alterações.</strong> - + &Install now &Instalar agora - + Go &back Voltar &atrás - + &Done &Feito - + The installation is complete. Close the installer. A instalação está completa. Feche o instalador. - + Error Erro - + Installation Failed Falha na Instalação diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index 86f55204d..644c6d051 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -232,13 +232,13 @@ Rezultat: - + &Cancel &Anulează - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Programul de instalare va ieși, iar toate modificările vor fi pierdute. - + + &Yes + + + + + &No + + + + Continue with setup? Continuați configurarea? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Programul de instalare %1 este pregătit să facă schimbări pe discul dumneavoastră pentru a instala %2.<br/><strong>Nu veți putea anula aceste schimbări.</strong> - + &Install now &Instalează acum - + Go &back Î&napoi - + &Done - + The installation is complete. Close the installer. - + Error Eroare - + Installation Failed Instalare eșuată diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index 4207ac9e8..e8928e183 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -232,13 +232,13 @@ Output: - + &Cancel О&тмена - + Cancel installation without changing the system. @@ -254,42 +254,52 @@ The installer will quit and all changes will be lost. Действительно прервать процесс установки? Программа установки сразу прекратит работу, все изменения будут потеряны. - + + &Yes + + + + + &No + + + + Continue with setup? Продолжить установку? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Программа установки %1 готова внести изменения на Ваш диск, чтобы установить %2.<br/><strong>Отменить эти изменения будет невозможно.</strong> - + &Install now Приступить к &установке - + Go &back &Назад - + &Done - + The installation is complete. Close the installer. - + Error Ошибка - + Installation Failed Установка завершилась неудачей diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 8d508f20b..e4d696d19 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -232,13 +232,13 @@ Výstup: - + &Cancel &Zrušiť - + Cancel installation without changing the system. Zruší inštaláciu bez zmeny systému. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Inštalátor sa ukončí a všetky zmeny budú stratené. - + + &Yes + _Áno + + + + &No + _Nie + + + Continue with setup? Pokračovať v inštalácii? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> Inštalátor distribúcie %1 sa chystá vykonať zmeny na vašom disku, aby nainštaloval distribúciu %2. <br/><strong>Tieto zmeny nebudete môcť vrátiť späť.</strong> - + &Install now &Inštalovať teraz - + Go &back Prejsť s&päť - + &Done _Dokončiť - + The installation is complete. Close the installer. Inštalácia je dokončená. Zatvorí inštalátor. - + Error Chyba - + Installation Failed Inštalácia zlyhala diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index a693a3e7f..f12d7043e 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -232,13 +232,13 @@ Izpis: - + &Cancel - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Namestilni program se bo končal in vse spremembe bodo izgubljene. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Napaka - + Installation Failed Namestitev je spodletela diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index fa6dd2f55..baa14f38f 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Откажи - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Инсталер ће бити затворен и све промене ће бити изгубљене. - + + &Yes + + + + + &No + + + + Continue with setup? Наставити са подешавањем? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now &Инсталирај сада - + Go &back Иди &назад - + &Done - + The installation is complete. Close the installer. - + Error Грешка - + Installation Failed Инсталација није успела diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index 9370b021f..de6ae88ee 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -232,13 +232,13 @@ Povratna poruka: - + &Cancel &Prekini - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Instaler će se zatvoriti i sve promjene će biti izgubljene. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error Greška - + Installation Failed Neuspješna instalacija diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index 9a78d4a06..5236dea81 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -232,13 +232,13 @@ Utdata: - + &Cancel Avbryt - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Alla ändringar kommer att gå förlorade. - + + &Yes + + + + + &No + + + + Continue with setup? Fortsätt med installation? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1-installeraren är på väg att göra ändringar för att installera %2.<br/><strong>Du kommer inte att kunna ångra dessa ändringar!strong> - + &Install now &Installera nu - + Go &back Gå &bakåt - + &Done - + The installation is complete. Close the installer. - + Error Fel - + Installation Failed Installationen misslyckades diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index 6fb2d3eef..5a69225c4 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &C ยกเลิก - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. ตัวติดตั้งจะสิ้นสุดการทำงานและไม่บันทึกการเปลี่ยนแปลงที่ได้ดำเนินการก่อนหน้านี้ - + + &Yes + + + + + &No + + + + Continue with setup? ดำเนินการติดตั้งต่อหรือไม่? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> ตัวติดตั้ง %1 กำลังพยายามที่จะทำการเปลี่ยนแปลงในดิสก์ของคุณเพื่อติดตั้ง %2<br/><strong>คุณจะไม่สามารถยกเลิกการเปลี่ยนแปลงเหล่านี้ได้</strong> - + &Install now &ติดตั้งตอนนี้ - + Go &back กลั&บไป - + &Done - + The installation is complete. Close the installer. - + Error ข้อผิดพลาด - + Installation Failed การติดตั้งล้มเหลว diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index 6928e27a2..8a8c7c353 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -232,13 +232,13 @@ Output: - + &Cancel &Vazgeç - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. Yükleyiciden çıkınca tüm değişiklikler kaybedilecek. - + + &Yes + + + + + &No + + + + Continue with setup? Kuruluma devam et? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 sistem yükleyici %2 yüklemek için diskinizde değişiklik yapacak.<br/><strong>Bu değişiklikleri geri almak mümkün olmayacak.</strong> - + &Install now &Şimdi yükle - + Go &back Geri &git - + &Done - + The installation is complete. Close the installer. - + Error Hata - + Installation Failed Kurulum Başarısız diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index 6b2d76f29..e49aed1e0 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index acfa19d76..bd4cc625e 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index 3a9b5907f..14e0b8e72 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -226,13 +226,13 @@ Output: - + &Cancel - + Cancel installation without changing the system. @@ -248,42 +248,52 @@ The installer will quit and all changes will be lost. - + + &Yes + + + + + &No + + + + Continue with setup? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + &Install now - + Go &back - + &Done - + The installation is complete. Close the installer. - + Error - + Installation Failed diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index 8cabb9f04..fb15fc735 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -233,13 +233,13 @@ Output: - + &Cancel 取消(&C) - + Cancel installation without changing the system. 取消安装,并不做任何更改。 @@ -256,42 +256,52 @@ The installer will quit and all changes will be lost. 安装程序将退出,所有修改都会丢失。 - + + &Yes + + + + + &No + + + + Continue with setup? 要继续安装吗? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 安装程序将在您的磁盘上做出变更以安装 %2。<br/><strong>您将无法复原这些变更。</strong> - + &Install now 现在安装 (&I) - + Go &back 返回 (&B) - + &Done &完成 - + The installation is complete. Close the installer. 安装过程已完毕。请关闭安装器。 - + Error 错误 - + Installation Failed 安装失败 diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index c8d0821ee..4e245ab80 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -232,13 +232,13 @@ Output: - + &Cancel 取消(&C) - + Cancel installation without changing the system. @@ -255,42 +255,52 @@ The installer will quit and all changes will be lost. 安裝程式將會退出且所有變動將會遺失。 - + + &Yes + + + + + &No + + + + Continue with setup? 繼續安裝? - + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> %1 安裝程式將在您的磁碟上做出變更以安裝 %2。<br/><strong>您將無法復原這些變更。</strong> - + &Install now 現在安裝 (&I) - + Go &back 上一步 (&B) - + &Done - + The installation is complete. Close the installer. - + Error 錯誤 - + Installation Failed 安裝失敗 From 77fd8be8817b2bf3853d6fb4ad5d4a5267df6235 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Tue, 4 Jul 2017 01:22:28 +0000 Subject: [PATCH 23/23] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/he/LC_MESSAGES/dummypythonqt.mo | Bin 0 -> 437 bytes .../lang/he/LC_MESSAGES/dummypythonqt.po | 36 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo create mode 100644 src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo new file mode 100644 index 0000000000000000000000000000000000000000..af3a9923415d5da917137681cc77101f4d32e754 GIT binary patch literal 437 zcmYL^&rZTX5XLon>d~`@HSqw!?LQDk&G+NpKA?n2}WoT>KZL?j3#^><$d=|HA z;LH9pyP0ohXTC4azfPo1C6|(G$(iIvQmZHVl*zt~wdbIK=kE{-?5^<=c$wskpuiqJ z+G7VTo!Q*=r%K>2@Q?!)GK)u4070g1++kgwHZr=z?6h<#X~Z-5Na`;Cz8A-yVb8}S z8%=!Txvf`!>L^c?MOzvHUI5Jqn!t*~4mDySijrvBZnskfr>smiuvf!8(?XikjB+S7 zAuCGF)b*~R#h^76&-I++=!U8*!<-3V0xzmUPAXt8v?8Sm8=x?zyaZv{)4BWh+*Ui- z=y!X^g8I)5aO|)!UneXgsJBXlG6n`*uD!F(^U0NTEpveWu2zGgD+?LTfpYQ#bKHCf literal 0 HcmV?d00001 diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po new file mode 100644 index 000000000..5e8659a28 --- /dev/null +++ b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po @@ -0,0 +1,36 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-07-03 16:24+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypythonqt/main.py:84 +msgid "Click me!" +msgstr "" + +#: src/modules/dummypythonqt/main.py:94 +msgid "A new QLabel." +msgstr "" + +#: src/modules/dummypythonqt/main.py:183 +msgid "The Dummy PythonQt Job" +msgstr "" + +#: src/modules/dummypythonqt/main.py:186 +msgid "This is the Dummy PythonQt Job. The dummy job says: {}" +msgstr "" + +#: src/modules/dummypythonqt/main.py:190 +msgid "A status message for Dummy PythonQt Job." +msgstr ""