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..4f288884e 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -14,22 +14,13 @@ Categories=Qt;System; # Translations -Name[ast]=Calamares -Icon[ast]=calamares -GenericName[ast]=Instalador del sistema -Comment[ast]=Calamares — Instalador del sistema -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 + + +# Translations +Name[ca]=Calamares +Icon[ca]=calamares +GenericName[ca]=Instal·lador de sistema +Comment[ca]=Calamares — Instal·lador de sistema Name[da]=Calamares Icon[da]=calamares GenericName[da]=Systeminstallationsprogram @@ -38,23 +29,83 @@ Name[de]=Calamares Icon[de]=calamares GenericName[de]=Installation des Betriebssystems Comment[de]=Calamares - Installation des Betriebssystems -Name[lt]=Calamares -Icon[lt]=calamares -GenericName[lt]=Sistemos diegimas į kompiuterį -Comment[lt]=Calamares — sistemos diegyklė Name[en_GB]=Calamares Icon[en_GB]=calamares GenericName[en_GB]=System Installer Comment[en_GB]=Calamares — System Installer -Name[pl]=Calamares -Icon[pl]=calamares -GenericName[pl]=Instalator systemu -Comment[pl]=Calamares — Instalator systemu -Name[pt_PT]=Calamares -Icon[pt_PT]=calamares -GenericName[pt_PT]=Instalador de Sistema -Comment[pt_PT]=Calamares - Instalador de Sistema +Name[es]=Calamares +Icon[es]=calamares +GenericName[es]=Instalador del Sistema +Comment[es]=Calamares — Instalador del Sistema +Name[fr]=Calamares +Icon[fr]=calamares +GenericName[fr]=Installateur système +Comment[fr]=Calamares - Installateur système +Name[he]=קלמארס +Icon[he]=קלמארס +GenericName[he]=אשף התקנה +Comment[he]=קלמארס - אשף התקנה +Name[hr]=Calamares +Icon[hr]=calamares +GenericName[hr]=Instalacija sustava +Comment[hr]=Calamares — Instalacija sustava +Name[id]=Calamares +Icon[id]=calamares +GenericName[id]=Pemasang +Comment[id]=Calamares — Pemasang Sistem +Name[ja]=Calamares +Icon[ja]=calamares +GenericName[ja]=システムインストーラー +Comment[ja]=Calamares — システムインストーラー +Name[lt]=Calamares +Icon[lt]=calamares +GenericName[lt]=Sistemos diegimas į kompiuterį +Comment[lt]=Calamares — sistemos diegyklė Name[nl]=Calamares Icon[nl]=calamares GenericName[nl]=Installatieprogramma Comment[nl]=Calamares — Installatieprogramma +Name[pl]=Calamares +Icon[pl]=calamares +GenericName[pl]=Instalator systemu +Comment[pl]=Calamares — Instalator systemu +Name[pt_BR]=Calamares +Icon[pt_BR]=calamares +GenericName[pt_BR]=Instalador de Sistema +Comment[pt_BR]=Calamares — Instalador de Sistema +Name[cs_CZ]=Calamares +Icon[cs_CZ]=calamares +GenericName[cs_CZ]=Instalační program systému +Comment[cs_CZ]=Calamares - instalační program systému +Name[ru]=Calamares +Icon[ru]=calamares +GenericName[ru]=Установщик системы +Comment[ru]=Calamares - Установщик системы +Name[sk]=Calamares +Icon[sk]=calamares +GenericName[sk]=Inštalátor systému +Comment[sk]=Calamares — Inštalátor systému +Name[sv]=Calamares +Icon[sv]=calamares +GenericName[sv]=Systeminstallerare +Comment[sv]=Calamares — Systeminstallerare +Name[zh_CN]=Calamares +Icon[zh_CN]=calamares +GenericName[zh_CN]=系统安装程序 +Comment[zh_CN]=Calamares — 系统安装程序 +Name[zh_TW]=Calamares +Icon[zh_TW]=calamares +GenericName[zh_TW]=系統安裝程式 +Comment[zh_TW]=Calamares ── 系統安裝程式 +Name[ast]=Calamares +Icon[ast]=calamares +GenericName[ast]=Instalador del sistema +Comment[ast]=Calamares — Instalador del sistema +Name[pt_PT]=Calamares +Icon[pt_PT]=calamares +GenericName[pt_PT]=Instalador de Sistema +Comment[pt_PT]=Calamares - Instalador de Sistema +Name[tr_TR]=Calamares +Icon[tr_TR]=calamares +GenericName[tr_TR]=Sistem Yükleyici +Comment[tr_TR]=Calamares — Sistem Yükleyici 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..f2af10ebc 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. يشغّل عمليّة %1. - + Bad working directory path مسار سيء لمجلد العمل - + Working directory %1 for python job %2 is not readable. لا يمكن القراءة من مجلد العمل %1 الخاص بعملية بايثون %2. - + Bad main script file ملفّ السّكربت الرّئيس سيّء. - + Main script file %1 for python job %2 is not readable. ملفّ السّكربت الرّئيس %1 لمهمّة بايثون %2 لا يمكن قراءته. - + Boost.Python error in job "%1". خطأ Boost.Python في العمل "%1". @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish أنهِ + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..b0f9c8b81 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. Executando operación %1. - + Bad working directory path Camín incorreutu del direutoriu de trabayu - + Working directory %1 for python job %2 is not readable. El direutoriu de trabayu %1 pal trabayu python %2 nun ye lleible. - + Bad main script file Ficheru incorreutu del script principal - + Main script file %1 for python job %2 is not readable. El ficheru de script principal %1 pal trabayu python %2 nun ye lleible. - + Boost.Python error in job "%1". Fallu Boost.Python nel trabayu «%1». @@ -1038,10 +1038,20 @@ L'instalador colará y perderánse toles camudancies. FinishedViewStep - + Finish Finar + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..dce5bde9c 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Изпълнение на %1 операция. - + Bad working directory path Невалиден път на работната директория - + Working directory %1 for python job %2 is not readable. Работна директория %1 за python задача %2 не се чете. - + Bad main script file Невалиден файл на главен скрипт - + Main script file %1 for python job %2 is not readable. Файлът на главен скрипт %1 за python задача %2 не се чете. - + Boost.Python error in job "%1". Boost.Python грешка в задача "%1". @@ -1039,10 +1039,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Завърши + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1232,12 +1242,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 +1268,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..294795406 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -188,32 +188,32 @@ Sortida: Calamares::PythonJob - + Running %1 operation. Executant l'operació %1. - + Bad working directory path Ruta errònia del directori de treball - + Working directory %1 for python job %2 is not readable. El directori de treball %1 per a la tasca python %2 no és llegible. - + Bad main script file Fitxer erroni d'script principal - + Main script file %1 for python job %2 is not readable. El fitxer de script principal %1 per a la tasca de python %2 no és llegible. - + Boost.Python error in job "%1". Error de Boost.Python a la tasca "%1". @@ -1038,10 +1038,20 @@ L'instal·lador es tancarà i tots els canvis es perdran. FinishedViewStep - + Finish Acaba + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..ceda78cc4 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -188,32 +188,32 @@ Výstup: Calamares::PythonJob - + Running %1 operation. Spouštím %1 operaci. - + Bad working directory path Špatná cesta k pracovnímu adresáři. - + Working directory %1 for python job %2 is not readable. Pracovní adresář %1 pro Python skript %2 není čitelný. - + Bad main script file Špatný hlavní soubor skriptu. - + Main script file %1 for python job %2 is not readable. Hlavní soubor %1 pro Python skript %2 není čitelný. - + Boost.Python error in job "%1". Boost.Python chyba ve skriptu "%1". @@ -240,7 +240,7 @@ Výstup: Cancel installation without changing the system. - + Zrušení instalace bez změny systému. @@ -257,17 +257,17 @@ Instalační program bude ukončen a všechny změny ztraceny. &Yes - + &Ano &No - + &Ne &Close - + &Zavřít @@ -292,12 +292,12 @@ Instalační program bude ukončen a všechny změny ztraceny. &Done - + &Hotovo The installation is complete. Close the installer. - + Instalace dokončena. Zavřete instalátor. @@ -553,7 +553,7 @@ Instalační program bude ukončen a všechny změny ztraceny. MiB - + MiB @@ -613,7 +613,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Mountpoint already in use. Please select another one. - + Bod připojení je už používán. Prosím vyberte jiný. @@ -928,7 +928,7 @@ Instalační program bude ukončen a všechny změny ztraceny. MiB - + MiB @@ -943,7 +943,7 @@ Instalační program bude ukončen a všechny změny ztraceny. Mountpoint already in use. Please select another one. - + Bod připojení je už používán. Prosím vyberte jiný. @@ -1032,16 +1032,26 @@ Instalační program bude ukončen a všechny změny ztraceny. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Instalace selhala</h1><br/>%1 nebyl instalován na váš počítač.<br/>Hlášení o chybě: %2. FinishedViewStep - + Finish Dokončit + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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) @@ -1665,7 +1675,7 @@ Instalační program bude ukončen a všechny změny ztraceny. A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. - + Kromě šifrovaného kořenového oddílu byl vytvořen i nešifrovaný oddíl zavaděče.<br/><br/>To by mohl být bezpečnostní problém, protože na nešifrovaném oddílu jsou důležité soubory systému.<br/>Pokud chcete, můžete pokračovat, ale odemykání souborového systému bude probíhat později při startu systému.<br/>Pro zašifrování oddílu zavaděče se vraťte a vytvořte ho vybráním možnosti <strong>Šifrovat</strong> v okně při vytváření oddílu. @@ -1837,7 +1847,7 @@ Instalační program bude ukončen a všechny změny ztraceny. The screen is too small to display the installer. - + Obrazovka je příliš malá pro zobrazení instalátoru. @@ -2096,12 +2106,12 @@ Instalační program bude ukončen a všechny změny ztraceny. Cannot disable root account. - + Nelze zakázat účet root. passwd terminated with error code %1. - + Příkaz passwd ukončen s chybovým kódem %1. @@ -2250,7 +2260,7 @@ Instalační program bude ukončen a všechny změny ztraceny. <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Vítá vás instalační program Calamares pro %1.</h1> @@ -2260,7 +2270,7 @@ Instalační program bude ukončen a všechny změny ztraceny. <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/">Překladatelský tým Calamares</a>.<br/><br/>Vývoj <a href="http://calamares.io/">Calamares</a> je podporován <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 08411f70d..e88b0d26b 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Kører %1-handling. - + Bad working directory path Ugyldig arbejdsmappesti - + Working directory %1 for python job %2 is not readable. Arbejdsmappe %1 for python-job %2 er ikke læsbar. - + Bad main script file Ugyldig primær skriptfil - + Main script file %1 for python job %2 is not readable. Primær skriptfil %1 for python-job %2 er ikke læsbar. - + Boost.Python error in job "%1". Boost.Python-fejl i job "%1". @@ -1038,10 +1038,20 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. FinishedViewStep - + Finish Færdig + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..35bedd47b 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -188,32 +188,32 @@ Ausgabe: Calamares::PythonJob - + Running %1 operation. Operation %1 wird ausgeführt. - + Bad working directory path Fehlerhafter Arbeitsverzeichnis-Pfad - + Working directory %1 for python job %2 is not readable. Arbeitsverzeichnis %1 für Python-Job %2 ist nicht lesbar. - + Bad main script file Fehlerhaftes Hauptskript - + Main script file %1 for python job %2 is not readable. Hauptskript-Datei %1 für Python-Job %2 ist nicht lesbar. - + Boost.Python error in job "%1". Boost.Python-Fehler in Job "%1". @@ -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,16 +1032,26 @@ 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. FinishedViewStep - + Finish Beenden + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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 +1847,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 +2260,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 +2270,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..46f2cf755 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Εκτελείται η λειτουργία %1. - + Bad working directory path Λανθασμένη διαδρομή καταλόγου εργασίας - + Working directory %1 for python job %2 is not readable. Ο ενεργός κατάλογος %1 για την εργασία python %2 δεν είναι δυνατόν να διαβαστεί. - + Bad main script file Λανθασμένο κύριο αρχείο δέσμης ενεργειών - + Main script file %1 for python job %2 is not readable. Η κύρια δέσμη ενεργειών %1 για την εργασία python %2 δεν είναι δυνατόν να διαβαστεί. - + Boost.Python error in job "%1". Σφάλμα Boost.Python στην εργασία "%1". @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Τέλος + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..dc388b75e 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Running %1 operation. - + Bad working directory path Bad working directory path - + Working directory %1 for python job %2 is not readable. Working directory %1 for python job %2 is not readable. - + Bad main script file Bad main script file - + Main script file %1 for python job %2 is not readable. Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". Boost.Python error in job "%1". @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Finish + + + Installation Complete + Installation Complete + + + + The installation of %1 is complete. + The installation of %1 is complete. + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..c35212a35 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Bad working directory path - + Working directory %1 for python job %2 is not readable. Working directory %1 for python job %2 is not readable. - + Bad main script file Bad main script file - + Main script file %1 for python job %2 is not readable. Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". Boost.Python error in job "%1". @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..e30d2502d 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -189,32 +189,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. Ejecutando %1 operación. - + Bad working directory path Error en la ruta del directorio de trabajo - + Working directory %1 for python job %2 is not readable. El directorio de trabajo %1 para el script de python %2 no se puede leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -1039,10 +1039,20 @@ Saldrá del instalador y se perderán todos los cambios. FinishedViewStep - + Finish Finalizar + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1232,12 +1242,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 +1268,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..61fa77609 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Ruta de trabajo errónea - + Working directory %1 for python job %2 is not readable. No se puede leer la ruta de trabajo %1 de la tarea %2 de python. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. No se puede leer el script principal %1 de la tarea %2 de python. - + Boost.Python error in job "%1". Error de Boost.Python en la tarea "%1". @@ -1038,10 +1038,20 @@ El instalador se cerrará y se perderán todos los cambios. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..b60b9994c 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. Ejecutando operación %1. - + Bad working directory path Ruta a la carpeta de trabajo errónea - + Working directory %1 for python job %2 is not readable. La carpeta de trabajo %1 para la tarea de python %2 no se pudo leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -1040,10 +1040,20 @@ El instalador terminará y se perderán todos los cambios. FinishedViewStep - + Finish Terminado + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1233,12 +1243,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 +1269,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..fb7ed5974 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -188,32 +188,32 @@ Salida: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path La ruta del directorio de trabajo es incorrecta - + Working directory %1 for python job %2 is not readable. El directorio de trabajo %1 para el script de python %2 no se puede leer. - + Bad main script file Script principal erróneo - + Main script file %1 for python job %2 is not readable. El script principal %1 del proceso python %2 no es accesible. - + Boost.Python error in job "%1". Error Boost.Python en el proceso "%1". @@ -1037,10 +1037,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1230,12 +1240,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 +1266,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..d5bda8ad0 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..25b34a0b3 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -186,32 +186,32 @@ Output: Calamares::PythonJob - + Running %1 operation. %1 eragiketa burutzen. - + Bad working directory path Direktorio ibilbide ezegokia - + Working directory %1 for python job %2 is not readable. - + Bad main script file Script fitxategi nagusi okerra - + Main script file %1 for python job %2 is not readable. %1 script fitxategi nagusia ezin da irakurri python %2 lanerako - + Boost.Python error in job "%1". @@ -1035,10 +1035,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Bukatu + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1228,12 +1238,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 +1264,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..ae2a57efa 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..5b03d22e9 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -188,32 +188,32 @@ Tuloste: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Epäkelpo työskentelyhakemiston polku - + Working directory %1 for python job %2 is not readable. Työkansio %1 pythonin työlle %2 ei ole luettavissa. - + Bad main script file Huono pää-skripti tiedosto - + Main script file %1 for python job %2 is not readable. Pääskriptitiedosto %1 pythonin työlle %2 ei ole luettavissa. - + Boost.Python error in job "%1". Boost.Python virhe työlle "%1". @@ -1038,10 +1038,20 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..c6b2e4a83 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -188,32 +188,32 @@ Sortie : Calamares::PythonJob - + Running %1 operation. Exécution de l'opération %1. - + Bad working directory path Chemin du répertoire de travail invalide - + Working directory %1 for python job %2 is not readable. Le répertoire de travail %1 pour le job python %2 n'est pas accessible en lecture. - + Bad main script file Fichier de script principal invalide - + Main script file %1 for python job %2 is not readable. Le fichier de script principal %1 pour la tâche python %2 n'est pas accessible en lecture. - + Boost.Python error in job "%1". Erreur Boost.Python pour le job "%1". @@ -1038,10 +1038,20 @@ L'installateur se fermera et les changements seront perdus. FinishedViewStep - + Finish Terminer + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..084dd832b 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..176532c78 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -189,32 +189,32 @@ Saída: Calamares::PythonJob - + Running %1 operation. Excutando a operación %1. - + Bad working directory path A ruta ó directorio de traballo é errónea - + Working directory %1 for python job %2 is not readable. O directorio de traballo %1 para o traballo de python %2 non é lexible - + Bad main script file Ficheiro de script principal erróneo - + Main script file %1 for python job %2 is not readable. O ficheiro principal de script %1 para a execución de python %2 non é lexible. - + Boost.Python error in job "%1". Boost.Python tivo un erro na tarefa "%1". @@ -1039,10 +1039,20 @@ O instalador pecharase e perderanse todos os cambios. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1232,12 +1242,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 +1268,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..c712f7d41 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..ef7f1d585 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. מריץ פעולה %1. - + Bad working directory path נתיב תיקיית עבודה לא תקין - + Working directory %1 for python job %2 is not readable. תיקיית עבודה %1 עבור משימת python %2 לא קריאה. - + Bad main script file קובץ תסריט הרצה ראשי לא תקין - + Main script file %1 for python job %2 is not readable. קובץ תסריט הרצה ראשי %1 עבור משימת python %2 לא קריא. - + Boost.Python error in job "%1". שגיאת Boost.Python במשימה "%1". @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish סיום + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..ba56e2467 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..fa730af32 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -188,32 +188,32 @@ Izlaz: Calamares::PythonJob - + Running %1 operation. Izvodim %1 operaciju. - + Bad working directory path Krivi put do radnog direktorija - + Working directory %1 for python job %2 is not readable. Radni direktorij %1 za python zadatak %2 nije čitljiv. - + Bad main script file Kriva glavna datoteka skripte - + Main script file %1 for python job %2 is not readable. Glavna skriptna datoteka %1 za python zadatak %2 nije čitljiva. - + Boost.Python error in job "%1". Boost.Python greška u zadatku "%1". @@ -1038,10 +1038,20 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. FinishedViewStep - + Finish Završi + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..5384aead9 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -188,32 +188,32 @@ Kimenet: Calamares::PythonJob - + Running %1 operation. Futó %1 műveletek. - + Bad working directory path Rossz munkakönyvtár útvonal - + Working directory %1 for python job %2 is not readable. Munkakönyvtár %1 a python folyamathoz %2 nem olvasható. - + Bad main script file Rossz alap script fájl - + Main script file %1 for python job %2 is not readable. Alap script fájl %1 a python folyamathoz %2 nem olvasható. - + Boost.Python error in job "%1". Boost. Python hiba ebben a folyamatban "%1". @@ -1039,10 +1039,20 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l FinishedViewStep - + Finish Befejezés + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1232,12 +1242,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 +1268,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..da2526095 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -188,32 +188,32 @@ Keluaran: Calamares::PythonJob - + Running %1 operation. Menjalankan %1 operasi. - + Bad working directory path Jalur lokasi direktori tidak berjalan baik - + Working directory %1 for python job %2 is not readable. Direktori kerja %1 untuk penugasan python %2 tidak dapat dibaca. - + Bad main script file Berkas skrip utama buruk - + Main script file %1 for python job %2 is not readable. Berkas skrip utama %1 untuk penugasan python %2 tidak dapat dibaca. - + Boost.Python error in job "%1". Boost.Python mogok dalam penugasan "%1". @@ -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,16 +1034,26 @@ 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. FinishedViewStep - + Finish Selesai + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1233,12 +1243,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 +1269,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 +1849,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 +2262,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 +2272,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..3e52dc86c 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -188,32 +188,32 @@ Frálag: Calamares::PythonJob - + Running %1 operation. Keyri %1 aðgerð. - + Bad working directory path Röng slóð á vinnumöppu - + Working directory %1 for python job %2 is not readable. Vinnslumappa %1 fyrir python-verkið %2 er ekki lesanleg. - + Bad main script file Röng aðal-skriftuskrá - + Main script file %1 for python job %2 is not readable. Aðal-skriftuskrá %1 fyrir python-verkið %2 er ekki lesanleg. - + Boost.Python error in job "%1". Boost.Python villa í verkinu "%1". @@ -1038,10 +1038,20 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. FinishedViewStep - + Finish Ljúka + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..cbf862ca5 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Operazione %1 in esecuzione. - + Bad working directory path Il percorso della cartella corrente non è corretto - + Working directory %1 for python job %2 is not readable. La cartella corrente %1 per l'attività di Python %2 non è accessibile. - + Bad main script file File dello script principale non valido - + Main script file %1 for python job %2 is not readable. Il file principale dello script %1 per l'attività di python %2 non è accessibile. - + Boost.Python error in job "%1". Errore da Boost.Python nell'operazione "%1". @@ -1038,10 +1038,20 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno FinishedViewStep - + Finish Termina + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..c14605a34 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. %1 操作を実行中。 - + Bad working directory path 不正なワーキングディレクトリパス - + Working directory %1 for python job %2 is not readable. python ジョブ %2 において作業ディレクトリ %1 が読み込めません。 - + Bad main script file 不正なメインスクリプトファイル - + Main script file %1 for python job %2 is not readable. python ジョブ %2 におけるメインスクリプトファイル %1 が読み込めません。 - + Boost.Python error in job "%1". ジョブ "%1" での Boost.Python エラー。 @@ -1032,16 +1032,26 @@ 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. FinishedViewStep - + Finish 終了 + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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 +1847,7 @@ The installer will quit and all changes will be lost. The screen is too small to display the installer. - + インストーラーを表示するためには、画面が小さすぎます。 @@ -2260,7 +2270,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..8475d9847 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..1e67238f9 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..d71a2f1d9 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -188,32 +188,32 @@ Išvestis: Calamares::PythonJob - + Running %1 operation. Vykdoma %1 operacija. - + Bad working directory path Netinkama darbinio katalogo vieta - + Working directory %1 for python job %2 is not readable. Darbinis %1 python katalogas dėl %2 užduoties yra neskaitomas - + Bad main script file Prastas pagrindinio skripto failas - + Main script file %1 for python job %2 is not readable. Pagrindinis skriptas %1 dėl python %2 užduoties yra neskaitomas - + Boost.Python error in job "%1". Boost.Python klaida darbe "%1". @@ -1038,10 +1038,20 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. FinishedViewStep - + Finish Pabaiga + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..9109e67e3 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..7ca25af07 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Feil filsti til arbeidsmappe - + Working directory %1 for python job %2 is not readable. Arbeidsmappe %1 for python oppgave %2 er ikke lesbar. - + Bad main script file Ugyldig hovedskriptfil - + Main script file %1 for python job %2 is not readable. Hovedskriptfil %1 for python oppgave %2 er ikke lesbar. - + Boost.Python error in job "%1". Boost.Python feil i oppgave "%1". @@ -1038,10 +1038,20 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..3d8976133 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -188,32 +188,32 @@ Uitvoer: Calamares::PythonJob - + Running %1 operation. Bewerking %1 uitvoeren. - + Bad working directory path Ongeldig pad voor huidige map - + Working directory %1 for python job %2 is not readable. Werkmap %1 voor python taak %2 onleesbaar. - + Bad main script file Onjuist hoofdscriptbestand - + Main script file %1 for python job %2 is not readable. Hoofdscriptbestand %1 voor python taak %2 onleesbaar. - + Boost.Python error in job "%1". Boost.Python fout in taak "%1". @@ -1032,16 +1032,26 @@ 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 FinishedViewStep - + Finish Beëindigen + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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 +2270,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..c74dbabf1 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -188,32 +188,32 @@ Wyjście: Calamares::PythonJob - + Running %1 operation. Wykonuję operację %1. - + Bad working directory path Niepoprawna ścieżka katalogu roboczego - + Working directory %1 for python job %2 is not readable. Katalog roboczy %1 dla zadań pythona %2 jest nieosiągalny. - + Bad main script file Niepoprawny główny plik skryptu - + Main script file %1 for python job %2 is not readable. Główny plik skryptu %1 dla zadań pythona %2 jest nieczytelny. - + Boost.Python error in job "%1". Wystąpił błąd Boost.Python w zadaniu "%1". @@ -1038,10 +1038,20 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. FinishedViewStep - + Finish Koniec + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..d635c1236 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -188,32 +188,32 @@ Wyjście: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Niepoprawna ścieżka folderu roboczego - + Working directory %1 for python job %2 is not readable. Folder roboczy %1 zadania pythona %2 jest nieosiągalny. - + Bad main script file Niepoprawny główny plik skryptu - + Main script file %1 for python job %2 is not readable. Główny plik skryptu %1 zadania pythona %2 jest nieczytelny. - + Boost.Python error in job "%1". Błąd Boost.Python w zadaniu "%1". @@ -1038,10 +1038,20 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..e2dda139e 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -188,32 +188,32 @@ Saída: Calamares::PythonJob - + Running %1 operation. Executando operação %1. - + Bad working directory path Caminho de diretório de trabalho ruim - + Working directory %1 for python job %2 is not readable. Diretório de trabalho %1 para a tarefa do python %2 não é legível. - + Bad main script file Arquivo de script principal ruim - + Main script file %1 for python job %2 is not readable. Arquivo de script principal %1 para a tarefa do python %2 não é legível. - + Boost.Python error in job "%1". Boost.Python erro na tarefa "%1". @@ -240,7 +240,7 @@ Saída: Cancel installation without changing the system. - + Cancelar instalação sem modificar o sistema. @@ -257,17 +257,17 @@ O instalador será fechado e todas as alterações serão perdidas. &Yes - + &Sim &No - + &Não &Close - + &Fechar @@ -292,12 +292,12 @@ O instalador será fechado e todas as alterações serão perdidas. &Done - + Completo The installation is complete. Close the installer. - + A instalação está completa. Feche o instalador. @@ -555,7 +555,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. MiB - + MiB @@ -930,7 +930,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. MiB - + MiB @@ -1034,16 +1034,26 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>A instalação falhou</h1><br/>%1 não foi instalado em seu computador.<br/>A mensagem de erro foi: %2. FinishedViewStep - + Finish Concluir + + + Installation Complete + Instalação Completa + + + + The installation of %1 is complete. + A instalação do %1 está completa. + FormatPartitionJob @@ -1233,12 +1243,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 +1269,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) @@ -2262,7 +2272,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. <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/>Agradecimentos: 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/">Time de tradutores do Calamares</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> o desenvolvimento é patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 66c142a06..5df77de75 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -188,32 +188,32 @@ Saída: Calamares::PythonJob - + Running %1 operation. Operação %1 em execução. - + Bad working directory path Caminho do directório de trabalho errado - + Working directory %1 for python job %2 is not readable. Directório de trabalho %1 para a tarefa python %2 não é legível. - + Bad main script file Ficheiro de script principal errado - + Main script file %1 for python job %2 is not readable. Ficheiro de script principal %1 para a tarefa python %2 não é legível. - + Boost.Python error in job "%1". Erro Boost.Python na tarefa "%1". @@ -1038,10 +1038,20 @@ O instalador será encerrado e todas as alterações serão perdidas. FinishedViewStep - + Finish Finalizar + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..1b4b2d7af 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -188,32 +188,32 @@ Rezultat: Calamares::PythonJob - + Running %1 operation. Se rulează operațiunea %1. - + Bad working directory path Calea dosarului de lucru este proastă - + Working directory %1 for python job %2 is not readable. Dosarul de lucru %1 pentru sarcina python %2 nu este citibil. - + Bad main script file Fișierul script principal este prost - + Main script file %1 for python job %2 is not readable. Fișierul script peincipal %1 pentru sarcina Python %2 nu este citibil. - + Boost.Python error in job "%1". Eroare Boost.Python în sarcina „%1”. @@ -1038,10 +1038,20 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. FinishedViewStep - + Finish Termină + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..e9d278c2a 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Выполняется действие %1. - + Bad working directory path Неверный путь к рабочему каталогу - + Working directory %1 for python job %2 is not readable. Рабочий каталог %1 для задачи python %2 недоступен для чтения. - + Bad main script file Ошибочный главный файл сценария - + Main script file %1 for python job %2 is not readable. Главный файл сценария %1 для задачи python %2 недоступен для чтения. - + Boost.Python error in job "%1". Boost.Python ошибка в задаче "%1". @@ -1037,10 +1037,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Завершить + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1230,12 +1240,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 +1266,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..a2946b3af 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -188,32 +188,32 @@ Výstup: Calamares::PythonJob - + Running %1 operation. Spúšťa sa operácia %1. - + Bad working directory path Nesprávna cesta k pracovnému adresáru - + Working directory %1 for python job %2 is not readable. Pracovný adresár %1 pre úlohu jazyka python %2 nie je možné čítať. - + Bad main script file Nesprávny súbor hlavného skriptu - + Main script file %1 for python job %2 is not readable. Súbor hlavného skriptu %1 pre úlohu jazyka python %2 nie je možné čítať. - + Boost.Python error in job "%1". Chyba knižnice Boost.Python v úlohe „%1“. @@ -1038,10 +1038,20 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. FinishedViewStep - + Finish Dokončenie + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..512bfe567 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -188,32 +188,32 @@ Izpis: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Nepravilna pot delovne mape - + Working directory %1 for python job %2 is not readable. Ni mogoče brati delovne mape %1 za pythonovo opravilo %2. - + Bad main script file Nepravilna datoteka glavnega skripta - + Main script file %1 for python job %2 is not readable. Ni mogoče brati datoteke %1 glavnega skripta za pythonovo opravilo %2. - + Boost.Python error in job "%1". Napaka Boost.Python v opravilu "%1". @@ -1038,10 +1038,20 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..0abcdaf75 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. Извршавам %1 операцију. - + Bad working directory path Лоша путања радног директоријума - + Working directory %1 for python job %2 is not readable. Радни директоријум %1 за питонов посао %2 није читљив. - + Bad main script file Лош фајл главне скрипте - + Main script file %1 for python job %2 is not readable. Фајл главне скрипте %1 за питонов посао %2 није читљив. - + Boost.Python error in job "%1". Boost.Python грешка у послу „%1“. @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish Заврши + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..6133abcf0 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -188,32 +188,32 @@ Povratna poruka: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path Neispravna putanja do radne datoteke - + Working directory %1 for python job %2 is not readable. Nemoguće pročitati radnu datoteku %1 za funkciju %2 u Python-u. - + Bad main script file Neispravan glavna datoteka za skriptu - + Main script file %1 for python job %2 is not readable. Glavna datoteka za skriptu %1 za Python funkciju %2 se ne može pročitati. - + Boost.Python error in job "%1". Boost.Python greška u funkciji %1 @@ -1038,10 +1038,20 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..7245ba850 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -188,32 +188,32 @@ Utdata: Calamares::PythonJob - + Running %1 operation. Kör %1-operation - + Bad working directory path Arbetskatalogens sökväg är ogiltig - + Working directory %1 for python job %2 is not readable. Arbetskatalog %1 för pythonuppgift %2 är inte läsbar. - + Bad main script file Ogiltig huvudskriptfil - + Main script file %1 for python job %2 is not readable. Huvudskriptfil %1 för pythonuppgift %2 är inte läsbar. - + Boost.Python error in job "%1". Boost.Python-fel i uppgift "%'1". @@ -1038,10 +1038,20 @@ Alla ändringar kommer att gå förlorade. FinishedViewStep - + Finish Slutför + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..3bfc307da 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. การปฏิบัติการ %1 กำลังทำงาน - + Bad working directory path เส้นทางไดเรคทอรีที่ใช้ทำงานไม่ถูกต้อง - + Working directory %1 for python job %2 is not readable. ไม่สามารถอ่านไดเรคทอรีที่ใช้ทำงาน %1 สำหรับ python %2 ได้ - + Bad main script file ไฟล์สคริปต์หลักไม่ถูกต้อง - + Main script file %1 for python job %2 is not readable. ไม่สามารถอ่านไฟล์สคริปต์หลัก %1 สำหรับ python %2 ได้ - + Boost.Python error in job "%1". Boost.Python ผิดพลาดที่งาน "%1". @@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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..de27032ea 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. %1 işlemleri yapılıyor. - + Bad working directory path Dizin yolu kötü çalışıyor - + Working directory %1 for python job %2 is not readable. %2 python işleri için %1 dizinleme çalışırken okunamadı. - + Bad main script file Sorunlu script - + Main script file %1 for python job %2 is not readable. %2 python işleri için %1 sorunlu script okunamadı. - + Boost.Python error in job "%1". Boost.Python iş hatası "%1". @@ -1041,10 +1041,20 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. FinishedViewStep - + Finish Kurulum Tamam + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1234,12 +1244,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 +1270,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..4cb6ed0c2 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..28837045f 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..b6a12e4e1 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -182,32 +182,32 @@ Output: Calamares::PythonJob - + Running %1 operation. - + Bad working directory path - + Working directory %1 for python job %2 is not readable. - + Bad main script file - + Main script file %1 for python job %2 is not readable. - + Boost.Python error in job "%1". @@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1224,12 +1234,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 +1260,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..c62c041ba 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -189,32 +189,32 @@ Output: Calamares::PythonJob - + Running %1 operation. 正在运行 %1 个操作。 - + Bad working directory path 错误的工作目录路径 - + Working directory %1 for python job %2 is not readable. 用于 python 任务 %2 的工作目录 %1 不可读。 - + Bad main script file 错误的主脚本文件 - + Main script file %1 for python job %2 is not readable. 用于 python 任务 %2 的主脚本文件 %1 不可读。 - + Boost.Python error in job "%1". 任务“%1”出现 Boost.Python 错误。 @@ -1040,10 +1040,20 @@ The installer will quit and all changes will be lost. FinishedViewStep - + Finish 结束 + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1233,12 +1243,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 +1269,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..0922dc73f 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -188,32 +188,32 @@ Output: Calamares::PythonJob - + Running %1 operation. 正在執行 %1 操作。 - + Bad working directory path 不良的工作目錄路徑 - + Working directory %1 for python job %2 is not readable. Python 行程 %2 作用中的目錄 %1 不具讀取權限。 - + Bad main script file 錯誤的主要腳本檔 - + Main script file %1 for python job %2 is not readable. Python 行程 %2 的主要腳本檔 %1 無法讀取。 - + Boost.Python error in job "%1". 行程 %1 中 Boost.Python 錯誤。 @@ -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,16 +1032,26 @@ 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。 FinishedViewStep - + Finish 完成 + + + Installation Complete + + + + + The installation of %1 is complete. + + FormatPartitionJob @@ -1231,12 +1241,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 +1267,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 +2270,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..a8d01218d --- /dev/null +++ b/lang/python.pot @@ -0,0 +1,27 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generate machine-id." diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo new file mode 100644 index 000000000..82839ebb5 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..f13d19d84 --- /dev/null +++ b/lang/python/ar/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..20db126d0 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..65ff65928 --- /dev/null +++ b/lang/python/ast/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# enolp , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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=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:44 +msgid "Dummy python job." +msgstr "Trabayu maniquín de python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Pasu maniquín de python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Xenerar machine-id." diff --git a/lang/python/bg/LC_MESSAGES/python.mo b/lang/python/bg/LC_MESSAGES/python.mo new file mode 100644 index 000000000..a9bb627fa 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..33ec5eb0e --- /dev/null +++ b/lang/python/bg/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..eae22bf7a 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..5f8230503 --- /dev/null +++ b/lang/python/ca/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Tasca de python fictícia." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Pas de python fitctici {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generació de l'id. de la màquina." 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..015f87119 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..2905482eb --- /dev/null +++ b/lang/python/cs_CZ/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# pavelrz , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: pavelrz , 2017\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:44 +msgid "Dummy python job." +msgstr "Testovací úloha python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Testovací krok {} python." + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Vytvořit machine-id." diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo new file mode 100644 index 000000000..71aa95ed7 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..bc4de3af8 --- /dev/null +++ b/lang/python/da/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Dummy python-job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python-trin {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generere 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..62276fc59 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..b7e9f98f7 --- /dev/null +++ b/lang/python/de/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..23002061d 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..c1aa22c18 --- /dev/null +++ b/lang/python/el/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..bca5cdc77 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..3410efd89 --- /dev/null +++ b/lang/python/en_GB/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..63ea21b42 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..12c332cb9 --- /dev/null +++ b/lang/python/es/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# strel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: strel , 2017\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:44 +msgid "Dummy python job." +msgstr "Tarea de python ficticia." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Paso {} de python ficticio" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generar identificación-de-maquina." 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..e65c0fc58 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..ddd5b1375 --- /dev/null +++ b/lang/python/es_ES/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..63d0babac 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..c63d1029c --- /dev/null +++ b/lang/python/es_MX/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..7a9bb1ce3 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..d64df0b6d --- /dev/null +++ b/lang/python/es_PR/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..d2c1990b9 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..b0f49016d --- /dev/null +++ b/lang/python/et/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..704f3b974 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..917044fbd --- /dev/null +++ b/lang/python/eu/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..4255c04d7 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..003720897 --- /dev/null +++ b/lang/python/fa/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..13b832ac2 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..b889e60b5 --- /dev/null +++ b/lang/python/fi_FI/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..108a9cfe5 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..62387b67e --- /dev/null +++ b/lang/python/fr/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..c4843e25d 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..2aeeb75ff --- /dev/null +++ b/lang/python/fr_CH/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..4324e1276 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..9d2162e31 --- /dev/null +++ b/lang/python/gl/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..30c9a8110 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..0eb71a876 --- /dev/null +++ b/lang/python/gu/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..7d2968beb 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..6bc3c9214 --- /dev/null +++ b/lang/python/he/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "משימת דמה של Python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "צעד דמה של Python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..eac751db9 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..89488ed40 --- /dev/null +++ b/lang/python/hi/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..2534c54ba 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..c35af8b84 --- /dev/null +++ b/lang/python/hr/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Testni python posao." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Testni python korak {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generiraj ID računala." diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo new file mode 100644 index 000000000..fae26ca9d 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..7bfb0661d --- /dev/null +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..df139cd7e 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..02c2e7523 --- /dev/null +++ b/lang/python/id/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Tugas dummy python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Langkah dummy python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Menghasilkan id-mesin" diff --git a/lang/python/is/LC_MESSAGES/python.mo b/lang/python/is/LC_MESSAGES/python.mo new file mode 100644 index 000000000..1054df5ce 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..2d54179f1 --- /dev/null +++ b/lang/python/is/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..51078e0df 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..374c6a74c --- /dev/null +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..0bbe50fcc 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..c717b4a8b --- /dev/null +++ b/lang/python/ja/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "machine-id の生成" diff --git a/lang/python/kk/LC_MESSAGES/python.mo b/lang/python/kk/LC_MESSAGES/python.mo new file mode 100644 index 000000000..bffc9c65b 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..d0936fa83 --- /dev/null +++ b/lang/python/kk/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..9434f55ba 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..17ead03e2 --- /dev/null +++ b/lang/python/lo/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..e5dad3098 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..69c267745 --- /dev/null +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Fiktyvi python užduotis." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Fiktyvus python žingsnis {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generuoti machine-id." diff --git a/lang/python/mr/LC_MESSAGES/python.mo b/lang/python/mr/LC_MESSAGES/python.mo new file mode 100644 index 000000000..6d50fa2e6 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..ecd77a70e --- /dev/null +++ b/lang/python/mr/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..11acd6cc3 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..d5d2da856 --- /dev/null +++ b/lang/python/nb/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..487cfd28a 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..e8898bfc6 --- /dev/null +++ b/lang/python/nl/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Voorbeeld Python-taak" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Voorbeeld Python-stap {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Genereer machine-id" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo new file mode 100644 index 000000000..e739111fe 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..820d9b40b --- /dev/null +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Zadanie Dummy Python" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Krok dummy python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Generuj machine-id." 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..dea0102b9 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..3a12bb74b --- /dev/null +++ b/lang/python/pl_PL/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..d6f544aa3 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..aaa1acc60 --- /dev/null +++ b/lang/python/pt_BR/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Guilherme M.S. , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Guilherme M.S. , 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=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:44 +msgid "Dummy python job." +msgstr "Trabalho fictício python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Passo fictício python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Gerar machine-id." 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..297cbdbf5 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..b536c18ab --- /dev/null +++ b/lang/python/pt_PT/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Tarefa Dummy python." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Passo Dummy python {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Gerar id-máquina" diff --git a/lang/python/ro/LC_MESSAGES/python.mo b/lang/python/ro/LC_MESSAGES/python.mo new file mode 100644 index 000000000..ec67fcbe6 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..ded68d3a8 --- /dev/null +++ b/lang/python/ro/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..0c0ac8991 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..56112d8e7 --- /dev/null +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..45c4ac2f2 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..6e6a53e8c --- /dev/null +++ b/lang/python/sk/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..2be66f6ad 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..06f969efb --- /dev/null +++ b/lang/python/sl/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..644bf61ff 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..6c9bcf090 --- /dev/null +++ b/lang/python/sr/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..4d987eec0 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..2df9c34e2 --- /dev/null +++ b/lang/python/sr@latin/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..9cc4780e2 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..47802736c --- /dev/null +++ b/lang/python/sv/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..a3a10a3fd 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..0ead47db9 --- /dev/null +++ b/lang/python/th/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..dd976051a 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..257abac67 --- /dev/null +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "Makine kimliği oluştur." diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo new file mode 100644 index 000000000..bd9e1646f 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..4d3aebff2 --- /dev/null +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..bac8758da 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..29c56e76d --- /dev/null +++ b/lang/python/ur/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..83a0bd2e4 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..818df31ba --- /dev/null +++ b/lang/python/uz/LC_MESSAGES/python.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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:44 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +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..b04097270 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..1e33f1d1c --- /dev/null +++ b/lang/python/zh_CN/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Mingcong Bai , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-21 17:55-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=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:44 +msgid "Dummy python job." +msgstr "占位 Python 任务。" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "占位 Python 步骤 {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "生成 machine-id。" 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..513104f66 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..6bea01c7e --- /dev/null +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -0,0 +1,31 @@ +# 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-21 17:55-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:44 +msgid "Dummy python job." +msgstr "假的 python 工作。" + +#: src/modules/dummypython/main.py:97 +msgid "Dummy python step {}" +msgstr "假的 python step {}" + +#: src/modules/machineid/main.py:35 +msgid "Generate machine-id." +msgstr "生成 machine-id。" 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" ]; - if ( entryPoint_doc_attr.check() ) + cDebug() << "Job file" << scriptFI.absoluteFilePath(); + if ( !prettyNameFunc.is_none() ) { - 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 > 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 ( m_description.isEmpty() ) + { + 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..9831e9722 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..53dd451dc 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-21 17:55-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 "Testovací PythonQt ViewStep" + #: 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..43240bcc0 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-21 17:55-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..7cd3096d9 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..ae836779a 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-21 17:55-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 "ViewStep de PythonQt Ficticia" + #: 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..82d4f3ed4 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..137c23215 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-21 17:55-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 "שלב הצפייה של משימת הדמה של PythonQt" + #: 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..b93bc6b4c 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..04a11cb27 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-21 17:55-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 "Dummy PythonQt ViewStep" + #: 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..2ba03c124 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..be3014576 100644 --- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po @@ -4,15 +4,16 @@ # # Translators: # Rodrigo de Almeida Sottomaior Macedo , 2017 +# Guilherme M.S. , 2017 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" +"Last-Translator: Guilherme M.S. , 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 +27,10 @@ msgstr "Clique em mim!" msgid "A new QLabel." msgstr "Uma nova QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "ViewStep do PythonQt fictício" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "O trabalho de modelo do PythonQt" @@ -36,4 +41,4 @@ msgstr "Este é o trabalho do modelo PythonQt. O trabalho fictício diz: {}" #: src/modules/dummypythonqt/main.py:190 msgid "A status message for Dummy PythonQt Job." -msgstr "Uma mensagem de status para Dummy PythonQt Job." +msgstr "Uma mensagem de status para Trabalho Fictício 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..ce991fc57 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..1a072d2eb 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-21 17:55-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 "Sahte PythonQt görünümü" + #: 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..c3a070b80 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..c282f245e 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-21 17:55-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 "坠吼滴 PythonQt ViewStep" + #: 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/finished/CMakeLists.txt b/src/modules/finished/CMakeLists.txt index 6549c364e..6482fb2cd 100644 --- a/src/modules/finished/CMakeLists.txt +++ b/src/modules/finished/CMakeLists.txt @@ -1,4 +1,7 @@ +find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED DBus Network ) + include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui ) + calamares_add_plugin( finished TYPE viewmodule EXPORT_MACRO PLUGINDLLEXPORT_PRO @@ -9,5 +12,6 @@ calamares_add_plugin( finished FinishedPage.ui LINK_PRIVATE_LIBRARIES calamaresui + Qt5::DBus SHARED_LIB ) diff --git a/src/modules/finished/FinishedViewStep.cpp b/src/modules/finished/FinishedViewStep.cpp index 3c9bc042c..2dfc1d0f6 100644 --- a/src/modules/finished/FinishedViewStep.cpp +++ b/src/modules/finished/FinishedViewStep.cpp @@ -23,8 +23,13 @@ #include "utils/Logger.h" +#include +#include +#include #include +#include "Branding.h" + FinishedViewStep::FinishedViewStep( QObject* parent ) : Calamares::ViewStep( parent ) , m_widget( new FinishedPage() ) @@ -32,7 +37,7 @@ FinishedViewStep::FinishedViewStep( QObject* parent ) cDebug() << "FinishedViewStep()"; connect( Calamares::JobQueue::instance(), &Calamares::JobQueue::failed, - m_widget, &FinishedPage::onInstallationFailed ); + m_widget, &FinishedPage::onInstallationFailed ); emit nextStatusChanged( true ); } @@ -99,12 +104,37 @@ FinishedViewStep::isAtEnd() const return true; } +void +FinishedViewStep::sendNotification() +{ + QDBusInterface notify( "org.freedesktop.Notifications", "/org/freedesktop/Notifications", "org.freedesktop.Notifications" ); + if ( notify.isValid() ) + { + QDBusReply r = notify.call( "Notify", + QString( "Calamares" ), + QVariant( 0U ), + QString( "calamares" ), + tr( "Installation Complete" ), + tr( "The installation of %1 is complete." ).arg( *Calamares::Branding::VersionedName ), + QStringList(), + QVariantMap(), + QVariant( 0 ) + ); + if ( !r.isValid() ) + cDebug() << "Could not call notify for end of installation." << r.error(); + } + else + cDebug() << "Could not get dbus interface for notifications." << notify.lastError(); +} + void FinishedViewStep::onActivate() { cDebug() << "FinishedViewStep::onActivate()"; m_widget->setUpRestart(); + + sendNotification(); } @@ -120,7 +150,7 @@ void FinishedViewStep::setConfigurationMap( const QVariantMap& configurationMap ) { if ( configurationMap.contains( "restartNowEnabled" ) && - configurationMap.value( "restartNowEnabled" ).type() == QVariant::Bool ) + configurationMap.value( "restartNowEnabled" ).type() == QVariant::Bool ) { bool restartNowEnabled = configurationMap.value( "restartNowEnabled" ).toBool(); @@ -128,20 +158,14 @@ FinishedViewStep::setConfigurationMap( const QVariantMap& configurationMap ) if ( restartNowEnabled ) { if ( configurationMap.contains( "restartNowChecked" ) && - configurationMap.value( "restartNowChecked" ).type() == QVariant::Bool ) - { + configurationMap.value( "restartNowChecked" ).type() == QVariant::Bool ) m_widget->setRestartNowChecked( configurationMap.value( "restartNowChecked" ).toBool() ); - } if ( configurationMap.contains( "restartNowCommand" ) && - configurationMap.value( "restartNowCommand" ).type() == QVariant::String ) - { + configurationMap.value( "restartNowCommand" ).type() == QVariant::String ) m_widget->setRestartNowCommand( configurationMap.value( "restartNowCommand" ).toString() ); - } else - { - m_widget->setRestartNowCommand( "systemctl -i reboot"); - } + m_widget->setRestartNowCommand( "systemctl -i reboot" ); } } } diff --git a/src/modules/finished/FinishedViewStep.h b/src/modules/finished/FinishedViewStep.h index 30151dffb..075183f99 100644 --- a/src/modules/finished/FinishedViewStep.h +++ b/src/modules/finished/FinishedViewStep.h @@ -57,6 +57,12 @@ public: private: FinishedPage* m_widget; + + /** + * @brief At the end of installation (when this step is activated), + * send a desktop notification via DBus that the install is done. + */ + void sendNotification(); }; CALAMARES_PLUGIN_FACTORY_DECLARATION( FinishedViewStepFactory ) 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: