diff --git a/README.md b/README.md index 34ecdaba5..a188d9d72 100644 --- a/README.md +++ b/README.md @@ -23,17 +23,17 @@ Main: Modules: * welcome: - * NetworkManager - * UPower + * NetworkManager + * UPower * partition: - * extra-cmake-modules - * KF5: KCoreAddons, KConfig, KI18n, KIconThemes, KIO, KService - * KPMcore >= 3.0 + * extra-cmake-modules + * KF5: KCoreAddons, KConfig, KI18n, KIconThemes, KIO, KService + * KPMcore >= 3.0 * bootloader: - * systemd-boot or GRUB + * systemd-boot or GRUB * unpackfs: - * squashfs-tools - * rsync + * squashfs-tools + * rsync ### Building diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index c8ba11ce4..b03844ec0 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -103,18 +103,18 @@ Type: - + النوع: none - + لاشيء Interface: - + الواجهة: @@ -600,7 +600,7 @@ The installer will quit and all changes will be lost. En&crypt - + تشفير @@ -1334,12 +1334,12 @@ The installer will quit and all changes will be lost. Name - + الاسم Description - + الوصف @@ -1479,7 +1479,7 @@ The installer will quit and all changes will be lost. New partition - + قسم جديد diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index 2f175cd7a..a4594de08 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -14,12 +14,12 @@ With this operation, the partition <strong>%1</strong> which contains %4 will be shrunk to %2MB and a new %3MB partition will be created for %5. - + Með þessari aðgerð, skipting <strong>%1</strong> sem inniheldur %4 mun verða minnkuð í %2MB og nýtt %3MB skipting verður gerð fyrir %5. An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + EFI kerfis skipting er ekki hægt að finna á þessu kerfi. Vinsamlega farðu til baka og nota hand skiptingu til að setja upp %1. @@ -658,7 +658,7 @@ Uppsetning mun hætta og allar breytingar tapast. The installer failed to create file system on partition %1. - + Uppsetningarforritið tókst ekki að búa til skráarkerfið á sneið %1. @@ -874,7 +874,7 @@ Uppsetning mun hætta og allar breytingar tapast. Write LUKS configuration for Dracut to %1 - + Skrifa LUKS stillingar fyrir Dracut til %1 @@ -892,7 +892,7 @@ Uppsetning mun hætta og allar breytingar tapast. Dummy C++ Job - + Dummy C++ Job @@ -973,7 +973,7 @@ Uppsetning mun hætta og allar breytingar tapast. Please enter the same passphrase in both boxes. - + Vinsamlegast sláðu inn sama lykilorðið í báða kassana. @@ -1722,7 +1722,7 @@ Uppsetning mun hætta og allar breytingar tapast. The selected item does not appear to be a valid partition. - + Valin atriði virðist ekki vera gild skipting. @@ -2091,7 +2091,7 @@ Uppsetning mun hætta og allar breytingar tapast. Cannot disable root account. - + Ekki er hægt að aftengja kerfisstjóra reikning. diff --git a/src/modules/bootloader/main.py b/src/modules/bootloader/main.py index 508458388..fd5990490 100644 --- a/src/modules/bootloader/main.py +++ b/src/modules/bootloader/main.py @@ -176,7 +176,7 @@ def install_systemd_boot(efi_directory): conf_path = os.path.join(install_efi_directory, "loader", "entries", - distribution_translated +".conf") + distribution_translated + ".conf") fallback_path = os.path.join(install_efi_directory, "loader", "entries", @@ -324,7 +324,7 @@ def run(): esp_found = False for partition in partitions: - if (partition["mountPoint"] == + if (partition["mountPoint"] == libcalamares.globalstorage.value("efiSystemPartition")): esp_found = True diff --git a/src/modules/dracut/main.py b/src/modules/dracut/main.py index 46902fb07..d7a9bc494 100644 --- a/src/modules/dracut/main.py +++ b/src/modules/dracut/main.py @@ -5,6 +5,7 @@ # # Copyright 2014-2015, Philip Müller # Copyright 2014, Teo Mrnjavac +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +25,8 @@ from libcalamares.utils import target_env_call def run_dracut(): - """ Creates initramfs, even when initramfs already exists. + """ + Creates initramfs, even when initramfs already exists. :return: """ @@ -32,11 +34,14 @@ def run_dracut(): def run(): - """ Starts routine to create initramfs. It passes back the exit code if it fails. + """ + Starts routine to create initramfs. It passes back the exit code + if it fails. :return: """ return_code = run_dracut() if return_code != 0: - return "Failed to run dracut on the target", "The exit code was {}".format(return_code) + return ("Failed to run dracut on the target", + "The exit code was {}".format(return_code)) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index acf47ac4e..4a68cf963 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -4,6 +4,7 @@ # === This file is part of Calamares - === # # Copyright 2014, Teo Mrnjavac +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,11 +25,12 @@ from time import gmtime, strftime, sleep def run(): - """ Example Python jobmodule. + """ + Example Python jobmodule. A Python jobmodule is a Python program which imports libcalamares and has a function run() as entry point. run() must return None if everything - went well, or a tuple (str,str) with an error message and description + went well, or a tuple (str,str) with an error message and description if something went wrong. :return: @@ -40,13 +42,16 @@ def run(): accumulator += "This job's path: " + libcalamares.job.working_path + "\n" accumulator += str(libcalamares.job.configuration) accumulator += " *** globalstorage test ***\n" - accumulator += "lala: " + str(libcalamares.globalstorage.contains("lala")) + "\n" - accumulator += "foo: " + str(libcalamares.globalstorage.contains("foo")) + "\n" + accumulator += "lala: " + accumulator += str(libcalamares.globalstorage.contains("lala")) + "\n" + accumulator += "foo: " + accumulator += str(libcalamares.globalstorage.contains("foo")) + "\n" accumulator += "count: " + str(libcalamares.globalstorage.count()) + "\n" libcalamares.globalstorage.insert("item2", "value2") libcalamares.globalstorage.insert("item3", 3) accumulator += "keys: {}\n".format(str(libcalamares.globalstorage.keys())) - accumulator += "remove: {}\n".format(str(libcalamares.globalstorage.remove("item2"))) + accumulator += "remove: {}\n".format( + str(libcalamares.globalstorage.remove("item2"))) accumulator += "values: {} {} {}\n".format( str(libcalamares.globalstorage.value("foo")), str(libcalamares.globalstorage.value("item2")), diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 6cd18df33..098d97ac9 100644 Binary files a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po index 0ec0866e8..ce4d13446 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index aca5bc110..8cc56350d 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "¡Prímime!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Una QLabel nueva." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "El trabayu maniquín de PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Esti ye'l trabayu maniquín de PythonQt. El trabayu maniquín diz: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Un mensaxe d'estáu pal trabayu maniquín de PythonQt." diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo index 531e489a7..eeb9e7a43 100644 Binary files a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po index 2933ec9fb..6afa83885 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index 1ddb823f3..7638d6aa3 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Clica'm!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Una etiqueta Q nova." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "La tasca Dummy PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Sóc la tasca Dummy PythonQt. La tasca diu el següent: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Un missatge d'estat per a la tasca Dummy PythonQt." 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 ce241f294..9dd6ca871 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Klikni na mě!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Nový QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Testovací úloha PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Toto je testovací úloha PythonQt. Testovací úloha říká: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Stavová zpráva o testovací úloze PythonQt." diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index b6db152fe..f1a34cc62 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Klik på mig!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "En ny QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Dummy PythonQt-jobbet" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Dette er dummy PythonQt-jobbet. Dummy-jobbet siger: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "En statusmeddelelse til dummy PythonQt-job." diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index f1cb1f904..c4d22f74e 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Klick mich!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Ein neues QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Der Dummy-PythonQt-Job" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Dies ist der Dummy-PythonQt-Job. Der Dummy-Job lautet: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Eine Statusmeldung für den Dummy-PythonQt-Job." diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 8acd45b27..60403d885 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,22 +14,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Click me!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "A new QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "The Dummy PythonQt Job" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "This is the Dummy PythonQt Job. The dummy job says: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "A status message for Dummy PythonQt Job." diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index 2dbbee5fa..ffbcbe615 100644 Binary files a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po index 25dfeba9d..8c02af861 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 8174be7c0..f1b776940 100644 Binary files a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.mo differ 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 5413a331a..52423b9ba 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 2e66dde2d..5fd9775ed 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "¡Púlsame!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Una nueva QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "La Tarea PythonQt Ficticia" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Esta es la Tarea PythonQt Ficticia. La tarea ficticia dice: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Un mensaje de estado para la Tarea PythonQt Ficticia." 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 5428d948e..433a6b36f 100644 Binary files a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo differ 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 f5dd4544a..81ca167be 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 ede13fd2d..1054688a9 100644 Binary files a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.mo differ 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 110f2bce4..43d5cafea 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 4ddd1bd42..1c1cb07f3 100644 Binary files a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.mo differ 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 3356e53ce..1c2e18fea 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: es_PR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo index 4531c4685..b3a697cf5 100644 Binary files a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po index 89519e6e2..07055f6eb 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo index bac4866f9..c2c75e5f0 100644 Binary files a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po index 7bf1a9035..a1ea1c7ca 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo index 21235002f..5d58937c7 100644 Binary files a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po index fa0ed0408..4548c5fd8 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 50359b7f7..bcd312c1c 100644 Binary files a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.mo differ 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 ed7b2c18c..5d5bed7f5 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo index 5743c77f7..5e5910ffd 100644 Binary files a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po index ef2813e7b..1d6320d50 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 5a5de958e..dc75bb11d 100644 Binary files a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.mo differ 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 972142093..ea40c04ef 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo index a8b22bca5..32b8a0ceb 100644 Binary files a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po index eaaf56ade..0d4fee1e9 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo index c7540dffc..d9c195021 100644 Binary files a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po index 2b3b7e3e5..7ed082d94 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index f78377de7..5c5985fd3 100644 Binary files a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po index f8027af66..66a033eaf 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po index 1c8031418..ce9b96e74 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Klikni me!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Novi QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Testni PythonQt posao" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Ovo je testni PythonQt posao. Testni posao kaže: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Statusna poruka za testni PythonQt posao." diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index 20fedc75c..950e98a8f 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Kattints ide!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Egy új QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Egy PythonQt Job teszt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Ez egy PythonQt Job teszt. A teszt job azt mondja: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Sztátus üzenet egy PythonQt Job-hoz." diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index 8b7d7d8a7..47281b71b 100644 Binary files a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po index 6e8c746bc..a532ddb90 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Klik saya!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "QLabel baru." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Dummy PythonQt Job" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Ini adalah Dummy PythonQt Job. Dummy job mengatakan: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Sebuah pesan status untuk Dummy PythonQt Job." diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index 903af0804..e7dff0abf 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Smelltu mig!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Nýtt QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Dummy PythonQt Job" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Þetta er Dummy PythonQt Job. Dummy job segir: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Stöðuskilaboð fyrir Dummy PythonQt Job." 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 00e27f86e..875441a60 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -19,22 +19,22 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Clicca qui!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Una nuova QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Il Job Dummy PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Questo è il Job Dummy PythonQt. Il dummy job notifica: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Un messaggio di stato per il Job Dummy PythonQt." diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index a4f1b4a1a..15a041811 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "クリックしてください!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "新しいQLabel" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "ダミーのPythonQtジョブ" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "これはダミーのPythonQtジョブです。ダミーのジョブの出力: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "ダミーのPythonQtジョブの状態" diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index b990bfd0d..0a037399e 100644 Binary files a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po index 750240ef8..1dbdf6d08 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: kk\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo index 29f3fd442..ada6596c3 100644 Binary files a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po index 8feeba1a1..660dc84b1 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index de98bb0c4..b582bd4d9 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Spustelėkite mane!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Naujas QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Fiktyvi PythonQt užduotis" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Tai yra fiktyvi PythonQt užduotis. Fiktyvi užduotis sako: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Fiktyvios PythonQt užduoties būsenos pranešimas." diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 2bd66530c..76efd92a2 100644 Binary files a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po index 75d49d10b..4edb15855 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: mr\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo index ceffc42e7..098ce5617 100644 Binary files a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po index c3ac91bdd..7e8f7b52d 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo index 3915833c3..59993a15d 100644 Binary files a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po index de44e4893..708c0e74a 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Klik mij!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Een nieuw QLabel" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "De Dummy PythonQt opdracht" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Dit is de Dummy PythonQt opdracht. De opdracht zegt: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Een statusbericht voor de Dummy PythonQt opdracht." diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index 4d822d905..1168a551f 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -3,13 +3,13 @@ # FIRST AUTHOR , YEAR. # # Translators: -# m4sk1n , 2016 +# m4sk1n , 2016 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: m4sk1n , 2016\n" +"Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ANSI_X3.4-1968\n" @@ -18,22 +18,22 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Naciśnij mnie!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Nowy QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Zadanie Dummy PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "To jest zadanie Dummy PythonQt mówiące: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Wiadomość o stanie zadania Dummy PythonQt." 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 bd216b618..26ffe2496 100644 Binary files a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo differ 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 567daffa7..8848a959b 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 3ebfd0e31..c2b183d9c 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" @@ -18,22 +18,22 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Clique em mim!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Uma nova QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "O trabalho de modelo do PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Este é o trabalho do modelo PythonQt. O trabalho fictício diz: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Uma mensagem de status para Dummy PythonQt Job." 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 ddf88b310..e8bd8aa68 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Clique-me!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Uma nova QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "A Tarefa Dummy PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Esta é a tarefa Dummy PythonQt. A tarefa dummy diz: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Uma mensagem de estado para a Tarefa Dummy PythonQt." diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo index a544fce6f..5711768ee 100644 Binary files a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po index 8936078c0..9c5b644b0 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Clic aici!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Un nou QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Un job job fictiv PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Acesta este jobul fictiv PythonQt. Descrierea jobului: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Un mesaj de stare pentru jobul fictiv PythonQt." diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index 76efdb214..8539a75e2 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Нажать здесь!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Новый QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "The Dummy PythonQt Job" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index e75131d26..970ef7b35 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Kliknite sem!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Nová menovka QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Fiktívna úloha PythonQt" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Toto je fiktívna úloha PythonQt. Fiktívna úloha hovorí: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Stavová správa pre fiktívnu úlohu PythonQt." diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 5f172e73a..8d494e7e5 100644 Binary files a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po index 789d1eb82..a9211152b 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index 6cefdbce6..5b5fe165b 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Кликни ме!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Нова КуОзнака" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Провизорни ПитонКуТ посао" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Ово је провизорни ПитонКуТ посао. Он каже: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Порука стања за провизорни ПитонКуТ посао." 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 80a291a87..4ef5e29a7 100644 Binary files a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.mo differ 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 52974bca7..d6d031a73 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo index 1ca8352c7..d50f2799c 100644 Binary files a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po index f64f8dd23..8ac6f7409 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo index 1c8f7242a..2cd898fe8 100644 Binary files a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po index 37023f59e..bf56c2668 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 3a7597b5b..085c1bf44 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "Buraya tıkla!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "Yeni bir QLabel." -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Kukla PythonQt Çalışması" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "Kukla PythonQt Çalışması. Kukla çalışması şöyle der: {}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "Kukla PythonQt Çalışması için bir durum mesajı." diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index afc6fa3c4..d54db0d0b 100644 Binary files a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po index 25139126d..57d30511d 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo index 445a342d4..f03ddc03b 100644 Binary files a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po index ab998de39..6df2dfa96 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo index af8f11c80..d804aec58 100644 Binary files a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po index 6b209f819..036445025 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -15,22 +15,22 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "" 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 b0b4d4765..997842633 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "按我按我!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "一个平淡无奇的 QLabel。" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "PythonQt 任务" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "我是个 PythonQt 任务。任务提示:{}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "来自 PythonQt 任务的状态消息。" 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 934a330a4..3b410c18d 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-03-20 00:49+0000\n" +"POT-Creation-Date: 2017-03-31 00:50+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" @@ -18,22 +18,22 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: src/modules/dummypythonqt/main.py:80 +#: src/modules/dummypythonqt/main.py:84 msgid "Click me!" msgstr "點擊我!" -#: src/modules/dummypythonqt/main.py:90 +#: src/modules/dummypythonqt/main.py:94 msgid "A new QLabel." msgstr "一個新的 QLabel。" -#: src/modules/dummypythonqt/main.py:176 +#: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "假的 PythonQt 工作" -#: src/modules/dummypythonqt/main.py:179 +#: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" msgstr "這是一個假的 PythonQt 工作。假工作表示:{}" -#: src/modules/dummypythonqt/main.py:183 +#: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." msgstr "假的 PythonQt 工作的狀態訊息。" diff --git a/src/modules/dummypythonqt/main.py b/src/modules/dummypythonqt/main.py index 79a1c3b42..80b8fc4e9 100644 --- a/src/modules/dummypythonqt/main.py +++ b/src/modules/dummypythonqt/main.py @@ -4,6 +4,7 @@ # === This file is part of Calamares - === # # Copyright 2016-2017, Teo Mrnjavac +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -54,10 +55,13 @@ _ = gettext.gettext # exposed as a single QWidget, returned by the widget function. # # For convenience, both C++ and PythonQt ViewSteps are considered to be -# implementations of ViewStep.h. Additionally, the Calamares PythonQt API allows -# Python developers to keep their identifiers more Pythonic on the Python side. -# Thus, all of the following are considered valid method identifiers in a -# ViewStep implementation: isNextEnabled, isnextenabled, is_next_enabled. +# implementations of ViewStep.h. Additionally, the Calamares PythonQt API +# allows Python developers to keep their identifiers more Pythonic on the +# Python side. Thus, all of the following are considered valid method +# identifiers in a ViewStep implementation: isNextEnabled, isnextenabled, +# is_next_enabled. + + @calamares_module class DummyPythonQtViewStep: def __init__(self): @@ -80,10 +84,10 @@ class DummyPythonQtViewStep: btn.setText(_("Click me!")) self.main_widget.layout().addWidget(btn) - # The syntax for signal-slot connections is very simple, though slightly - # different from the C++ equivalent. There are no SIGNAL and SLOT - # macros, and a signal can be connected to any Python method (without a - # special "slot" designation). + # The syntax for signal-slot connections is very simple, though + # slightly different from the C++ equivalent. There are no SIGNAL and + # SLOT macros, and a signal can be connected to any Python method + # (without a special "slot" designation). btn.connect("clicked(bool)", self.on_btn_clicked) def on_btn_clicked(self): @@ -93,26 +97,27 @@ class DummyPythonQtViewStep: return "Dummy PythonQt ViewStep" def isNextEnabled(self): - return True # The "Next" button should be clickable + return True # The "Next" button should be clickable def isBackEnabled(self): - return True # The "Back" button should be clickable + return True # The "Back" button should be clickable def isAtBeginning(self): # True means the currently shown UI page is the first page of this - # module, thus a "Back" button click will not be handled by this module, - # and will cause a skip to the previous ViewStep instead (if any). - # Fals means that the present ViewStep provides other UI pages placed - # logically "before" the current one, thus a "Back" button click will - # be handled by this module instead of skipping to another ViewStep. - # A module (ViewStep) with only one page will always return True here. + # module, thus a "Back" button click will not be handled by this + # module and will cause a skip to the previous ViewStep instead + # (if any). False means that the present ViewStep provides other UI + # pages placed logically "before" the current one, thus a "Back" button + # click will be handled by this module instead of skipping to another + # ViewStep. A module (ViewStep) with only one page will always return + # True here. return True def isAtEnd(self): # True means the currently shown UI page is the last page of this - # module, thus a "Next" button click will not be handled by this module, - # and will cause a skip to the next ViewStep instead (if any). - # Fals means that the present ViewStep provides other UI pages placed + # module, thus a "Next" button click will not be handled by this + # module and will cause a skip to the next ViewStep instead (if any). + # False means that the present ViewStep provides other UI pages placed # logically "after" the current one, thus a "Next" button click will # be handled by this module instead of skipping to another ViewStep. # A module (ViewStep) with only one page will always return True here. @@ -139,9 +144,9 @@ class DummyPythonQtViewStep: # user-visible strings must be retranslated (by calling tr() in C++ or # _() in Python) and reapplied on the relevant widgets. # When the user picks a new UI translation language, Qt raises a QEvent - # of type LanguageChange, which propagates through the QObject hierarchy. - # By catching and reacting to this event, we can show user-visible - # strings in the new language at the right time. + # of type LanguageChange, which propagates through the QObject + # hierarchy. By catching and reacting to this event, we can show + # user-visible strings in the new language at the right time. # The C++ side of the Calamares PythonQt API catches the LanguageChange # event and calls the present method. It is then up to the module # developer to add here all the needed code to load the module's @@ -168,6 +173,8 @@ class DummyPythonQtViewStep: # same rules apply as for ViewStep. No decorators are necessary here, because # only the ViewStep implementation is the unique entry point, and a module can # have any number of jobs. + + class DummyPQJob: def __init__(self, my_msg): self.my_msg = my_msg diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index 2b1149c5a..7d0ac2c54 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -5,6 +5,7 @@ # # Copyright 2014, Kevin Kofler # Copyright 2016, Philip Müller +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,7 +26,8 @@ from libcalamares.utils import check_target_env_call def run(): - """ Generate machine-id using dbus and systemd. + """ + Generate machine-id using dbus and systemd. :return: """ @@ -33,8 +35,8 @@ def run(): enable_systemd = libcalamares.job.configuration["systemd"] enable_dbus = libcalamares.job.configuration["dbus"] enable_symlink = libcalamares.job.configuration["symlink"] - target_systemd_machineid_file = "{}/etc/machine-id".format(root_mount_point) - target_dbus_machineid_file = "{}/var/lib/dbus/machine-id".format(root_mount_point) + target_systemd_machineid_file = root_mount_point + "/etc/machine-id" + target_dbus_machineid_file = root_mount_point + "/var/lib/dbus/machine-id" if os.path.exists(target_dbus_machineid_file): os.remove(target_dbus_machineid_file) @@ -46,7 +48,8 @@ def run(): if enable_dbus: if enable_symlink and os.path.exists(target_systemd_machineid_file): - check_target_env_call(["ln", "-s", "/etc/machine-id", "/var/lib/dbus/machine-id"]) + check_target_env_call(["ln", "-s", "/etc/machine-id", + "/var/lib/dbus/machine-id"]) else: check_target_env_call(["dbus-uuidgen", "--ensure"]) diff --git a/src/modules/plymouthcfg/main.py b/src/modules/plymouthcfg/main.py index 9612735cd..dd59f84d3 100644 --- a/src/modules/plymouthcfg/main.py +++ b/src/modules/plymouthcfg/main.py @@ -4,6 +4,7 @@ # === This file is part of Calamares - === # # Copyright 2016, Artoo +# Copyright 2017, Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,7 +36,8 @@ class PlymouthController: def setTheme(self): plymouth_theme = libcalamares.job.configuration["plymouth_theme"] target_env_call(["sed", "-e", 's|^.*Theme=.*|Theme=' + - plymouth_theme + '|', "-i", "/etc/plymouth/plymouthd.conf"]) + plymouth_theme + '|', "-i", + "/etc/plymouth/plymouthd.conf"]) def detect(self): isPlymouth = target_env_call(["which", "plymouth"]) @@ -50,7 +52,8 @@ class PlymouthController: def run(self): if self.detect() == 0: - if "plymouth_theme" in libcalamares.job.configuration and libcalamares.job.configuration["plymouth_theme"] is not None: + if (("plymouth_theme" in libcalamares.job.configuration) and + (libcalamares.job.configuration["plymouth_theme"] is not None)): self.setTheme() return None @@ -58,4 +61,3 @@ class PlymouthController: def run(): pc = PlymouthController() return pc.run() - diff --git a/src/modules/removeuser/main.py b/src/modules/removeuser/main.py index f31e1dc9d..45ccac6a1 100644 --- a/src/modules/removeuser/main.py +++ b/src/modules/removeuser/main.py @@ -4,6 +4,7 @@ # === This file is part of Calamares - === # # Copyright 2015, Teo Mrnjavac +# Copyright 2017. Alf Gaida # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,12 +24,16 @@ import libcalamares def run(): - """ Remove live user from target system """ + """ + Remove live user from target system + """ username = libcalamares.job.configuration["username"] try: - libcalamares.utils.check_target_env_call(["userdel", "-f", "-r", username]) + libcalamares.utils.check_target_env_call(["userdel", "-f", + "-r", username]) except subprocess.CalledProcessError as e: - libcalamares.utils.debug("Cannot remove user.", "'userdel' terminated with exit code {}.".format(e.returncode)) - + libcalamares.utils.debug("Cannot remove user.", + "'userdel' terminated with exit code", + "{}.".format(e.returncode)) return None