diff --git a/.tx/config b/.tx/config index 0bbb150eb..3cf9489f6 100644 --- a/.tx/config +++ b/.tx/config @@ -18,3 +18,9 @@ source_file = calamares.desktop source_lang = en type = DESKTOP +[calamares.python] +file_filter = lang/python//LC_MESSAGES/python.po +source_file = lang/python.pot +source_lang = en +type = PO + diff --git a/CMakeModules/CalamaresAddModuleSubdirectory.cmake b/CMakeModules/CalamaresAddModuleSubdirectory.cmake index a050f42c5..1b60c59a7 100644 --- a/CMakeModules/CalamaresAddModuleSubdirectory.cmake +++ b/CMakeModules/CalamaresAddModuleSubdirectory.cmake @@ -1,4 +1,5 @@ include( CMakeColors ) +include( CalamaresAddTranslations ) set( MODULE_DATA_DESTINATION share/calamares/modules ) @@ -32,14 +33,6 @@ function( calamares_add_module_subdirectory ) endif() endforeach() - # We copy over the lang directory, if any - if( IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/lang" ) - file( COPY "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/lang" - DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/${SUBDIRECTORY}" ) - install( DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${SUBDIRECTORY}/lang" - DESTINATION ${MODULE_DESTINATION} ) - endif() - message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${SUBDIRECTORY}${ColorReset}" ) if( NOT CMAKE_BUILD_TYPE STREQUAL "Release" ) message( " ${Green}TYPE:${ColorReset} jobmodule" ) @@ -54,6 +47,16 @@ function( calamares_add_module_subdirectory ) endif() message( "" ) endif() + # We copy over the lang directory, if any + if( IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/lang" ) + install_calamares_gettext_translations( + ${SUBDIRECTORY} + SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/lang" + FILENAME ${SUBDIRECTORY}.mo + RENAME calamares-${SUBDIRECTORY}.mo + ) + endif() + else() message( "-- ${BoldYellow}Warning:${ColorReset} tried to add module subdirectory ${BoldRed}${SUBDIRECTORY}${ColorReset} which has no CMakeLists.txt or module.desc." ) message( "" ) diff --git a/CMakeModules/CalamaresAddTranslations.cmake b/CMakeModules/CalamaresAddTranslations.cmake new file mode 100644 index 000000000..b0a623908 --- /dev/null +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -0,0 +1,121 @@ +include( CMakeParseArguments ) + +# Internal macro for adding the C++ / Qt translations to the +# build and install tree. Should be called only once, from +# src/calamares/CMakeLists.txt. +macro(add_calamares_translations language) + list( APPEND CALAMARES_LANGUAGES ${ARGV} ) + + set( calamares_i18n_qrc_content "\n" ) + + # calamares and qt language files + set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) + foreach( lang ${CALAMARES_LANGUAGES} ) + set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}calamares_${lang}.qm\n" ) + list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/calamares_${lang}.ts" ) + endforeach() + + set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) + set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) + + file( WRITE ${CMAKE_BINARY_DIR}/lang/calamares_i18n.qrc "${calamares_i18n_qrc_content}" ) + + qt5_add_translation(QM_FILES ${TS_FILES}) + + ## HACK HACK HACK - around rcc limitations to allow out of source-tree building + set( trans_file calamares_i18n ) + set( trans_srcfile ${CMAKE_BINARY_DIR}/lang/${trans_file}.qrc ) + set( trans_infile ${CMAKE_CURRENT_BINARY_DIR}/${trans_file}.qrc ) + set( trans_outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${trans_file}.cxx ) + + # Copy the QRC file to the output directory + add_custom_command( + OUTPUT ${trans_infile} + COMMAND ${CMAKE_COMMAND} -E copy ${trans_srcfile} ${trans_infile} + MAIN_DEPENDENCY ${trans_srcfile} + ) + + # Run the resource compiler (rcc_options should already be set) + add_custom_command( + OUTPUT ${trans_outfile} + COMMAND "${Qt5Core_RCC_EXECUTABLE}" + ARGS ${rcc_options} -name ${trans_file} -o ${trans_outfile} ${trans_infile} + MAIN_DEPENDENCY ${trans_infile} + DEPENDS ${QM_FILES} + ) +endmacro() + +# Internal macro for Python translations +# +# Translations of the Python modules that don't have their own +# lang/ subdirectories -- these are collected in top-level +# lang/python//LC_MESSAGES/python.mo +macro(add_calamares_python_translations language) + set( CALAMARES_LANGUAGES "" ) + list( APPEND CALAMARES_LANGUAGES ${ARGV} ) + + install_calamares_gettext_translations( python + SOURCE_DIR ${CMAKE_SOURCE_DIR}/lang/python + FILENAME python.mo + RENAME calamares-python.mo + ) +endmacro() + +# Installs a directory containing language-code-labeled subdirectories with +# gettext data into the appropriate system directory. Allows renaming the +# .mo files during install to avoid namespace clashes. +# +# install_calamares_gettext_translations( +# NAME +# SOURCE_DIR path/to/lang +# FILENAME +# [RENAME ] +# ) +# +# For all of the (global) translation languages enabled for Calamares, +# try installing $SOURCE_DIR/$lang/LC_MESSAGES/.mo into the +# system gettext data directory (e.g. share/locale/), possibly renaming +# filename.mo to renamed.mo in the process. +function( install_calamares_gettext_translations ) + # parse arguments ( name needs to be saved before passing ARGN into the macro ) + set( NAME ${ARGV0} ) + set( oneValueArgs NAME SOURCE_DIR FILENAME RENAME ) + cmake_parse_arguments( TRANSLATION "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + + if( NOT TRANSLATION_NAME ) + set( TRANSLATION_NAME ${NAME} ) + endif() + if( NOT TRANSLATION_FILENAME ) + set( TRANSLATION_FILENAME "${TRANSLATION_NAME}.mo" ) + endif() + if( NOT TRANSLATION_RENAME ) + set( TRANSLATION_RENAME "${TRANSLATION_FILENAME}" ) + endif() + + message(STATUS "Installing gettext translations for ${TRANSLATION_NAME}") + message(STATUS " Installing ${TRANSLATION_FILENAME} from ${TRANSLATION_SOURCE_DIR}") + + set( TRANSLATION_NAME "${NAME}" ) + set( INSTALLED_TRANSLATIONS "" ) + foreach( lang ${CALAMARES_TRANSLATION_LANGUAGES} ) # Global + set( lang_mo "${TRANSLATION_SOURCE_DIR}/${lang}/LC_MESSAGES/${TRANSLATION_FILENAME}" ) + if( lang STREQUAL "en" ) + message( STATUS " Skipping ${TRANSLATION_NAME} translations for en_US" ) + else( EXISTS ${lang_mo} ) + list( APPEND INSTALLED_LANGUAGES "${lang}" ) + install( + FILES ${lang_mo} + DESTINATION ${CMAKE_INSTALL_LOCALEDIR}/${lang}/LC_MESSAGES/ + RENAME ${TRANSLATION_RENAME} + ) + # TODO: make translations available in build dir too, for + # translation when running calamares -d from builddir. + set(_build_lc ${CMAKE_BINARY_DIR}/lang/${lang}/LC_MESSAGES/) + file(COPY ${lang_mo} DESTINATION ${_build_lc}) + if (NOT TRANSLATION_FILENAME STREQUAL TRANSLATION_RENAME) + file(RENAME ${_build_lc}${TRANSLATION_FILENAME} ${_build_lc}${TRANSLATION_RENAME}) + endif() + + endif() + endforeach() +endfunction() diff --git a/calamares.desktop b/calamares.desktop index c2e1c5f7f..5a0834e3b 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -18,26 +18,50 @@ Name[ast]=Calamares Icon[ast]=calamares GenericName[ast]=Instalador del sistema Comment[ast]=Calamares — Instalador del sistema +Name[he]=קלמארס +Icon[he]=קלמארס +GenericName[he]=אשף התקנה +Comment[he]=קלמארס - אשף התקנה Name[hr]=Calamares Icon[hr]=calamares GenericName[hr]=Instalacija sustava Comment[hr]=Calamares — Instalacija sustava -Name[ru]=Calamares -Icon[ru]=calamares -GenericName[ru]=Установщик системы -Comment[ru]=Calamares - Установщик системы -Name[sv]=Calamares -Icon[sv]=calamares -GenericName[sv]=Systeminstallerare -Comment[sv]=Calamares — Systeminstallerare -Name[da]=Calamares -Icon[da]=calamares -GenericName[da]=Systeminstallationsprogram -Comment[da]=Calamares — Systeminstallationsprogram Name[de]=Calamares Icon[de]=calamares GenericName[de]=Installation des Betriebssystems Comment[de]=Calamares - Installation des Betriebssystems +Name[id]=Calamares +Icon[id]=calamares +GenericName[id]=Pemasang +Comment[id]=Calamares — Pemasang Sistem +Name[ca]=Calamares +Icon[ca]=calamares +GenericName[ca]=Instal·lador de sistema +Comment[ca]=Calamares — Instal·lador de sistema +Name[sk]=Calamares +Icon[sk]=calamares +GenericName[sk]=Inštalátor systému +Comment[sk]=Calamares — Inštalátor systému +Name[ja]=Calamares +Icon[ja]=calamares +GenericName[ja]=システムインストーラー +Comment[ja]=Calamares — システムインストーラー +Name[zh_TW]=Calamares +Icon[zh_TW]=calamares +GenericName[zh_TW]=系統安裝程式 +Comment[zh_TW]=Calamares ── 系統安裝程式 +Name[da]=Calamares +Icon[da]=calamares +GenericName[da]=Systeminstallationsprogram +Comment[da]=Calamares — Systeminstallationsprogram +Name[sv]=Calamares +Icon[sv]=calamares +GenericName[sv]=Systeminstallerare +Comment[sv]=Calamares — Systeminstallerare +Name[ru]=Calamares +Icon[ru]=calamares +GenericName[ru]=Установщик системы +Comment[ru]=Calamares - Установщик системы Name[lt]=Calamares Icon[lt]=calamares GenericName[lt]=Sistemos diegimas į kompiuterį @@ -46,6 +70,10 @@ Name[en_GB]=Calamares Icon[en_GB]=calamares GenericName[en_GB]=System Installer Comment[en_GB]=Calamares — System Installer +Name[es]=Calamares +Icon[es]=calamares +GenericName[es]=Instalador del Sistema +Comment[es]=Calamares — Instalador del Sistema Name[pl]=Calamares Icon[pl]=calamares GenericName[pl]=Instalator systemu @@ -54,6 +82,14 @@ Name[pt_PT]=Calamares Icon[pt_PT]=calamares GenericName[pt_PT]=Instalador de Sistema Comment[pt_PT]=Calamares - Instalador de Sistema +Name[fr]=Calamares +Icon[fr]=calamares +GenericName[fr]=Installateur système +Comment[fr]=Calamares - Installateur système +Name[tr_TR]=Calamares +Icon[tr_TR]=calamares +GenericName[tr_TR]=Sistem Yükleyici +Comment[tr_TR]=Calamares — Sistem Yükleyici Name[nl]=Calamares Icon[nl]=calamares GenericName[nl]=Installatieprogramma diff --git a/ci/txpull.sh b/ci/txpull.sh index 5c9ae8773..6c5b20b2b 100755 --- a/ci/txpull.sh +++ b/ci/txpull.sh @@ -43,7 +43,7 @@ BOILERPLATE="Automatic merge of Transifex translations" git add --verbose lang/calamares*.ts git commit "$AUTHOR" --message="[core] $BOILERPLATE" | true -git add --verbose lang/desktop*.desktop calamares.desktop +git add --verbose calamares.desktop git commit "$AUTHOR" --message="[desktop] $BOILERPLATE" | true # Transifex updates the PO-Created timestamp also when nothing interesting @@ -68,4 +68,10 @@ for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do fi done +for POFILE in $(find lang -name "python.po") ; do + msgfmt -o ${POFILE%.po}.mo $POFILE +done +git add --verbose lang/python* +git commit "$AUTHOR" --message="[python] $BOILERPLATE" | true + # git push --set-upstream origin master diff --git a/ci/txpush.sh b/ci/txpush.sh index 186ede9b6..5ec2c0614 100755 --- a/ci/txpush.sh +++ b/ci/txpush.sh @@ -21,6 +21,12 @@ test -f "CMakeLists.txt" || { echo "! Not at Calamares top-level" ; exit 1 ; } test -f ".tx/config" || { echo "! Not at Calamares top-level" ; exit 1 ; } test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ; } +if test "x$1" = "x--no-tx" ; then + tx() { + echo "Skipped tx $*" + } +fi + ### CREATE TRANSLATIONS # # Use local tools (depending on type of source) to create translation @@ -30,7 +36,7 @@ export QT_SELECT=5 lupdate src/ -ts -no-obsolete lang/calamares_en.ts tx push --source --no-interactive -r calamares.calamares-master -tx push --no-interactive -r calamares.fdo +tx push --source --no-interactive -r calamares.fdo ### PYTHON MODULES # @@ -47,6 +53,7 @@ tx push --no-interactive -r calamares.fdo # Ubuntu PYGETTEXT=pygettext3 +SHARED_PYTHON="" for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do FILES=$(find "$MODULE_DIR" -name "*.py" -a -type f) if test -n "$FILES" ; then @@ -57,6 +64,14 @@ for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do tx set -r calamares.${MODULE_NAME} --source -l en ${MODULE_DIR}/lang/${MODULE_NAME}.pot tx push --source --no-interactive -r calamares.${MODULE_NAME} fi + else + SHARED_PYTHON="$SHARED_PYTHON $FILES" fi fi done + +if test -n "$SHARED_PYTHON" ; then + ${PYGETTEXT} -p lang -d python $SHARED_PYTHON + tx set -r calamares.python --source -l en lang/python.pot + tx push --source --no-interactive -r calamares.python +fi diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 8de6e0e04..ca701e2b0 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &غيّر... - + Set timezone to %1/%2.<br/> اضبط المنطقة الزّمنيّة إلى %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index a454992bd..edfe7fc7a 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -1231,12 +1231,12 @@ L'instalador colará y perderánse toles camudancies. LocalePage - + The system language will be set to %1. Afitaráse la llingua'l sistema a %1. - + The numbers and dates locale will be set to %1. Los númberos y dates afitaránse a %1. @@ -1257,12 +1257,12 @@ L'instalador colará y perderánse toles camudancies. &Cambiar... - + Set timezone to %1/%2.<br/> Afitóse'l fusu horariu a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 482981aa5..04dfbebee 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -1232,12 +1232,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1258,12 +1258,12 @@ The installer will quit and all changes will be lost. &Промени... - + Set timezone to %1/%2.<br/> Постави часовата зона на %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 5d94701ee..f53be4aa2 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -1231,12 +1231,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. LocalePage - + The system language will be set to %1. La llengua del sistema s'establirà a %1. - + The numbers and dates locale will be set to %1. Els números i les dates de la configuració local s'establiran a %1. @@ -1257,12 +1257,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. &Canvi... - + Set timezone to %1/%2.<br/> Estableix la zona horària a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index c16c96740..52fd95815 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -1231,12 +1231,12 @@ Instalační program bude ukončen a všechny změny ztraceny. LocalePage - + The system language will be set to %1. Jazyk systému bude nastaven na 1%. - + The numbers and dates locale will be set to %1. Čísla a data národního prostředí budou nastavena na %1. @@ -1257,12 +1257,12 @@ Instalační program bude ukončen a všechny změny ztraceny. &Změnit... - + Set timezone to %1/%2.<br/> Nastavit časové pásmo na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 08411f70d..cce229540 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -1231,12 +1231,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. LocalePage - + The system language will be set to %1. Systemsproget vil blive sat til %1. - + The numbers and dates locale will be set to %1. Lokalitet for tal og datoer vil blive sat til %1. @@ -1257,12 +1257,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.&Skift... - + Set timezone to %1/%2.<br/> Sæt tidszone til %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 24f78addb..5ec24e3f6 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -240,7 +240,7 @@ Ausgabe: Cancel installation without changing the system. - + Lösche die Installation ohne das System zu ändern. @@ -257,17 +257,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Yes - + &Ja &No - + &Nein &Close - + &Schließen @@ -292,12 +292,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Done - + &Erledigt The installation is complete. Close the installer. - + Die Installation ist abgeschlossen. Schließe das Installationsprogramm. @@ -553,7 +553,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. MiB - + MiB @@ -928,7 +928,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. MiB - + MiB @@ -1032,7 +1032,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Installation fehlgeschlagen</h1><br/>%1 wurde nicht auf deinem Computer installiert.<br/>Die Fehlermeldung lautet: %2. @@ -1231,12 +1231,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. LocalePage - + The system language will be set to %1. Die Systemsprache wird auf %1 gestellt. - + The numbers and dates locale will be set to %1. Das Format für Zahlen und Datum wird auf %1 gesetzt. @@ -1257,12 +1257,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Ändern... - + Set timezone to %1/%2.<br/> Setze Zeitzone auf %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -1837,7 +1837,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. The screen is too small to display the installer. - + Der Bildschirm ist zu klein um das Installationsprogramm anzuzeigen. @@ -2250,7 +2250,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Willkommen beim Calamares-Installationsprogramm für %1. @@ -2260,7 +2260,9 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + + +<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Danke an: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg und das <a href="https://www.transifex.com/calamares/calamares/">Calamares Übersetzungs-Team</a>.<br/><br/><a href="http://calamares.io/">Die Calamares Entwicklung wird gefördert von<br/><a href="http://www.blue-systems.com/"> Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index e813d90da..1fe563f5b 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. Η τοπική γλώσσα του συστήματος έχει οριστεί σε %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Αλλαγή... - + Set timezone to %1/%2.<br/> Ορισμός της ζώνης ώρας σε %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index c42b32856..b86a2fd55 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. The system language will be set to %1. - + The numbers and dates locale will be set to %1. The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Change... - + Set timezone to %1/%2.<br/> Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 2f58c6872..d7477a149 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Change... - + Set timezone to %1/%2.<br/> Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 2fa296be0..3197cad6c 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -1232,12 +1232,12 @@ Saldrá del instalador y se perderán todos los cambios. LocalePage - + The system language will be set to %1. El idioma del sistema se establecerá a %1. - + The numbers and dates locale will be set to %1. La localización de números y fechas se establecerá a %1. @@ -1258,12 +1258,12 @@ Saldrá del instalador y se perderán todos los cambios. &Cambiar... - + Set timezone to %1/%2.<br/> Configurar zona horaria a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index a3a796c36..0a186e7ad 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -1231,12 +1231,12 @@ El instalador se cerrará y se perderán todos los cambios. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ El instalador se cerrará y se perderán todos los cambios. &Cambiar - + Set timezone to %1/%2.<br/> Establecer la zona horaria a %1%2. <br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 14f6f7a5c..423da41d6 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -1233,12 +1233,12 @@ El instalador terminará y se perderán todos los cambios. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1259,12 +1259,12 @@ El instalador terminará y se perderán todos los cambios. &Cambiar... - + Set timezone to %1/%2.<br/> Definir la zona horaria como %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index c8e9f1715..d45dd0fe7 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -1230,12 +1230,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1256,12 +1256,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index b5244d131..0e0205f98 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 8e4276dd5..21fbb3fb9 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -1228,12 +1228,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1254,12 +1254,12 @@ The installer will quit and all changes will be lost. &Aldatu... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 043f13c11..6c4491030 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index f94828905..2e85684bf 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -1231,12 +1231,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. &Vaihda... - + Set timezone to %1/%2.<br/> Aseta aikavyöhyke %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 3292e5afe..1a3d85d09 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -1231,12 +1231,12 @@ L'installateur se fermera et les changements seront perdus. LocalePage - + The system language will be set to %1. La langue du système sera réglée sur %1. - + The numbers and dates locale will be set to %1. Les nombres et les dates seront réglés sur %1. @@ -1257,12 +1257,12 @@ L'installateur se fermera et les changements seront perdus. &Modifier... - + Set timezone to %1/%2.<br/> Configurer le fuseau horaire à %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 94de21f8a..7a0b7a688 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index 98e1e6dcf..721764b56 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -1232,12 +1232,12 @@ O instalador pecharase e perderanse todos os cambios. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1258,12 +1258,12 @@ O instalador pecharase e perderanse todos os cambios. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index b3ddb8367..5bcb29bfd 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index b542db48e..7727fd4e5 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. שפת המערכת תוגדר להיות %1. - + The numbers and dates locale will be set to %1. תבנית של המספרים והתאריכים של המיקום יוגדרו להיות %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &החלף... - + Set timezone to %1/%2.<br/> הגדרת אזור זמן ל %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 92246c548..a9f4acd4b 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index bba908f49..b13a3ff46 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -1231,12 +1231,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. LocalePage - + The system language will be set to %1. Jezik sustava će se postaviti na %1. - + The numbers and dates locale will be set to %1. Jezična shema brojeva i datuma će se postaviti na %1. @@ -1257,12 +1257,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.&Promijeni... - + Set timezone to %1/%2.<br/> Postavi vremesku zonu na %1%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index c8b56d845..358556554 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -1232,12 +1232,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l LocalePage - + The system language will be set to %1. A rendszer területi beállítása %1. - + The numbers and dates locale will be set to %1. A számok és dátumok területi beállítása %1. @@ -1258,12 +1258,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l &Változtat... - + Set timezone to %1/%2.<br/> Időzóna beállítása %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 85a07975a..6437a17de 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -240,7 +240,7 @@ Keluaran: Cancel installation without changing the system. - + Batal pemasangan tanpa mengubah sistem yang ada. @@ -257,17 +257,17 @@ Pemasangan akan ditutup dan semua perubahan akan hilang. &Yes - + &Ya &No - + &Tidak &Close - + &Tutup @@ -292,12 +292,12 @@ Pemasangan akan ditutup dan semua perubahan akan hilang. &Done - + &Kelar The installation is complete. Close the installer. - + Pemasangan sudah lengkap. Tutup pemasang. @@ -555,7 +555,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. MiB - + MiB @@ -930,7 +930,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. MiB - + MiB @@ -1034,7 +1034,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Pemasangan Gagal</h1><br/>%1 tidak bisa dipasang pada komputermu.<br/>Pesan galatnya adalah: %2. @@ -1233,12 +1233,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. LocalePage - + The system language will be set to %1. Bahasa sistem akan disetel ke %1. - + The numbers and dates locale will be set to %1. Nomor dan tanggal lokal akan disetel ke %1. @@ -1259,12 +1259,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.&Ubah... - + Set timezone to %1/%2.<br/> Setel zona waktu ke %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -1839,7 +1839,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. The screen is too small to display the installer. - + Layar terlalu kecil untuk menampilkan pemasang. @@ -2252,7 +2252,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Selamat datang di Calamares pemasang untuk %1.</h1> @@ -2262,7 +2262,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1<br/><strong>%2<br/>untuk %3</strong><br/><br/>Hak Cipta 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Hak Cipta 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan <a href="https://www.transifex.com/calamares/calamares/">regu penerjemah Calamares</a>.<br/><br/>Pengembangan <a href="http://calamares.io/">Calamares</a> disponsori oleh<br/> <a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index 868913959..178168690 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -1231,12 +1231,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. LocalePage - + The system language will be set to %1. Tungumál kerfisins verður sett sem %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. &Breyta... - + Set timezone to %1/%2.<br/> Setja tímabelti sem %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 223e60035..f8196bdc0 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -1231,12 +1231,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno LocalePage - + The system language will be set to %1. La lingua di sistema sarà impostata a %1. - + The numbers and dates locale will be set to %1. I numeri e le date locali saranno impostati a %1. @@ -1257,12 +1257,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno &Cambia... - + Set timezone to %1/%2.<br/> Imposta il fuso orario a %1%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index e2c6bb2b2..4acd523f1 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -1032,7 +1032,7 @@ The installer will quit and all changes will be lost. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>インストールに失敗しました</h1><br/>%1 はコンピュータにインストールされませんでした。<br/>エラーメッセージ: %2. @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. システムの言語が %1 に設定されます。 - + The numbers and dates locale will be set to %1. 数字と日付のロケールが %1 に設定されます。 @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. 変更(&C)... - + Set timezone to %1/%2.<br/> タイムゾーンを %1/%2 に設定。<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -1837,7 +1837,7 @@ The installer will quit and all changes will be lost. The screen is too small to display the installer. - + インストーラーを表示するためには、画面が小さすぎます。 @@ -2260,7 +2260,7 @@ The installer will quit and all changes will be lost. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 553e8ffd2..c4830b307 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index a315bfb1d..63eca236a 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 2a37272d7..3a1173515 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -1231,12 +1231,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. LocalePage - + The system language will be set to %1. Sistemos kalba bus nustatyta į %1. - + The numbers and dates locale will be set to %1. Skaičių ir datų lokalė bus nustatyta į %1. @@ -1257,12 +1257,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. K&eisti... - + Set timezone to %1/%2.<br/> Nustatyti laiko juostą kaip %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index bd286376f..36517f34f 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index cf00efed5..308040dc9 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -1231,12 +1231,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index b2146dead..48b609cf9 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -1032,7 +1032,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Installatie Mislukt</h1><br/>%1 werd niet op de computer geïnstalleerd. <br/>De foutboodschap was: %2 @@ -1231,12 +1231,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. LocalePage - + The system language will be set to %1. De taal van het systeem zal worden ingesteld op %1. - + The numbers and dates locale will be set to %1. De getal- en datumnotatie worden ingesteld op %1. @@ -1257,12 +1257,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. &Aanpassen - + Set timezone to %1/%2.<br/> Instellen tijdzone naar %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -2260,7 +2260,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>voor %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Met dank aan: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg en het <a href="https://www.transifex.com/calamares/calamares/">Calamares vertaalteam</a>.<br/><br/>De ontwikkeling van <a href="http://calamares.io/">Calamares</a> wordt gesponsord door <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index c97fdf5e6..d3628ca66 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -1231,12 +1231,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. LocalePage - + The system language will be set to %1. Język systemu zostanie ustawiony na %1. - + The numbers and dates locale will be set to %1. Format liczb i daty zostanie ustawiony na %1. @@ -1257,12 +1257,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.&Zmień... - + Set timezone to %1/%2.<br/> Ustaw strefę czasową na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index 010d16dc3..79a039bf4 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -1231,12 +1231,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - + Set timezone to %1/%2.<br/> Strefa czasowa %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index 7af01a10a..c363d38bc 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -1233,12 +1233,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. LocalePage - + The system language will be set to %1. O idioma do sistema será definido como %1. - + The numbers and dates locale will be set to %1. O local dos números e datas será definido como %1. @@ -1259,12 +1259,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.&Mudar... - + Set timezone to %1/%2.<br/> Definir o fuso horário para %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 66c142a06..f6079afbc 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -1231,12 +1231,12 @@ O instalador será encerrado e todas as alterações serão perdidas. LocalePage - + The system language will be set to %1. A linguagem do sistema será definida para %1. - + The numbers and dates locale will be set to %1. Os números e datas locais serão definidos para %1. @@ -1257,12 +1257,12 @@ O instalador será encerrado e todas as alterações serão perdidas.&Alterar... - + Set timezone to %1/%2.<br/> Definir fuso horário para %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index efbad5e3a..da78d6a79 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -1231,12 +1231,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. LocalePage - + The system language will be set to %1. Limba sistemului va fi %1. - + The numbers and dates locale will be set to %1. Formatul numerelor și datelor calendaristice va fi %1. @@ -1257,12 +1257,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.S&chimbă - + Set timezone to %1/%2.<br/> Setează fusul orar la %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index e45353dcd..e7e86be9b 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -1230,12 +1230,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. Системным языком будет установлен %1. - + The numbers and dates locale will be set to %1. Региональным форматом чисел и дат будет установлен %1. @@ -1256,12 +1256,12 @@ The installer will quit and all changes will be lost. И&зменить... - + Set timezone to %1/%2.<br/> Установить часовой пояс на %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 109e343c8..2fa344b56 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -1231,12 +1231,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. LocalePage - + The system language will be set to %1. Jazyk systému bude nastavený na %1. - + The numbers and dates locale will be set to %1. Miestne nastavenie čísel a dátumov bude nastavené na %1. @@ -1257,12 +1257,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Z&meniť... - + Set timezone to %1/%2.<br/> Nastavenie časovej zóny na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 19e101ca2..4077a39f0 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -1231,12 +1231,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Set timezone to %1/%2.<br/> Nastavi časovni pas na %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index 9f0cc2348..a138b8714 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. Системски језик биће постављен на %1 - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Измени... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index e8af514de..65b05e1f6 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -1231,12 +1231,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Set timezone to %1/%2.<br/> Postavi vremensku zonu na %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index aafaeace6..b01ac9254 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -1231,12 +1231,12 @@ Alla ändringar kommer att gå förlorade. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Alla ändringar kommer att gå förlorade. Ändra... - + Set timezone to %1/%2.<br/> Sätt tidszon till %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index f0bb16bd3..895cf4464 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &C เปลี่ยนแปลง... - + Set timezone to %1/%2.<br/> ตั้งโซนเวลาเป็น %1/%2<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index 9c20c21ce..4bb27457b 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -1234,12 +1234,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. LocalePage - + The system language will be set to %1. Sistem dili %1 olarak ayarlanacak. - + The numbers and dates locale will be set to %1. Sayılar ve günler için sistem yereli %1 olarak ayarlanacak. @@ -1260,12 +1260,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.&Değiştir... - + Set timezone to %1/%2.<br/> Bölge ve zaman dilimi %1/%2 olarak ayarlandı.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index b877c5c97..78b9b4c7f 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index bbaea6219..01b752e3c 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index c984cb6b0..c7cc826bd 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index d93d55cb4..f4138a786 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -1233,12 +1233,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. 系统语言将设置为 %1。 - + The numbers and dates locale will be set to %1. 数字和日期地域将设置为 %1。 @@ -1259,12 +1259,12 @@ The installer will quit and all changes will be lost. 更改 (&C) ... - + Set timezone to %1/%2.<br/> 设置时区为 %1/%2。<br/> - + %1 (%2) Language (Country) %1(%2) diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index d1f22ee66..693553985 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -240,7 +240,7 @@ Output: Cancel installation without changing the system. - + 不變更系統並取消安裝。 @@ -257,17 +257,17 @@ The installer will quit and all changes will be lost. &Yes - + 是(&Y) &No - + 否(&N) &Close - + 關閉(&C) @@ -292,12 +292,12 @@ The installer will quit and all changes will be lost. &Done - + 完成(&D) The installation is complete. Close the installer. - + 安裝完成。關閉安裝程式。 @@ -553,7 +553,7 @@ The installer will quit and all changes will be lost. MiB - + MiB @@ -928,7 +928,7 @@ The installer will quit and all changes will be lost. MiB - + MiB @@ -1032,7 +1032,7 @@ The installer will quit and all changes will be lost. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>安裝失敗</h1><br/>%1 並未安裝到您的電腦上。<br/>錯誤訊息為:%2。 @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. 系統語言將會設定為 %1。 - + The numbers and dates locale will be set to %1. 數字與日期語系將會被設定為 %1。 @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. 變更...(&C) - + Set timezone to %1/%2.<br/> 設定時區為 %1/%2 。<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -2260,7 +2260,7 @@ The installer will quit and all changes will be lost. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>感謝:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="http://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。 diff --git a/lang/desktop_ar.desktop b/lang/desktop_ar.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_ar.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_ast.desktop b/lang/desktop_ast.desktop deleted file mode 100644 index b2ecfc1b9..000000000 --- a/lang/desktop_ast.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[ast]=Calamares -Icon[ast]=calamares -GenericName[ast]=Instalador del sistema -Comment[ast]=Calamares — Instalador del sistema diff --git a/lang/desktop_bg.desktop b/lang/desktop_bg.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_bg.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_ca.desktop b/lang/desktop_ca.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_ca.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_cs_CZ.desktop b/lang/desktop_cs_CZ.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_cs_CZ.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_da.desktop b/lang/desktop_da.desktop deleted file mode 100644 index 0036b0b4b..000000000 --- a/lang/desktop_da.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[da]=Calamares -Icon[da]=calamares -GenericName[da]=Systeminstallationsprogram -Comment[da]=Calamares — Systeminstallationsprogram diff --git a/lang/desktop_de.desktop b/lang/desktop_de.desktop deleted file mode 100644 index 130cb1e00..000000000 --- a/lang/desktop_de.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[de]=Calamares -Icon[de]=calamares -GenericName[de]=Installation des Betriebssystems -Comment[de]=Calamares - Installation des Betriebssystems diff --git a/lang/desktop_el.desktop b/lang/desktop_el.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_el.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_en_GB.desktop b/lang/desktop_en_GB.desktop deleted file mode 100644 index 4766b57db..000000000 --- a/lang/desktop_en_GB.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[en_GB]=Calamares -Icon[en_GB]=calamares -GenericName[en_GB]=System Installer -Comment[en_GB]=Calamares — System Installer diff --git a/lang/desktop_es.desktop b/lang/desktop_es.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_es.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_es_ES.desktop b/lang/desktop_es_ES.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_es_ES.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_es_MX.desktop b/lang/desktop_es_MX.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_es_MX.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_es_PR.desktop b/lang/desktop_es_PR.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_es_PR.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_et.desktop b/lang/desktop_et.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_et.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_eu.desktop b/lang/desktop_eu.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_eu.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_fa.desktop b/lang/desktop_fa.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_fa.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_fi_FI.desktop b/lang/desktop_fi_FI.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_fi_FI.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_fr.desktop b/lang/desktop_fr.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_fr.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_fr_CH.desktop b/lang/desktop_fr_CH.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_fr_CH.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_gl.desktop b/lang/desktop_gl.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_gl.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_gu.desktop b/lang/desktop_gu.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_gu.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_he.desktop b/lang/desktop_he.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_he.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_hi.desktop b/lang/desktop_hi.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_hi.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_hr.desktop b/lang/desktop_hr.desktop deleted file mode 100644 index 156106216..000000000 --- a/lang/desktop_hr.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[hr]=Calamares -Icon[hr]=calamares -GenericName[hr]=Instalacija sustava -Comment[hr]=Calamares — Instalacija sustava diff --git a/lang/desktop_hu.desktop b/lang/desktop_hu.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_hu.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_id.desktop b/lang/desktop_id.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_id.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_is.desktop b/lang/desktop_is.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_is.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_it_IT.desktop b/lang/desktop_it_IT.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_it_IT.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_ja.desktop b/lang/desktop_ja.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_ja.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_kk.desktop b/lang/desktop_kk.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_kk.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_lo.desktop b/lang/desktop_lo.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_lo.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_lt.desktop b/lang/desktop_lt.desktop deleted file mode 100644 index 77c4d28ef..000000000 --- a/lang/desktop_lt.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[lt]=Calamares -Icon[lt]=calamares -GenericName[lt]=Sistemos diegimas į kompiuterį -Comment[lt]=Calamares — sistemos diegyklė diff --git a/lang/desktop_mr.desktop b/lang/desktop_mr.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_mr.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_nb.desktop b/lang/desktop_nb.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_nb.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_nl.desktop b/lang/desktop_nl.desktop deleted file mode 100644 index bcd8a533d..000000000 --- a/lang/desktop_nl.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[nl]=Calamares -Icon[nl]=calamares -GenericName[nl]=Installatieprogramma -Comment[nl]=Calamares — Installatieprogramma diff --git a/lang/desktop_pl.desktop b/lang/desktop_pl.desktop deleted file mode 100644 index c3c26319f..000000000 --- a/lang/desktop_pl.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[pl]=Calamares -Icon[pl]=calamares -GenericName[pl]=Instalator systemu -Comment[pl]=Calamares — Instalator systemu diff --git a/lang/desktop_pl_PL.desktop b/lang/desktop_pl_PL.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_pl_PL.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_pt_BR.desktop b/lang/desktop_pt_BR.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_pt_BR.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_pt_PT.desktop b/lang/desktop_pt_PT.desktop deleted file mode 100644 index 09c0e71f2..000000000 --- a/lang/desktop_pt_PT.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[pt_PT]=Calamares -Icon[pt_PT]=calamares -GenericName[pt_PT]=Instalador de Sistema -Comment[pt_PT]=Calamares - Instalador de Sistema diff --git a/lang/desktop_ro.desktop b/lang/desktop_ro.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_ro.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_ru.desktop b/lang/desktop_ru.desktop deleted file mode 100644 index 6b200a129..000000000 --- a/lang/desktop_ru.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[ru]=Calamares -Icon[ru]=calamares -GenericName[ru]=Установщик системы -Comment[ru]=Calamares - Установщик системы diff --git a/lang/desktop_sk.desktop b/lang/desktop_sk.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_sk.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_sl.desktop b/lang/desktop_sl.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_sl.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_sr.desktop b/lang/desktop_sr.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_sr.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_sr@latin.desktop b/lang/desktop_sr@latin.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_sr@latin.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_sv.desktop b/lang/desktop_sv.desktop deleted file mode 100644 index 4afb84fbd..000000000 --- a/lang/desktop_sv.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations -Name[sv]=Calamares -Icon[sv]=calamares -GenericName[sv]=Systeminstallerare -Comment[sv]=Calamares — Systeminstallerare diff --git a/lang/desktop_th.desktop b/lang/desktop_th.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_th.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_tr_TR.desktop b/lang/desktop_tr_TR.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_tr_TR.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_uk.desktop b/lang/desktop_uk.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_uk.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_ur.desktop b/lang/desktop_ur.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_ur.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_uz.desktop b/lang/desktop_uz.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_uz.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_zh_CN.desktop b/lang/desktop_zh_CN.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_zh_CN.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/desktop_zh_TW.desktop b/lang/desktop_zh_TW.desktop deleted file mode 100644 index f1668741b..000000000 --- a/lang/desktop_zh_TW.desktop +++ /dev/null @@ -1,16 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -Keywords=calamares;system;installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=calamares -Terminal=false -StartupNotify=true -Categories=Qt;System; - - -# Translations diff --git a/lang/python.pot b/lang/python.pot new file mode 100644 index 000000000..bc63235fd --- /dev/null +++ b/lang/python.pot @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generate machine-id." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Done machineid" diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo new file mode 100644 index 000000000..e99aa6d4a Binary files /dev/null and b/lang/python/ar/LC_MESSAGES/python.mo differ diff --git a/lang/python/ar/LC_MESSAGES/python.po b/lang/python/ar/LC_MESSAGES/python.po new file mode 100644 index 000000000..f85c25ba0 --- /dev/null +++ b/lang/python/ar/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ast/LC_MESSAGES/python.mo b/lang/python/ast/LC_MESSAGES/python.mo new file mode 100644 index 000000000..6603ed39c Binary files /dev/null and b/lang/python/ast/LC_MESSAGES/python.mo differ diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po new file mode 100644 index 000000000..84a0cab7d --- /dev/null +++ b/lang/python/ast/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/bg/LC_MESSAGES/python.mo b/lang/python/bg/LC_MESSAGES/python.mo new file mode 100644 index 000000000..634bd45a7 Binary files /dev/null and b/lang/python/bg/LC_MESSAGES/python.mo differ diff --git a/lang/python/bg/LC_MESSAGES/python.po b/lang/python/bg/LC_MESSAGES/python.po new file mode 100644 index 000000000..1297c23a4 --- /dev/null +++ b/lang/python/bg/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ca/LC_MESSAGES/python.mo b/lang/python/ca/LC_MESSAGES/python.mo new file mode 100644 index 000000000..5e54a0365 Binary files /dev/null and b/lang/python/ca/LC_MESSAGES/python.mo differ diff --git a/lang/python/ca/LC_MESSAGES/python.po b/lang/python/ca/LC_MESSAGES/python.po new file mode 100644 index 000000000..a385a973e --- /dev/null +++ b/lang/python/ca/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Davidmp , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Davidmp , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Tasca de python fictícia." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Pas de python fitctici {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generació de l'id. de la màquina." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "ID de màquina fet" diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.mo b/lang/python/cs_CZ/LC_MESSAGES/python.mo new file mode 100644 index 000000000..282421830 Binary files /dev/null and b/lang/python/cs_CZ/LC_MESSAGES/python.mo differ diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.po b/lang/python/cs_CZ/LC_MESSAGES/python.po new file mode 100644 index 000000000..3a0b25d7f --- /dev/null +++ b/lang/python/cs_CZ/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo new file mode 100644 index 000000000..22534de13 Binary files /dev/null and b/lang/python/da/LC_MESSAGES/python.mo differ diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po new file mode 100644 index 000000000..c869e1245 --- /dev/null +++ b/lang/python/da/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# scootergrisen , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Dummy python-job." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Dummy python-trin {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generere maskine-id." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Færdig maskine-id" diff --git a/lang/python/de/LC_MESSAGES/python.mo b/lang/python/de/LC_MESSAGES/python.mo new file mode 100644 index 000000000..92d88a40e Binary files /dev/null and b/lang/python/de/LC_MESSAGES/python.mo differ diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po new file mode 100644 index 000000000..880f4fb5e --- /dev/null +++ b/lang/python/de/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/el/LC_MESSAGES/python.mo b/lang/python/el/LC_MESSAGES/python.mo new file mode 100644 index 000000000..bbfb33004 Binary files /dev/null and b/lang/python/el/LC_MESSAGES/python.mo differ diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po new file mode 100644 index 000000000..d8305fcd2 --- /dev/null +++ b/lang/python/el/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/en_GB/LC_MESSAGES/python.mo b/lang/python/en_GB/LC_MESSAGES/python.mo new file mode 100644 index 000000000..79b2366b4 Binary files /dev/null and b/lang/python/en_GB/LC_MESSAGES/python.mo differ diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po new file mode 100644 index 000000000..5cdc212e5 --- /dev/null +++ b/lang/python/en_GB/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es/LC_MESSAGES/python.mo b/lang/python/es/LC_MESSAGES/python.mo new file mode 100644 index 000000000..b09564123 Binary files /dev/null and b/lang/python/es/LC_MESSAGES/python.mo differ diff --git a/lang/python/es/LC_MESSAGES/python.po b/lang/python/es/LC_MESSAGES/python.po new file mode 100644 index 000000000..ae1524538 --- /dev/null +++ b/lang/python/es/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es_ES/LC_MESSAGES/python.mo b/lang/python/es_ES/LC_MESSAGES/python.mo new file mode 100644 index 000000000..6a5cf2cc1 Binary files /dev/null and b/lang/python/es_ES/LC_MESSAGES/python.mo differ diff --git a/lang/python/es_ES/LC_MESSAGES/python.po b/lang/python/es_ES/LC_MESSAGES/python.po new file mode 100644 index 000000000..cb2e1e05d --- /dev/null +++ b/lang/python/es_ES/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es_MX/LC_MESSAGES/python.mo b/lang/python/es_MX/LC_MESSAGES/python.mo new file mode 100644 index 000000000..7f66467e8 Binary files /dev/null and b/lang/python/es_MX/LC_MESSAGES/python.mo differ diff --git a/lang/python/es_MX/LC_MESSAGES/python.po b/lang/python/es_MX/LC_MESSAGES/python.po new file mode 100644 index 000000000..f876891f5 --- /dev/null +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es_PR/LC_MESSAGES/python.mo b/lang/python/es_PR/LC_MESSAGES/python.mo new file mode 100644 index 000000000..f52688188 Binary files /dev/null and b/lang/python/es_PR/LC_MESSAGES/python.mo differ diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po new file mode 100644 index 000000000..02fbd7c6e --- /dev/null +++ b/lang/python/es_PR/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es_PR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/et/LC_MESSAGES/python.mo b/lang/python/et/LC_MESSAGES/python.mo new file mode 100644 index 000000000..ecb678aba Binary files /dev/null and b/lang/python/et/LC_MESSAGES/python.mo differ diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po new file mode 100644 index 000000000..1a8abd0d8 --- /dev/null +++ b/lang/python/et/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/eu/LC_MESSAGES/python.mo b/lang/python/eu/LC_MESSAGES/python.mo new file mode 100644 index 000000000..14aebbea7 Binary files /dev/null and b/lang/python/eu/LC_MESSAGES/python.mo differ diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po new file mode 100644 index 000000000..2d936f113 --- /dev/null +++ b/lang/python/eu/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fa/LC_MESSAGES/python.mo b/lang/python/fa/LC_MESSAGES/python.mo new file mode 100644 index 000000000..dc17915b0 Binary files /dev/null and b/lang/python/fa/LC_MESSAGES/python.mo differ diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po new file mode 100644 index 000000000..971f8bdf7 --- /dev/null +++ b/lang/python/fa/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fi_FI/LC_MESSAGES/python.mo b/lang/python/fi_FI/LC_MESSAGES/python.mo new file mode 100644 index 000000000..9e0d83f6b Binary files /dev/null and b/lang/python/fi_FI/LC_MESSAGES/python.mo differ diff --git a/lang/python/fi_FI/LC_MESSAGES/python.po b/lang/python/fi_FI/LC_MESSAGES/python.po new file mode 100644 index 000000000..48fc0a2a4 --- /dev/null +++ b/lang/python/fi_FI/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fr/LC_MESSAGES/python.mo b/lang/python/fr/LC_MESSAGES/python.mo new file mode 100644 index 000000000..0d4650d33 Binary files /dev/null and b/lang/python/fr/LC_MESSAGES/python.mo differ diff --git a/lang/python/fr/LC_MESSAGES/python.po b/lang/python/fr/LC_MESSAGES/python.po new file mode 100644 index 000000000..26eb8657f --- /dev/null +++ b/lang/python/fr/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fr_CH/LC_MESSAGES/python.mo b/lang/python/fr_CH/LC_MESSAGES/python.mo new file mode 100644 index 000000000..f669949fe Binary files /dev/null and b/lang/python/fr_CH/LC_MESSAGES/python.mo differ diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po new file mode 100644 index 000000000..d9c44de97 --- /dev/null +++ b/lang/python/fr_CH/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/gl/LC_MESSAGES/python.mo b/lang/python/gl/LC_MESSAGES/python.mo new file mode 100644 index 000000000..3548ce763 Binary files /dev/null and b/lang/python/gl/LC_MESSAGES/python.mo differ diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po new file mode 100644 index 000000000..0cf1bd849 --- /dev/null +++ b/lang/python/gl/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/gu/LC_MESSAGES/python.mo b/lang/python/gu/LC_MESSAGES/python.mo new file mode 100644 index 000000000..191607183 Binary files /dev/null and b/lang/python/gu/LC_MESSAGES/python.mo differ diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po new file mode 100644 index 000000000..d0935dd8c --- /dev/null +++ b/lang/python/gu/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo new file mode 100644 index 000000000..3464284cc Binary files /dev/null and b/lang/python/he/LC_MESSAGES/python.mo differ diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po new file mode 100644 index 000000000..43d358c5c --- /dev/null +++ b/lang/python/he/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Eli Shleifer , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Eli Shleifer , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "משימת דמה של Python." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "צעד דמה של Python {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "חולל מספר סידורי של המכונה." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "בוצעה הגדרת מספר סידורי של המכונה." diff --git a/lang/python/hi/LC_MESSAGES/python.mo b/lang/python/hi/LC_MESSAGES/python.mo new file mode 100644 index 000000000..4a53bc6b4 Binary files /dev/null and b/lang/python/hi/LC_MESSAGES/python.mo differ diff --git a/lang/python/hi/LC_MESSAGES/python.po b/lang/python/hi/LC_MESSAGES/python.po new file mode 100644 index 000000000..a7a88011e --- /dev/null +++ b/lang/python/hi/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/hr/LC_MESSAGES/python.mo b/lang/python/hr/LC_MESSAGES/python.mo new file mode 100644 index 000000000..e26813c8b Binary files /dev/null and b/lang/python/hr/LC_MESSAGES/python.mo differ diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po new file mode 100644 index 000000000..fe39875e9 --- /dev/null +++ b/lang/python/hr/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Lovro Kudelić , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Lovro Kudelić , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Testni python posao." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Testni python korak {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generiraj ID računala." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Završeno generiranje ID-a" diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo new file mode 100644 index 000000000..28d114b72 Binary files /dev/null and b/lang/python/hu/LC_MESSAGES/python.mo differ diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po new file mode 100644 index 000000000..ffeff950c --- /dev/null +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/id/LC_MESSAGES/python.mo b/lang/python/id/LC_MESSAGES/python.mo new file mode 100644 index 000000000..a3b70d74f Binary files /dev/null and b/lang/python/id/LC_MESSAGES/python.mo differ diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po new file mode 100644 index 000000000..f712eae0d --- /dev/null +++ b/lang/python/id/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Wantoyo , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Wantoyo , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Tugas dummy python." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Langkah dummy python {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Menghasilkan id-mesin" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Id-mesin kelar" diff --git a/lang/python/is/LC_MESSAGES/python.mo b/lang/python/is/LC_MESSAGES/python.mo new file mode 100644 index 000000000..e74429468 Binary files /dev/null and b/lang/python/is/LC_MESSAGES/python.mo differ diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po new file mode 100644 index 000000000..c9751618e --- /dev/null +++ b/lang/python/is/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/it_IT/LC_MESSAGES/python.mo b/lang/python/it_IT/LC_MESSAGES/python.mo new file mode 100644 index 000000000..affb97e74 Binary files /dev/null and b/lang/python/it_IT/LC_MESSAGES/python.mo differ diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po new file mode 100644 index 000000000..8ef45f3e2 --- /dev/null +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ja/LC_MESSAGES/python.mo b/lang/python/ja/LC_MESSAGES/python.mo new file mode 100644 index 000000000..ce4a0eddd Binary files /dev/null and b/lang/python/ja/LC_MESSAGES/python.mo differ diff --git a/lang/python/ja/LC_MESSAGES/python.po b/lang/python/ja/LC_MESSAGES/python.po new file mode 100644 index 000000000..6ce9272f2 --- /dev/null +++ b/lang/python/ja/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Takefumi Nagata , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Takefumi Nagata , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "machine-id の生成" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "machineid作成の完了" diff --git a/lang/python/kk/LC_MESSAGES/python.mo b/lang/python/kk/LC_MESSAGES/python.mo new file mode 100644 index 000000000..4d7e1ade2 Binary files /dev/null and b/lang/python/kk/LC_MESSAGES/python.mo differ diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po new file mode 100644 index 000000000..238670585 --- /dev/null +++ b/lang/python/kk/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: kk\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/lo/LC_MESSAGES/python.mo b/lang/python/lo/LC_MESSAGES/python.mo new file mode 100644 index 000000000..d9e3440ea Binary files /dev/null and b/lang/python/lo/LC_MESSAGES/python.mo differ diff --git a/lang/python/lo/LC_MESSAGES/python.po b/lang/python/lo/LC_MESSAGES/python.po new file mode 100644 index 000000000..cea9b99ed --- /dev/null +++ b/lang/python/lo/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/lt/LC_MESSAGES/python.mo b/lang/python/lt/LC_MESSAGES/python.mo new file mode 100644 index 000000000..d242e9919 Binary files /dev/null and b/lang/python/lt/LC_MESSAGES/python.mo differ diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po new file mode 100644 index 000000000..f1dad7c93 --- /dev/null +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Moo , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Moo , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Fiktyvi python užduotis." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Fiktyvus python žingsnis {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generuoti machine-id." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Atlikta machineid" diff --git a/lang/python/mr/LC_MESSAGES/python.mo b/lang/python/mr/LC_MESSAGES/python.mo new file mode 100644 index 000000000..afb5fa103 Binary files /dev/null and b/lang/python/mr/LC_MESSAGES/python.mo differ diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po new file mode 100644 index 000000000..82cbd894b --- /dev/null +++ b/lang/python/mr/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/nb/LC_MESSAGES/python.mo b/lang/python/nb/LC_MESSAGES/python.mo new file mode 100644 index 000000000..195b054a8 Binary files /dev/null and b/lang/python/nb/LC_MESSAGES/python.mo differ diff --git a/lang/python/nb/LC_MESSAGES/python.po b/lang/python/nb/LC_MESSAGES/python.po new file mode 100644 index 000000000..5ad178812 --- /dev/null +++ b/lang/python/nb/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/nl/LC_MESSAGES/python.mo b/lang/python/nl/LC_MESSAGES/python.mo new file mode 100644 index 000000000..08356ccdc Binary files /dev/null and b/lang/python/nl/LC_MESSAGES/python.mo differ diff --git a/lang/python/nl/LC_MESSAGES/python.po b/lang/python/nl/LC_MESSAGES/python.po new file mode 100644 index 000000000..d10a73848 --- /dev/null +++ b/lang/python/nl/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Adriaan de Groot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Adriaan de Groot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Voorbeeld Python-taak" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Voorbeeld Python-stap {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Genereer machine-id" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo new file mode 100644 index 000000000..1d529a86a Binary files /dev/null and b/lang/python/pl/LC_MESSAGES/python.mo differ diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po new file mode 100644 index 000000000..21f59cdd0 --- /dev/null +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# m4sk1n , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: m4sk1n , 2017\n" +"Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Zadanie Dummy Python" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Krok dummy python {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generuj machine-id." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Ukończono machineid" diff --git a/lang/python/pl_PL/LC_MESSAGES/python.mo b/lang/python/pl_PL/LC_MESSAGES/python.mo new file mode 100644 index 000000000..f690c1a44 Binary files /dev/null and b/lang/python/pl_PL/LC_MESSAGES/python.mo differ diff --git a/lang/python/pl_PL/LC_MESSAGES/python.po b/lang/python/pl_PL/LC_MESSAGES/python.po new file mode 100644 index 000000000..12fe5dc38 --- /dev/null +++ b/lang/python/pl_PL/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pt_BR/LC_MESSAGES/python.mo b/lang/python/pt_BR/LC_MESSAGES/python.mo new file mode 100644 index 000000000..cd60e9376 Binary files /dev/null and b/lang/python/pt_BR/LC_MESSAGES/python.mo differ diff --git a/lang/python/pt_BR/LC_MESSAGES/python.po b/lang/python/pt_BR/LC_MESSAGES/python.po new file mode 100644 index 000000000..043177ca3 --- /dev/null +++ b/lang/python/pt_BR/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pt_PT/LC_MESSAGES/python.mo b/lang/python/pt_PT/LC_MESSAGES/python.mo new file mode 100644 index 000000000..24b9e0050 Binary files /dev/null and b/lang/python/pt_PT/LC_MESSAGES/python.mo differ diff --git a/lang/python/pt_PT/LC_MESSAGES/python.po b/lang/python/pt_PT/LC_MESSAGES/python.po new file mode 100644 index 000000000..c1212cda4 --- /dev/null +++ b/lang/python/pt_PT/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Ricardo Simões , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Ricardo Simões , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Tarefa Dummy python." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Passo Dummy python {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Gerar id-máquina" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Terminada machineid" diff --git a/lang/python/ro/LC_MESSAGES/python.mo b/lang/python/ro/LC_MESSAGES/python.mo new file mode 100644 index 000000000..1ea26c454 Binary files /dev/null and b/lang/python/ro/LC_MESSAGES/python.mo differ diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po new file mode 100644 index 000000000..b522e9a98 --- /dev/null +++ b/lang/python/ro/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ru/LC_MESSAGES/python.mo b/lang/python/ru/LC_MESSAGES/python.mo new file mode 100644 index 000000000..5d17edda1 Binary files /dev/null and b/lang/python/ru/LC_MESSAGES/python.mo differ diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po new file mode 100644 index 000000000..47d9e207a --- /dev/null +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sk/LC_MESSAGES/python.mo b/lang/python/sk/LC_MESSAGES/python.mo new file mode 100644 index 000000000..a3a738a04 Binary files /dev/null and b/lang/python/sk/LC_MESSAGES/python.mo differ diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po new file mode 100644 index 000000000..1ec7eaf9f --- /dev/null +++ b/lang/python/sk/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sl/LC_MESSAGES/python.mo b/lang/python/sl/LC_MESSAGES/python.mo new file mode 100644 index 000000000..c7c255e21 Binary files /dev/null and b/lang/python/sl/LC_MESSAGES/python.mo differ diff --git a/lang/python/sl/LC_MESSAGES/python.po b/lang/python/sl/LC_MESSAGES/python.po new file mode 100644 index 000000000..027b0dcdb --- /dev/null +++ b/lang/python/sl/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sr/LC_MESSAGES/python.mo b/lang/python/sr/LC_MESSAGES/python.mo new file mode 100644 index 000000000..28199759c Binary files /dev/null and b/lang/python/sr/LC_MESSAGES/python.mo differ diff --git a/lang/python/sr/LC_MESSAGES/python.po b/lang/python/sr/LC_MESSAGES/python.po new file mode 100644 index 000000000..47062c4e0 --- /dev/null +++ b/lang/python/sr/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sr@latin/LC_MESSAGES/python.mo b/lang/python/sr@latin/LC_MESSAGES/python.mo new file mode 100644 index 000000000..b3f1e8936 Binary files /dev/null and b/lang/python/sr@latin/LC_MESSAGES/python.mo differ diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po new file mode 100644 index 000000000..d50b5d363 --- /dev/null +++ b/lang/python/sr@latin/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sv/LC_MESSAGES/python.mo b/lang/python/sv/LC_MESSAGES/python.mo new file mode 100644 index 000000000..37c090f63 Binary files /dev/null and b/lang/python/sv/LC_MESSAGES/python.mo differ diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po new file mode 100644 index 000000000..6866b51a3 --- /dev/null +++ b/lang/python/sv/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/th/LC_MESSAGES/python.mo b/lang/python/th/LC_MESSAGES/python.mo new file mode 100644 index 000000000..3c787d074 Binary files /dev/null and b/lang/python/th/LC_MESSAGES/python.mo differ diff --git a/lang/python/th/LC_MESSAGES/python.po b/lang/python/th/LC_MESSAGES/python.po new file mode 100644 index 000000000..1f90360dd --- /dev/null +++ b/lang/python/th/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo new file mode 100644 index 000000000..6d766aaf8 Binary files /dev/null and b/lang/python/tr_TR/LC_MESSAGES/python.mo differ diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po new file mode 100644 index 000000000..7e6443c98 --- /dev/null +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Demiray Muhterem , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Demiray Muhterem , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Makine kimliği oluştur." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Makine kimliği oluşturuldu" diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo new file mode 100644 index 000000000..957835e03 Binary files /dev/null and b/lang/python/uk/LC_MESSAGES/python.mo differ diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po new file mode 100644 index 000000000..e7ee3a4c7 --- /dev/null +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"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/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ur/LC_MESSAGES/python.mo b/lang/python/ur/LC_MESSAGES/python.mo new file mode 100644 index 000000000..430ab38ea Binary files /dev/null and b/lang/python/ur/LC_MESSAGES/python.mo differ diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po new file mode 100644 index 000000000..67f5339c3 --- /dev/null +++ b/lang/python/ur/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/uz/LC_MESSAGES/python.mo b/lang/python/uz/LC_MESSAGES/python.mo new file mode 100644 index 000000000..32451102b Binary files /dev/null and b/lang/python/uz/LC_MESSAGES/python.mo differ diff --git a/lang/python/uz/LC_MESSAGES/python.po b/lang/python/uz/LC_MESSAGES/python.po new file mode 100644 index 000000000..9e553e54c --- /dev/null +++ b/lang/python/uz/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/zh_CN/LC_MESSAGES/python.mo b/lang/python/zh_CN/LC_MESSAGES/python.mo new file mode 100644 index 000000000..26080446f Binary files /dev/null and b/lang/python/zh_CN/LC_MESSAGES/python.mo differ diff --git a/lang/python/zh_CN/LC_MESSAGES/python.po b/lang/python/zh_CN/LC_MESSAGES/python.po new file mode 100644 index 000000000..2a17106ea --- /dev/null +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/zh_TW/LC_MESSAGES/python.mo b/lang/python/zh_TW/LC_MESSAGES/python.mo new file mode 100644 index 000000000..d5f7287fe Binary files /dev/null and b/lang/python/zh_TW/LC_MESSAGES/python.mo differ diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po new file mode 100644 index 000000000..d1cce5c51 --- /dev/null +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Jeff Huang , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Jeff Huang , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "假的 python 工作。" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "假的 python step {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "生成 machine-id。" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "machineid 已完成" diff --git a/lang/translations.cmake b/lang/translations.cmake deleted file mode 100644 index fc18f4f11..000000000 --- a/lang/translations.cmake +++ /dev/null @@ -1,42 +0,0 @@ -macro(add_calamares_translations language) - list( APPEND CALAMARES_LANGUAGES ${ARGV} ) - - set( calamares_i18n_qrc_content "\n" ) - - # calamares and qt language files - set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) - foreach( lang ${CALAMARES_LANGUAGES} ) - set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}calamares_${lang}.qm\n" ) - list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/calamares_${lang}.ts" ) - endforeach() - - set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) - set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}\n" ) - - file( WRITE ${CMAKE_BINARY_DIR}/lang/calamares_i18n.qrc "${calamares_i18n_qrc_content}" ) - - qt5_add_translation(QM_FILES ${TS_FILES}) - - ## HACK HACK HACK - around rcc limitations to allow out of source-tree building - set( trans_file calamares_i18n ) - set( trans_srcfile ${CMAKE_BINARY_DIR}/lang/${trans_file}.qrc ) - set( trans_infile ${CMAKE_CURRENT_BINARY_DIR}/${trans_file}.qrc ) - set( trans_outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${trans_file}.cxx ) - - # Copy the QRC file to the output directory - add_custom_command( - OUTPUT ${trans_infile} - COMMAND ${CMAKE_COMMAND} -E copy ${trans_srcfile} ${trans_infile} - MAIN_DEPENDENCY ${trans_srcfile} - ) - - # Run the resource compiler (rcc_options should already be set) - add_custom_command( - OUTPUT ${trans_outfile} - COMMAND "${Qt5Core_RCC_EXECUTABLE}" - ARGS ${rcc_options} -name ${trans_file} -o ${trans_outfile} ${trans_infile} - MAIN_DEPENDENCY ${trans_infile} - DEPENDS ${QM_FILES} - ) -endmacro() - diff --git a/src/calamares/CMakeLists.txt b/src/calamares/CMakeLists.txt index 8248de6fb..c0f9ecb66 100644 --- a/src/calamares/CMakeLists.txt +++ b/src/calamares/CMakeLists.txt @@ -37,10 +37,8 @@ include( GNUInstallDirs ) qt5_wrap_ui( calamaresUi_H ${calamaresUi} ) -#qt_add_resources( calamaresRc "../../resources.qrc" ) - # Translations -include( ${CMAKE_SOURCE_DIR}/lang/translations.cmake ) +include( CalamaresAddTranslations ) add_calamares_translations( ${CALAMARES_TRANSLATION_LANGUAGES} ) set( final_src ${calamaresUi_H} ${calamaresSources} ${calamaresRc} ${trans_outfile} ) diff --git a/src/libcalamares/GlobalStorage.cpp b/src/libcalamares/GlobalStorage.cpp index c872482be..36405ce87 100644 --- a/src/libcalamares/GlobalStorage.cpp +++ b/src/libcalamares/GlobalStorage.cpp @@ -18,12 +18,14 @@ */ #include "GlobalStorage.h" +#include "JobQueue.h" #include "utils/Logger.h" #ifdef WITH_PYTHON #include "PythonHelper.h" + #undef slots #include #include @@ -99,9 +101,22 @@ GlobalStorage::debugDump() const namespace CalamaresPython { +Calamares::GlobalStorage* GlobalStoragePythonWrapper::s_gs_instance = nullptr; + +// The special handling for nullptr is only for the testing +// script for the python bindings, which passes in None; +// normal use will have a GlobalStorage from JobQueue::instance() +// passed in. Testing use will leak the allocated GlobalStorage +// object, but that's OK for testing. GlobalStoragePythonWrapper::GlobalStoragePythonWrapper( Calamares::GlobalStorage* gs ) - : m_gs( gs ) -{} + : m_gs( gs ? gs : s_gs_instance ) +{ + if (!m_gs) + { + s_gs_instance = new Calamares::GlobalStorage; + m_gs = s_gs_instance; + } +} bool GlobalStoragePythonWrapper::contains( const std::string& key ) const @@ -125,7 +140,6 @@ GlobalStoragePythonWrapper::insert( const std::string& key, CalamaresPython::variantFromPyObject( value ) ); } - bp::list GlobalStoragePythonWrapper::keys() const { diff --git a/src/libcalamares/GlobalStorage.h b/src/libcalamares/GlobalStorage.h index 012a516a1..0ff56ac62 100644 --- a/src/libcalamares/GlobalStorage.h +++ b/src/libcalamares/GlobalStorage.h @@ -86,8 +86,15 @@ public: boost::python::list keys() const; int remove( const std::string& key ); boost::python::api::object value( const std::string& key ) const; + + // This is a helper for scripts that do not go through + // the JobQueue (i.e. the module testpython script), + // which allocate their own (singleton) GlobalStorage. + static Calamares::GlobalStorage* globalStorageInstance() { return s_gs_instance; } + private: Calamares::GlobalStorage* m_gs; + static Calamares::GlobalStorage* s_gs_instance; // See globalStorageInstance() }; } // namespace CalamaresPython diff --git a/src/libcalamares/PythonHelper.cpp b/src/libcalamares/PythonHelper.cpp index b252f90b2..14a63f4d3 100644 --- a/src/libcalamares/PythonHelper.cpp +++ b/src/libcalamares/PythonHelper.cpp @@ -316,4 +316,4 @@ Helper::handleLastError() } -} // namespace Calamares +} // namespace CalamaresPython diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index 1955b64fc..613f0f7ab 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -215,6 +215,19 @@ BOOST_PYTHON_MODULE( libcalamares ) "Applying the function to a string obscured by this function will result " "in the original string." ); + + + bp::def( + "gettext_languages", + &CalamaresPython::gettext_languages, + "Returns list of languages (most to least-specific) for gettext." + ); + + bp::def( + "gettext_path", + &CalamaresPython::gettext_path, + "Returns path for gettext search." + ); } @@ -297,16 +310,36 @@ PythonJob::exec() scriptNamespace ); bp::object entryPoint = scriptNamespace[ "run" ]; - bp::extract< std::string > entryPoint_doc_attr(entryPoint.attr( "__doc__" ) ); + bp::object prettyNameFunc = scriptNamespace[ "pretty_name" ]; + + cDebug() << "Job file" << scriptFI.absoluteFilePath(); + if ( !prettyNameFunc.is_none() ) + { + bp::extract< std::string > prettyNameResult( prettyNameFunc() ); + if ( prettyNameResult.check() ) + { + m_description = QString::fromStdString( prettyNameResult() ).trimmed(); + } + if ( !m_description.isEmpty() ) + { + cDebug() << "Job" << prettyName() << "(func) ->" << m_description; + emit progress( 0 ); + } + } - if ( entryPoint_doc_attr.check() ) + if ( m_description.isEmpty() ) { - m_description = QString::fromStdString( entryPoint_doc_attr() ).trimmed(); - auto i_newline = m_description.indexOf('\n'); - if ( i_newline > 0 ) - m_description.truncate( i_newline ); - cDebug() << "Job" << prettyName() << "->" << m_description; - emit progress( 0 ); + bp::extract< std::string > entryPoint_doc_attr(entryPoint.attr( "__doc__" ) ); + + if ( entryPoint_doc_attr.check() ) + { + m_description = QString::fromStdString( entryPoint_doc_attr() ).trimmed(); + auto i_newline = m_description.indexOf('\n'); + if ( i_newline > 0 ) + m_description.truncate( i_newline ); + cDebug() << "Job" << prettyName() << "(doc) ->" << m_description; + emit progress( 0 ); + } } bp::object runResult = entryPoint(); diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 9e2161c92..595f53a76 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -1,6 +1,7 @@ /* === This file is part of Calamares - === * * Copyright 2014-2016, Teo Mrnjavac + * Copyright 2017, Adriaan de Groot * * 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,7 +24,12 @@ #include "utils/CalamaresUtilsSystem.h" #include "utils/CalamaresUtils.h" +#include "GlobalStorage.h" +#include "JobQueue.h" + +#include #include +#include #undef slots #include @@ -40,50 +46,50 @@ mount( const std::string& device_path, const std::string& options ) { return CalamaresUtils::System::instance()-> - mount( QString::fromStdString( device_path ), - QString::fromStdString( mount_point ), - QString::fromStdString( filesystem_name ), - QString::fromStdString( options ) ); + mount( QString::fromStdString( device_path ), + QString::fromStdString( mount_point ), + QString::fromStdString( filesystem_name ), + QString::fromStdString( options ) ); } int target_env_call( const std::string& command, - const std::string& stdin, - int timeout ) + const std::string& stdin, + int timeout ) { return CalamaresUtils::System::instance()-> - targetEnvCall( QString::fromStdString( command ), - QString(), - QString::fromStdString( stdin ), - timeout ); + targetEnvCall( QString::fromStdString( command ), + QString(), + QString::fromStdString( stdin ), + timeout ); } int target_env_call( const bp::list& args, - const std::string& stdin, - int timeout ) + const std::string& stdin, + int timeout ) { QStringList list; for ( int i = 0; i < bp::len( args ); ++i ) { list.append( QString::fromStdString( - bp::extract< std::string >( args[ i ] ) ) ); + bp::extract< std::string >( args[ i ] ) ) ); } return CalamaresUtils::System::instance()-> - targetEnvCall( list, - QString(), - QString::fromStdString( stdin ), - timeout ); + targetEnvCall( list, + QString(), + QString::fromStdString( stdin ), + timeout ); } int check_target_env_call( const std::string& command, - const std::string& stdin, - int timeout ) + const std::string& stdin, + int timeout ) { int ec = target_env_call( command, stdin, timeout ); return _handle_check_target_env_call_error( ec, QString::fromStdString( command ) ); @@ -92,8 +98,8 @@ check_target_env_call( const std::string& command, int check_target_env_call( const bp::list& args, - const std::string& stdin, - int timeout ) + const std::string& stdin, + int timeout ) { int ec = target_env_call( args, stdin, timeout ); if ( !ec ) @@ -103,7 +109,7 @@ check_target_env_call( const bp::list& args, for ( int i = 0; i < bp::len( args ); ++i ) { failedCmdList.append( QString::fromStdString( - bp::extract< std::string >( args[ i ] ) ) ); + bp::extract< std::string >( args[ i ] ) ) ); } return _handle_check_target_env_call_error( ec, failedCmdList.join( ' ' ) ); @@ -112,8 +118,8 @@ check_target_env_call( const bp::list& args, std::string check_target_env_output( const std::string& command, - const std::string& stdin, - int timeout ) + const std::string& stdin, + int timeout ) { QString output; int ec = CalamaresUtils::System::instance()-> @@ -129,15 +135,15 @@ check_target_env_output( const std::string& command, std::string check_target_env_output( const bp::list& args, - const std::string& stdin, - int timeout ) + const std::string& stdin, + int timeout ) { QString output; QStringList list; for ( int i = 0; i < bp::len( args ); ++i ) { list.append( QString::fromStdString( - bp::extract< std::string >( args[ i ] ) ) ); + bp::extract< std::string >( args[ i ] ) ) ); } int ec = CalamaresUtils::System::instance()-> @@ -159,8 +165,8 @@ _handle_check_target_env_call_error( int ec, const QString& cmd ) QString raise = QString( "import subprocess\n" "raise subprocess.CalledProcessError(%1,\"%2\")" ) - .arg( ec ) - .arg( cmd ); + .arg( ec ) + .arg( cmd ); bp::exec( raise.toStdString().c_str() ); bp::throw_error_already_set(); return ec; @@ -177,7 +183,8 @@ debug( const std::string& s ) PythonJobInterface::PythonJobInterface( Calamares::PythonJob* parent ) : m_parent( parent ) { - moduleName = QDir( m_parent->m_workingPath ).dirName().toStdString(); + auto moduleDir = QDir( m_parent->m_workingPath ); + moduleName = moduleDir.dirName().toStdString(); prettyName = m_parent->prettyName().toStdString(); workingPath = m_parent->m_workingPath.toStdString(); configuration = CalamaresPython::variantMapToPyDict( m_parent->m_configurationMap ); @@ -198,4 +205,91 @@ obscure( const std::string& string ) return CalamaresUtils::obscure( QString::fromStdString( string ) ).toStdString(); } +static QStringList +_gettext_languages() +{ + QStringList languages; + + // There are two ways that Python jobs can be initialised: + // - through JobQueue, in which case that has an instance which holds + // a GlobalStorage object, or + // - through the Python test-script, which initialises its + // own GlobalStoragePythonWrapper, which then holds a + // GlobalStorage object for all of Python. + Calamares::JobQueue* jq = Calamares::JobQueue::instance(); + Calamares::GlobalStorage* gs = jq ? jq->globalStorage() : CalamaresPython::GlobalStoragePythonWrapper::globalStorageInstance(); + + QVariant localeConf_ = gs->value( "localeConf" ); + if ( localeConf_.canConvert< QVariantMap >() ) + { + QVariant lang_ = localeConf_.value< QVariantMap >()[ "LANG" ]; + if ( lang_.canConvert< QString >() ) + { + QString lang = lang_.value< QString >(); + languages.append( lang ); + if ( lang.indexOf( '.' ) > 0 ) + { + lang.truncate( lang.indexOf( '.' ) ); + languages.append( lang ); + } + if ( lang.indexOf( '_' ) > 0 ) + { + lang.truncate( lang.indexOf( '_' ) ); + languages.append( lang ); + } + } + } + return languages; +} + +bp::list +gettext_languages() +{ + bp::list pyList; + for ( auto lang : _gettext_languages() ) + pyList.append( lang.toStdString() ); + return pyList; +} + +static void +_add_localedirs( QStringList& pathList, const QString& candidate ) +{ + if ( !candidate.isEmpty() && !pathList.contains( candidate ) ) + { + pathList.prepend( candidate ); + if ( QDir( candidate ).cd( "lang" ) ) + pathList.prepend( candidate + "/lang" ); + } +} + +bp::object +gettext_path() +{ + // TODO: distinguish between -d runs and normal runs + // TODO: can we detect DESTDIR-installs? + QStringList candidatePaths = QStandardPaths::locateAll( QStandardPaths::GenericDataLocation, "locale", QStandardPaths::LocateDirectory ); + QString extra = QCoreApplication::applicationDirPath(); + _add_localedirs( candidatePaths, extra ); // Often /usr/local/bin + if ( !extra.isEmpty() ) + { + QDir d( extra ); + if ( d.cd( "../share/locale" ) ) // Often /usr/local/bin/../share/locale -> /usr/local/share/locale + _add_localedirs( candidatePaths, d.canonicalPath() ); + } + _add_localedirs( candidatePaths, QDir().canonicalPath() ); // . + + cDebug() << "Standard paths" << candidatePaths; + + for ( auto lang : _gettext_languages() ) + for ( auto localedir : candidatePaths ) + { + QDir ldir( localedir ); + cDebug() << "Checking" << lang << "in" < === * * Copyright 2014-2016, Teo Mrnjavac + * Copyright 2017, Adriaan de Groot * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -60,10 +61,14 @@ std::string check_target_env_output( const boost::python::list& args, std::string obscure( const std::string& string ); -inline int _handle_check_target_env_call_error( int ec, const QString& cmd ); +boost::python::object gettext_path(); + +boost::python::list gettext_languages(); void debug( const std::string& s ); +inline int _handle_check_target_env_call_error( int ec, const QString& cmd ); + class PythonJobInterface { public: diff --git a/src/modules/CMakeLists.txt b/src/modules/CMakeLists.txt index ab4033aa1..48cda5c72 100644 --- a/src/modules/CMakeLists.txt +++ b/src/modules/CMakeLists.txt @@ -13,3 +13,6 @@ foreach( SUBDIRECTORY ${SUBDIRECTORIES} ) calamares_add_module_subdirectory( ${SUBDIRECTORY} ) endif() endforeach() + +include( CalamaresAddTranslations ) +add_calamares_python_translations( ${CALAMARES_TRANSLATION_LANGUAGES} ) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index fd9a2abda..ec6b02bfd 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -5,6 +5,7 @@ # # Copyright 2014, Teo Mrnjavac # Copyright 2017, Alf Gaida +# Copyright 2017, Adriaan de Groot # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -32,9 +33,24 @@ import libcalamares import os from time import gmtime, strftime, sleep +import gettext +_ = gettext.translation("calamares-python", + localedir=libcalamares.utils.gettext_path(), + languages=libcalamares.utils.gettext_languages(), + fallback=True).gettext + + +def pretty_name(): + return _("Dummy python job.") + def run(): """Dummy python job.""" + libcalamares.utils.debug("LocaleDir=" + + str(libcalamares.utils.gettext_path())) + libcalamares.utils.debug("Languages=" + + str(libcalamares.utils.gettext_languages())) + os.system("/bin/sh -c \"touch ~/calamares-dummypython\"") accumulator = strftime("%Y-%m-%d %H:%M:%S", gmtime()) + "\n" accumulator += "Calamares version: " + libcalamares.VERSION_SHORT + "\n" @@ -65,11 +81,26 @@ def run(): str(libcalamares.globalstorage.value("foo")), str(libcalamares.globalstorage.value("item2")), str(libcalamares.globalstorage.value("item3"))) - - libcalamares.job.setprogress(0.1) libcalamares.utils.debug(accumulator) + libcalamares.utils.debug("Run dummy python") + + sleep(1) + + try: + configlist = list(libcalamares.job.configuration["a_list"]) + except KeyError: + configlist = ["no list"] + + c = 1 + for k in configlist: + libcalamares.utils.debug(_("Dummy python step {}").format(str(k))) + sleep(1) + libcalamares.job.setprogress(c * 1.0 / len(configlist)) + c += 1 + sleep(3) + # To indicate an error, return a tuple of: # (message, detailed-error-message) return None diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 5349b6737..e99aa6d4a 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 ba0e9712c..b4d344452 100644 --- a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ar\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo index bb0413d21..709ab125f 100644 Binary files a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po index aa5a5e80d..e698691fe 100644 --- a/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ast/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ast\n" @@ -26,6 +26,10 @@ msgstr "¡Prímime!" msgid "A new QLabel." msgstr "Una QLabel nueva." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "El 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 8fc73de23..634bd45a7 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 c45ba459a..aabd15e6e 100644 --- a/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/bg/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: bg\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo index 1f3e7bde0..6f974e708 100644 Binary files a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po index d92c4fd07..0f9ccdb32 100644 --- a/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ca/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ca\n" @@ -26,6 +26,10 @@ msgstr "Clica'm!" msgid "A new QLabel." msgstr "Una etiqueta Q nova." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Vistes de Dummy PythonQt" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "La tasca Dummy PythonQt" diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo index dca706224..73d5fba64 100644 Binary files a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo differ 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 fec1f577a..9b52a1fa8 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: cs_CZ\n" @@ -26,6 +26,10 @@ msgstr "Klikni na mě!" msgid "A new QLabel." msgstr "Nový QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Testovací úloha PythonQt" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo index aa8d8916c..3b5d593f4 100644 Binary files a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po index 581060da6..5908dbbbd 100644 --- a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: da\n" @@ -26,6 +26,10 @@ msgstr "Klik på mig!" msgid "A new QLabel." msgstr "En ny QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Dummy PythonQt-visningstrin" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Dummy PythonQt-jobbet" diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo index 0ba5db33b..a22587fba 100644 Binary files a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 9a5d0cb54..92e24b4df 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: de\n" @@ -26,6 +26,10 @@ msgstr "Klick mich!" msgid "A new QLabel." msgstr "Ein neues QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Der Dummy-PythonQt-Job" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 5ebacd7f4..4e9769911 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" @@ -22,6 +22,10 @@ msgstr "Click me!" msgid "A new QLabel." msgstr "A new QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Dummy PythonQt ViewStep" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "The 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 b4195cc68..bbfb33004 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 5837d9ca3..3b305234e 100644 --- a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: el\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 219cff20f..79b2366b4 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 9e2126f56..3196b7931 100644 --- a/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/en_GB/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: en_GB\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo index aca1de3f4..eddbb921d 100644 Binary files a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po index 1b07cf7f5..0d146bb0e 100644 --- a/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: es\n" @@ -26,6 +26,10 @@ msgstr "¡Púlsame!" msgid "A new QLabel." msgstr "Una nueva QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "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 2115baaf1..6a5cf2cc1 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 2bf0e2270..26c9211bd 100644 --- a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: es_ES\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 68ea8166d..7f66467e8 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 b4209b99b..74814fecc 100644 --- a/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_MX/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: es_MX\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 49729889c..f52688188 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 54d6660e2..a36b7368b 100644 --- a/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/es_PR/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: es_PR\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 f301c86e6..ecb678aba 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 f2fd787f4..0d7f46a9a 100644 --- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: et\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 6d4c89220..14aebbea7 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 8a09c004a..2786536bd 100644 --- a/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/eu/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: eu\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 036426bb4..dc17915b0 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 dc63e6af4..c8a2e74ed 100644 --- a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: fa\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 7c09520da..9e0d83f6b 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 a018918cd..918ae8ffb 100644 --- a/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fi_FI/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: fi_FI\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 62f41ac89..0d4650d33 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 0309bab25..58bbea615 100644 --- a/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: fr\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 a554b3b01..f669949fe 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 3a02e939b..93228b874 100644 --- a/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/fr_CH/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: fr_CH\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 2f21852db..3548ce763 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 f93de00de..38bbe9ff0 100644 --- a/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gl/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: gl\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 43d6bb8a9..191607183 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 56999c0a2..6ea0f5eae 100644 --- a/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/gu/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: gu\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo index af3a99234..3fd3f3a64 100644 Binary files a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po index 8aaffc7a3..c5ddb363b 100644 --- a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Eli Shleifer , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: he\n" @@ -26,6 +26,10 @@ msgstr "לחץ עליי!" msgid "A new QLabel." msgstr "QLabel חדש." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "משימת הדמה של PythonQt" diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index 33f5578c2..4a53bc6b4 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 c37918c99..aac539d61 100644 --- a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: hi\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo index cc1235d79..eeb08c015 100644 Binary files a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po index ba4fdeb3d..8f55909e6 100644 --- a/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hr/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: hr\n" @@ -26,6 +26,10 @@ msgstr "Klikni me!" msgid "A new QLabel." msgstr "Novi QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Testni PythonQt ViewStep" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Testni PythonQt posao" diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo index 206bf7b4a..6eb9ade95 100644 Binary files a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po index 4624e00fd..fc1490bcb 100644 --- a/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/hu/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: hu\n" @@ -26,6 +26,10 @@ msgstr "Kattints ide!" msgid "A new QLabel." msgstr "Egy új QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Egy PythonQt Job teszt" diff --git a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.mo index ee16efc69..ee4f15b52 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 3cc058033..3ab2a255a 100644 --- a/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/id/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: id\n" @@ -26,6 +26,10 @@ msgstr "Klik saya!" msgid "A new QLabel." msgstr "QLabel baru." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Dummy PythonQt Job" diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo index f9585197d..c638cbd28 100644 Binary files a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po index ad6450012..da3c397ea 100644 --- a/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/is/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: is\n" @@ -26,6 +26,10 @@ msgstr "Smelltu mig!" msgid "A new QLabel." msgstr "Nýtt QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Dummy PythonQt Job" diff --git a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo index ea87ff9f0..8549b91ec 100644 Binary files a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.mo differ 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 300224012..c545a6282 100644 --- a/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/it_IT/LC_MESSAGES/dummypythonqt.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: it_IT\n" @@ -27,6 +27,10 @@ msgstr "Clicca qui!" msgid "A new QLabel." msgstr "Una nuova QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Il Job Dummy PythonQt" diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo index 0aa5dd177..afaac186a 100644 Binary files a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po index fb1184883..cae3d2722 100644 --- a/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ja/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ja\n" @@ -26,13 +26,17 @@ msgstr "クリックしてください!" msgid "A new QLabel." msgstr "新しいQLabel" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Dummy PythonQt ViewStep" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" -msgstr "ダミーのPythonQtジョブ" +msgstr "The Dummy PythonQt Job" #: src/modules/dummypythonqt/main.py:186 msgid "This is the Dummy PythonQt Job. The dummy job says: {}" -msgstr "これはダミーのPythonQtジョブです。ダミーのジョブの出力: {}" +msgstr "これはDummy PythonQtジョブです。Dummy ジョブの出力: {}" #: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo index e7ce265a2..4d7e1ade2 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 6744ef2d0..e2ed766b0 100644 --- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: kk\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 5b1c5ee21..d9e3440ea 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 e2faad732..1147fe85f 100644 --- a/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lo/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: lo\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo index 3b7f8fd94..f2cb98bc3 100644 Binary files a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po index 0273756ba..725cdeffc 100644 --- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: lt\n" @@ -26,6 +26,10 @@ msgstr "Spustelėkite mane!" msgid "A new QLabel." msgstr "Naujas QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Fiktyvi PythonQt ViewStep" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Fiktyvi PythonQt užduotis" diff --git a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.mo index 9c513e85a..afb5fa103 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 64586c488..893c5989f 100644 --- a/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/mr/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: mr\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 e0aa88a98..195b054a8 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 693324b02..93c4631d6 100644 --- a/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nb/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: nb\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 d883f109b..be19ac81b 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 ceeae44c5..e2d139668 100644 --- a/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/nl/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: nl\n" @@ -26,6 +26,10 @@ msgstr "Klik mij!" msgid "A new QLabel." msgstr "Een nieuw QLabel" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "De Dummy PythonQt opdracht" diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo index 6d4cd2613..d74e6d2da 100644 Binary files a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po index 04987ff05..7b8627848 100644 --- a/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: m4sk1n , 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: pl\n" @@ -26,6 +26,10 @@ msgstr "Naciśnij mnie!" msgid "A new QLabel." msgstr "Nowy QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Zadanie 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 9cc14be42..f690c1a44 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 68f454a86..0ddcf5ab3 100644 --- a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: pl_PL\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo index 820ff3855..69adda563 100644 Binary files a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo differ 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 79544f46e..2b894eee5 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: pt_BR\n" @@ -26,6 +26,10 @@ msgstr "Clique em mim!" msgid "A new QLabel." msgstr "Uma nova QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "O trabalho de modelo do PythonQt" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo index 489edf85f..a437e8c58 100644 Binary files a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo differ 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 f1de0e800..1e05c69f3 100644 --- a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: pt_PT\n" @@ -26,6 +26,10 @@ msgstr "Clique-me!" msgid "A new QLabel." msgstr "Uma nova QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Dummy PythonQt ViewStep" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "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 46b7e3207..13750b167 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 28d7776fb..53d9f52c0 100644 --- a/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ro/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ro\n" @@ -26,6 +26,10 @@ msgstr "Clic aici!" msgid "A new QLabel." msgstr "Un nou QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Un job job fictiv PythonQt" diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo index a627ad69a..948000f6a 100644 Binary files a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po index f6bce14ed..39e277563 100644 --- a/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ru/LC_MESSAGES/dummypythonqt.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Simon Schwartz , 2017\n" "Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ru\n" @@ -27,6 +27,10 @@ msgstr "Нажать здесь!" msgid "A new QLabel." msgstr "Новый QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "The Dummy PythonQt Job" diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo index dcbc56c38..cb3c99c40 100644 Binary files a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po index 3df4cfccd..75be8bb1f 100644 --- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: sk\n" @@ -26,6 +26,10 @@ msgstr "Kliknite sem!" msgid "A new QLabel." msgstr "Nová menovka QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Fiktívna úloha PythonQt" diff --git a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.mo index 96350dfe7..c7c255e21 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 a065019ce..c6dbbed53 100644 --- a/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sl/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: sl\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo index a2771e965..2aa5a1061 100644 Binary files a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.mo differ diff --git a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po index f131d0d6f..426f853e7 100644 --- a/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: sr\n" @@ -26,6 +26,10 @@ msgstr "Кликни ме!" msgid "A new QLabel." msgstr "Нова КуОзнака" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 81152d66b..b3f1e8936 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 438c52fc6..dbbfbac9b 100644 --- a/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sr@latin/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: sr@latin\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 8afae7e98..37c090f63 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 19686b07a..d1d146940 100644 --- a/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/sv/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: sv\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 931fda431..3c787d074 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 7fbc94ef1..f6f125dcd 100644 --- a/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/th/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: th\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo index 7d2abb0cc..77085f17e 100644 Binary files a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.mo differ 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 a2eb1a9c7..cc6044854 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: tr_TR\n" @@ -26,6 +26,10 @@ msgstr "Buraya tıkla!" msgid "A new QLabel." msgstr "Yeni bir QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Kukla PythonQt Çalışması" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index e5b10eaef..957835e03 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 fb5ab3ed1..7bbaa5d30 100644 --- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: uk\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 a3b855312..430ab38ea 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 b055fb4c6..d30f65c7c 100644 --- a/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/ur/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: ur\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The 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 ee4381410..32451102b 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 30ec8648d..6d850fc0a 100644 --- a/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/uz/LC_MESSAGES/dummypythonqt.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: uz\n" @@ -23,6 +23,10 @@ msgstr "" msgid "A new QLabel." msgstr "" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "" diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo index b14bb4814..2556fba3f 100644 Binary files a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.mo differ 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 8404093d6..7371e4e9c 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: zh_CN\n" @@ -26,6 +26,10 @@ msgstr "按我按我!" msgid "A new QLabel." msgstr "一个平淡无奇的 QLabel。" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "PythonQt 任务" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo index 32a925e8c..5ac8ea5c1 100644 Binary files a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo differ 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 3239073b5..81ff73d38 100644 --- a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\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" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: zh_TW\n" @@ -26,6 +26,10 @@ msgstr "點擊我!" msgid "A new QLabel." msgstr "一個新的 QLabel。" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "假的 PythonQt 檢視步驟" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "假的 PythonQt 工作" diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index 7d0ac2c54..649570958 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -22,7 +22,17 @@ import libcalamares import os -from libcalamares.utils import check_target_env_call +from libcalamares.utils import check_target_env_call, debug + +import gettext +_ = gettext.translation("calamares-python", + localedir=libcalamares.utils.gettext_path(), + languages=libcalamares.utils.gettext_languages(), + fallback=True).gettext + + +def pretty_name(): + return _("Generate machine-id.") def run(): diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index 907e704b4..955db1830 100755 --- a/src/modules/testmodule.py +++ b/src/modules/testmodule.py @@ -4,6 +4,7 @@ # === This file is part of Calamares - === # # Copyright 2014, Teo Mrnjavac +# Copyright 2017, Adriaan de Groot # # Calamares is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -67,8 +68,10 @@ def main(): help="Dir containing the Python module.") parser.add_argument("globalstorage_yaml", nargs="?", help="A yaml file to initialize GlobalStorage.") - help_desc = "A yaml file to initialize the configuration dict." - parser.add_argument("configuration_yaml", nargs="?", help=help_desc) + parser.add_argument("configuration_yaml", nargs="?", + help="A yaml file to initialize the Job.") + parser.add_argument("--lang", "-l", nargs="?", default=None, + help="Set translation language.") args = parser.parse_args() print("Testing module in: " + args.moduledir) @@ -81,7 +84,11 @@ def main(): print("Only Python jobs can be tested.") return 1 - libcalamares.globalstorage = libcalamares.GlobalStorage() + # Parameter None creates a new, empty GlobalStorage + libcalamares.globalstorage = libcalamares.GlobalStorage(None) + libcalamares.globalstorage.insert("testing", True) + if args.lang: + libcalamares.globalstorage.insert("localeConf", {"LANG": args.lang}) # if a file for simulating globalStorage contents is provided, load it if args.globalstorage_yaml: