From 34c3bc6c857b7a6c9e5f3ecec588c878025f0ed8 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 9 Aug 2017 14:33:32 -0400 Subject: [PATCH 01/32] CMake: shuffle translations macros into CMakeModules/ --- .../CalamaresAddTranslations.cmake | 26 +++++++++++++++++++ src/calamares/CMakeLists.txt | 4 +-- src/modules/CMakeLists.txt | 3 +++ 3 files changed, 30 insertions(+), 3 deletions(-) rename lang/translations.cmake => CMakeModules/CalamaresAddTranslations.cmake (64%) diff --git a/lang/translations.cmake b/CMakeModules/CalamaresAddTranslations.cmake similarity index 64% rename from lang/translations.cmake rename to CMakeModules/CalamaresAddTranslations.cmake index fc18f4f11..97d4fadf1 100644 --- a/lang/translations.cmake +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -1,3 +1,6 @@ +# 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} ) @@ -40,3 +43,26 @@ macro(add_calamares_translations language) ) 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_.po +macro(add_calamares_python_translations language) + set( CALAMARES_LANGUAGES "" ) + list( APPEND CALAMARES_LANGUAGES ${ARGV} ) + + set( TS_FILES "" ) # Actually po / mo files + foreach( lang ${CALAMARES_LANGUAGES} ) + if( lang STREQUAL "en" ) + message( STATUS "Skipping Python translations for en_US" ) + else() + list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/python_${lang}.po;${CMAKE_SOURCE_DIR}/lang/python_${lang}.mo" ) + endif() + endforeach() + + install( + FILES ${TS_FILES} + DESTINATION ${CMAKE_INSTALL_DATADIR}/calamares/lang/ + ) +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/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} ) From 9f5ff55ba241034adf124ce47492b36989bab8fd Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 9 Aug 2017 06:22:14 -0400 Subject: [PATCH 02/32] Python-i18n: tx pull and push improvements - python jobmodule translations - only keep top-level desktop file --- .tx/config | 6 ++++++ calamares.desktop | 8 ++++++++ ci/txpull.sh | 8 +++++++- ci/txpush.sh | 17 ++++++++++++++++- lang/desktop_ar.desktop | 16 ---------------- lang/desktop_ast.desktop | 20 -------------------- lang/desktop_bg.desktop | 16 ---------------- lang/desktop_ca.desktop | 16 ---------------- lang/desktop_cs_CZ.desktop | 16 ---------------- lang/desktop_da.desktop | 20 -------------------- lang/desktop_de.desktop | 20 -------------------- lang/desktop_el.desktop | 16 ---------------- lang/desktop_en_GB.desktop | 20 -------------------- lang/desktop_es.desktop | 16 ---------------- lang/desktop_es_ES.desktop | 16 ---------------- lang/desktop_es_MX.desktop | 16 ---------------- lang/desktop_es_PR.desktop | 16 ---------------- lang/desktop_et.desktop | 16 ---------------- lang/desktop_eu.desktop | 16 ---------------- lang/desktop_fa.desktop | 16 ---------------- lang/desktop_fi_FI.desktop | 16 ---------------- lang/desktop_fr.desktop | 16 ---------------- lang/desktop_fr_CH.desktop | 16 ---------------- lang/desktop_gl.desktop | 16 ---------------- lang/desktop_gu.desktop | 16 ---------------- lang/desktop_he.desktop | 16 ---------------- lang/desktop_hi.desktop | 16 ---------------- lang/desktop_hr.desktop | 20 -------------------- lang/desktop_hu.desktop | 16 ---------------- lang/desktop_id.desktop | 16 ---------------- lang/desktop_is.desktop | 16 ---------------- lang/desktop_it_IT.desktop | 16 ---------------- lang/desktop_ja.desktop | 16 ---------------- lang/desktop_kk.desktop | 16 ---------------- lang/desktop_lo.desktop | 16 ---------------- lang/desktop_lt.desktop | 20 -------------------- lang/desktop_mr.desktop | 16 ---------------- lang/desktop_nb.desktop | 16 ---------------- lang/desktop_nl.desktop | 20 -------------------- lang/desktop_pl.desktop | 20 -------------------- lang/desktop_pl_PL.desktop | 16 ---------------- lang/desktop_pt_BR.desktop | 16 ---------------- lang/desktop_pt_PT.desktop | 20 -------------------- lang/desktop_ro.desktop | 16 ---------------- lang/desktop_ru.desktop | 20 -------------------- lang/desktop_sk.desktop | 16 ---------------- lang/desktop_sl.desktop | 16 ---------------- lang/desktop_sr.desktop | 16 ---------------- lang/desktop_sr@latin.desktop | 16 ---------------- lang/desktop_sv.desktop | 20 -------------------- lang/desktop_th.desktop | 16 ---------------- lang/desktop_tr_TR.desktop | 16 ---------------- lang/desktop_uk.desktop | 16 ---------------- lang/desktop_ur.desktop | 16 ---------------- lang/desktop_uz.desktop | 16 ---------------- lang/desktop_zh_CN.desktop | 16 ---------------- lang/desktop_zh_TW.desktop | 16 ---------------- lang/python.pot | 33 +++++++++++++++++++++++++++++++++ 58 files changed, 70 insertions(+), 894 deletions(-) delete mode 100644 lang/desktop_ar.desktop delete mode 100644 lang/desktop_ast.desktop delete mode 100644 lang/desktop_bg.desktop delete mode 100644 lang/desktop_ca.desktop delete mode 100644 lang/desktop_cs_CZ.desktop delete mode 100644 lang/desktop_da.desktop delete mode 100644 lang/desktop_de.desktop delete mode 100644 lang/desktop_el.desktop delete mode 100644 lang/desktop_en_GB.desktop delete mode 100644 lang/desktop_es.desktop delete mode 100644 lang/desktop_es_ES.desktop delete mode 100644 lang/desktop_es_MX.desktop delete mode 100644 lang/desktop_es_PR.desktop delete mode 100644 lang/desktop_et.desktop delete mode 100644 lang/desktop_eu.desktop delete mode 100644 lang/desktop_fa.desktop delete mode 100644 lang/desktop_fi_FI.desktop delete mode 100644 lang/desktop_fr.desktop delete mode 100644 lang/desktop_fr_CH.desktop delete mode 100644 lang/desktop_gl.desktop delete mode 100644 lang/desktop_gu.desktop delete mode 100644 lang/desktop_he.desktop delete mode 100644 lang/desktop_hi.desktop delete mode 100644 lang/desktop_hr.desktop delete mode 100644 lang/desktop_hu.desktop delete mode 100644 lang/desktop_id.desktop delete mode 100644 lang/desktop_is.desktop delete mode 100644 lang/desktop_it_IT.desktop delete mode 100644 lang/desktop_ja.desktop delete mode 100644 lang/desktop_kk.desktop delete mode 100644 lang/desktop_lo.desktop delete mode 100644 lang/desktop_lt.desktop delete mode 100644 lang/desktop_mr.desktop delete mode 100644 lang/desktop_nb.desktop delete mode 100644 lang/desktop_nl.desktop delete mode 100644 lang/desktop_pl.desktop delete mode 100644 lang/desktop_pl_PL.desktop delete mode 100644 lang/desktop_pt_BR.desktop delete mode 100644 lang/desktop_pt_PT.desktop delete mode 100644 lang/desktop_ro.desktop delete mode 100644 lang/desktop_ru.desktop delete mode 100644 lang/desktop_sk.desktop delete mode 100644 lang/desktop_sl.desktop delete mode 100644 lang/desktop_sr.desktop delete mode 100644 lang/desktop_sr@latin.desktop delete mode 100644 lang/desktop_sv.desktop delete mode 100644 lang/desktop_th.desktop delete mode 100644 lang/desktop_tr_TR.desktop delete mode 100644 lang/desktop_uk.desktop delete mode 100644 lang/desktop_ur.desktop delete mode 100644 lang/desktop_uz.desktop delete mode 100644 lang/desktop_zh_CN.desktop delete mode 100644 lang/desktop_zh_TW.desktop create mode 100644 lang/python.pot 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/calamares.desktop b/calamares.desktop index c2e1c5f7f..ff765b398 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -46,6 +46,10 @@ Name[en_GB]=Calamares Icon[en_GB]=calamares GenericName[en_GB]=System Installer Comment[en_GB]=Calamares — System Installer +Name[es]=Calamares +Icon[es]=calamares +GenericName[es]=Instalador del Sistema +Comment[es]=Calamares — Instalador del Sistema Name[pl]=Calamares Icon[pl]=calamares GenericName[pl]=Instalator systemu @@ -54,6 +58,10 @@ Name[pt_PT]=Calamares Icon[pt_PT]=calamares GenericName[pt_PT]=Instalador de Sistema Comment[pt_PT]=Calamares - Instalador de Sistema +Name[zh_TW]=Calamares +Icon[zh_TW]=calamares +GenericName[zh_TW]=系統安裝程式 +Comment[zh_TW]=Calamares ── 系統安裝程式 Name[nl]=Calamares Icon[nl]=calamares GenericName[nl]=Installatieprogramma diff --git a/ci/txpull.sh b/ci/txpull.sh index 5c9ae8773..6c5b20b2b 100755 --- a/ci/txpull.sh +++ b/ci/txpull.sh @@ -43,7 +43,7 @@ BOILERPLATE="Automatic merge of Transifex translations" git add --verbose lang/calamares*.ts git commit "$AUTHOR" --message="[core] $BOILERPLATE" | true -git add --verbose lang/desktop*.desktop calamares.desktop +git add --verbose calamares.desktop git commit "$AUTHOR" --message="[desktop] $BOILERPLATE" | true # Transifex updates the PO-Created timestamp also when nothing interesting @@ -68,4 +68,10 @@ for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do fi done +for POFILE in $(find lang -name "python.po") ; do + msgfmt -o ${POFILE%.po}.mo $POFILE +done +git add --verbose lang/python* +git commit "$AUTHOR" --message="[python] $BOILERPLATE" | true + # git push --set-upstream origin master diff --git a/ci/txpush.sh b/ci/txpush.sh index 186ede9b6..5ec2c0614 100755 --- a/ci/txpush.sh +++ b/ci/txpush.sh @@ -21,6 +21,12 @@ test -f "CMakeLists.txt" || { echo "! Not at Calamares top-level" ; exit 1 ; } test -f ".tx/config" || { echo "! Not at Calamares top-level" ; exit 1 ; } test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ; } +if test "x$1" = "x--no-tx" ; then + tx() { + echo "Skipped tx $*" + } +fi + ### CREATE TRANSLATIONS # # Use local tools (depending on type of source) to create translation @@ -30,7 +36,7 @@ export QT_SELECT=5 lupdate src/ -ts -no-obsolete lang/calamares_en.ts tx push --source --no-interactive -r calamares.calamares-master -tx push --no-interactive -r calamares.fdo +tx push --source --no-interactive -r calamares.fdo ### PYTHON MODULES # @@ -47,6 +53,7 @@ tx push --no-interactive -r calamares.fdo # Ubuntu PYGETTEXT=pygettext3 +SHARED_PYTHON="" for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do FILES=$(find "$MODULE_DIR" -name "*.py" -a -type f) if test -n "$FILES" ; then @@ -57,6 +64,14 @@ for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do tx set -r calamares.${MODULE_NAME} --source -l en ${MODULE_DIR}/lang/${MODULE_NAME}.pot tx push --source --no-interactive -r calamares.${MODULE_NAME} fi + else + SHARED_PYTHON="$SHARED_PYTHON $FILES" fi fi done + +if test -n "$SHARED_PYTHON" ; then + ${PYGETTEXT} -p lang -d python $SHARED_PYTHON + tx set -r calamares.python --source -l en lang/python.pot + tx push --source --no-interactive -r calamares.python +fi diff --git a/lang/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..a883baf9a --- /dev/null +++ b/lang/python.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" + + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" + From b922d88b0f373c53598f0459586397fe306138f8 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 10 Aug 2017 10:43:49 -0400 Subject: [PATCH 03/32] Python-i18n: add a gettext_path for python job modules --- CMakeModules/CalamaresAddTranslations.cmake | 5 ++- src/libcalamares/GlobalStorage.cpp | 26 ++++++++++++++ src/libcalamares/GlobalStorage.h | 5 +++ src/libcalamares/PythonJob.cpp | 39 ++++++++++++++++----- src/libcalamares/PythonJobApi.cpp | 12 ++++++- src/libcalamares/PythonJobApi.h | 6 ++-- 6 files changed, 80 insertions(+), 13 deletions(-) diff --git a/CMakeModules/CalamaresAddTranslations.cmake b/CMakeModules/CalamaresAddTranslations.cmake index 97d4fadf1..cddab6b5e 100644 --- a/CMakeModules/CalamaresAddTranslations.cmake +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -57,10 +57,13 @@ macro(add_calamares_python_translations language) if( lang STREQUAL "en" ) message( STATUS "Skipping Python translations for en_US" ) else() - list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/python_${lang}.po;${CMAKE_SOURCE_DIR}/lang/python_${lang}.mo" ) + list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/python/${lang}/LC_MESSAGES/python.po;${CMAKE_SOURCE_DIR}/lang/python/${lang}/LC_MESSAGES/python.mo" ) endif() endforeach() + file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/_lang ) + file( COPY ${CMAKE_SOURCE_DIR}/lang/python DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/_lang ) + install( FILES ${TS_FILES} DESTINATION ${CMAKE_INSTALL_DATADIR}/calamares/lang/ diff --git a/src/libcalamares/GlobalStorage.cpp b/src/libcalamares/GlobalStorage.cpp index c872482be..32ae02191 100644 --- a/src/libcalamares/GlobalStorage.cpp +++ b/src/libcalamares/GlobalStorage.cpp @@ -125,6 +125,32 @@ GlobalStoragePythonWrapper::insert( const std::string& key, CalamaresPython::variantFromPyObject( value ) ); } +bp::list +GlobalStoragePythonWrapper::gettext_languages() const +{ + bp::list pyList; + QVariant localeConf_ = m_gs->value( "localeConf" ); + if ( localeConf_.canConvert< QVariantMap >() ) + { + QVariant lang_ = localeConf_.value< QVariantMap >()[ "LANG" ]; + if ( lang_.canConvert< QString >() ) + { + QString lang = lang_.value< QString >(); + pyList.append( lang.toStdString() ); + if ( lang.indexOf( '.' ) > 0) + { + lang.truncate( lang.indexOf( '.' ) ); + pyList.append( lang.toStdString() ); + } + if ( lang.indexOf( '_' ) > 0) + { + lang.truncate( lang.indexOf( '_' ) ); + pyList.append( lang.toStdString() ); + } + } + } + return pyList; +} bp::list GlobalStoragePythonWrapper::keys() const diff --git a/src/libcalamares/GlobalStorage.h b/src/libcalamares/GlobalStorage.h index 012a516a1..92def182e 100644 --- a/src/libcalamares/GlobalStorage.h +++ b/src/libcalamares/GlobalStorage.h @@ -86,6 +86,11 @@ public: boost::python::list keys() const; int remove( const std::string& key ); boost::python::api::object value( const std::string& key ) const; + + // Special case to simplify Python code, gets localeConf["LANG"] + // from the global store, in list form with language variants + // expanded (e.g [ "en_GB.UTF-8", "en_GB", "en" ] ). + boost::python::list gettext_languages() const; private: Calamares::GlobalStorage* m_gs; }; diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index 1955b64fc..f6ae92384 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -70,6 +70,7 @@ BOOST_PYTHON_MODULE( libcalamares ) .def_readonly( "module_name", &CalamaresPython::PythonJobInterface::moduleName ) .def_readonly( "pretty_name", &CalamaresPython::PythonJobInterface::prettyName ) .def_readonly( "working_path", &CalamaresPython::PythonJobInterface::workingPath ) + .def_readonly( "gettext_path", &CalamaresPython::PythonJobInterface::gettextPath ) .def_readonly( "configuration", &CalamaresPython::PythonJobInterface::configuration ) .def( "setprogress", @@ -85,7 +86,8 @@ BOOST_PYTHON_MODULE( libcalamares ) .def( "insert", &CalamaresPython::GlobalStoragePythonWrapper::insert ) .def( "keys", &CalamaresPython::GlobalStoragePythonWrapper::keys ) .def( "remove", &CalamaresPython::GlobalStoragePythonWrapper::remove ) - .def( "value", &CalamaresPython::GlobalStoragePythonWrapper::value ); + .def( "value", &CalamaresPython::GlobalStoragePythonWrapper::value ) + .def( "gettext_languages", &CalamaresPython::GlobalStoragePythonWrapper::gettext_languages ); // libcalamares.utils submodule starts here bp::object utilsModule( bp::handle<>( bp::borrowed( PyImport_AddModule( "libcalamares.utils" ) ) ) ); @@ -297,16 +299,35 @@ 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() ) + 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() << "-pretty_name->" << 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() << "->" << m_description; + emit progress( 0 ); + } } bp::object runResult = entryPoint(); diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 9e2161c92..10b66b39f 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 @@ -177,10 +178,19 @@ 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 ); + + if (moduleDir.cd("../_lang/python")) + gettextPath = moduleDir.absolutePath().toStdString(); + else + { + debug( "No _lang/ directory for translations." ); + gettextPath = std::string(); + } } diff --git a/src/libcalamares/PythonJobApi.h b/src/libcalamares/PythonJobApi.h index 185b46569..a3443ad76 100644 --- a/src/libcalamares/PythonJobApi.h +++ b/src/libcalamares/PythonJobApi.h @@ -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 @@ -60,10 +61,10 @@ 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 ); - void debug( const std::string& s ); +inline int _handle_check_target_env_call_error( int ec, const QString& cmd ); + class PythonJobInterface { public: @@ -72,6 +73,7 @@ public: std::string moduleName; std::string prettyName; std::string workingPath; + std::string gettextPath; boost::python::dict configuration; From 33bc669591f1c3f7ca25cb33e66d9ffeeb8b064d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 9 Aug 2017 18:08:35 +0900 Subject: [PATCH 04/32] Python-i18n: trivial example adding _ to python jobs - add to dummypython - also add to machineid --- src/modules/dummypython/main.py | 28 ++++++++++++++++++++++++++-- src/modules/machineid/main.py | 10 +++++++++- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index 7cca65109..19afa8302 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,6 +33,14 @@ import libcalamares import os from time import gmtime, strftime, sleep +import gettext +_ = gettext.translation("python", + libcalamares.job.gettext_path, + libcalamares.globalstorage.gettext_languages(), + fallback=True).gettext + +def pretty_name(): + return _("Dummy python job.") def run(): """Dummy python job.""" @@ -65,11 +74,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: + l = list(libcalamares.job.configuration["a_list"]) + except KeyError: + l = ["no list"] + + c = 1 + for k in l: + libcalamares.utils.debug(_("Dummy python step {}").format(str(k))) + sleep(1) + libcalamares.job.setprogress( c * 1.0 / len(l) ) + c += 1 + sleep(3) + # To indicate an error, return a tuple of: # (message, detailed-error-message) return None diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index 7d0ac2c54..cd4f06504 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -22,8 +22,16 @@ 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("python", + libcalamares.job.gettext_path, + libcalamares.globalstorage.gettext_languages(), + fallback=True).gettext + +def pretty_name(): + return _("Generate machine-id.") def run(): """ From cc369c013cd889437c697018d14a05af9c353efa Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Thu, 10 Aug 2017 10:49:18 -0400 Subject: [PATCH 05/32] [core] Automatic merge of Transifex translations --- lang/calamares_ar.ts | 8 ++++---- lang/calamares_ast.ts | 8 ++++---- lang/calamares_bg.ts | 8 ++++---- lang/calamares_ca.ts | 8 ++++---- lang/calamares_cs_CZ.ts | 8 ++++---- lang/calamares_da.ts | 8 ++++---- lang/calamares_de.ts | 8 ++++---- lang/calamares_el.ts | 8 ++++---- lang/calamares_en.ts | 8 ++++---- lang/calamares_en_GB.ts | 8 ++++---- lang/calamares_es.ts | 8 ++++---- lang/calamares_es_ES.ts | 8 ++++---- lang/calamares_es_MX.ts | 8 ++++---- lang/calamares_es_PR.ts | 8 ++++---- lang/calamares_et.ts | 8 ++++---- lang/calamares_eu.ts | 8 ++++---- lang/calamares_fa.ts | 8 ++++---- lang/calamares_fi_FI.ts | 8 ++++---- lang/calamares_fr.ts | 8 ++++---- lang/calamares_fr_CH.ts | 8 ++++---- lang/calamares_gl.ts | 8 ++++---- lang/calamares_gu.ts | 8 ++++---- lang/calamares_he.ts | 8 ++++---- lang/calamares_hi.ts | 8 ++++---- lang/calamares_hr.ts | 8 ++++---- lang/calamares_hu.ts | 8 ++++---- lang/calamares_id.ts | 30 +++++++++++++++--------------- lang/calamares_is.ts | 8 ++++---- lang/calamares_it_IT.ts | 8 ++++---- lang/calamares_ja.ts | 14 +++++++------- lang/calamares_kk.ts | 8 ++++---- lang/calamares_lo.ts | 8 ++++---- lang/calamares_lt.ts | 8 ++++---- lang/calamares_mr.ts | 8 ++++---- lang/calamares_nb.ts | 8 ++++---- lang/calamares_nl.ts | 12 ++++++------ lang/calamares_pl.ts | 8 ++++---- lang/calamares_pl_PL.ts | 8 ++++---- lang/calamares_pt_BR.ts | 8 ++++---- lang/calamares_pt_PT.ts | 8 ++++---- lang/calamares_ro.ts | 8 ++++---- lang/calamares_ru.ts | 8 ++++---- lang/calamares_sk.ts | 8 ++++---- lang/calamares_sl.ts | 8 ++++---- lang/calamares_sr.ts | 8 ++++---- lang/calamares_sr@latin.ts | 8 ++++---- lang/calamares_sv.ts | 8 ++++---- lang/calamares_th.ts | 8 ++++---- lang/calamares_tr_TR.ts | 8 ++++---- lang/calamares_uk.ts | 8 ++++---- lang/calamares_ur.ts | 8 ++++---- lang/calamares_uz.ts | 8 ++++---- lang/calamares_zh_CN.ts | 8 ++++---- lang/calamares_zh_TW.ts | 28 ++++++++++++++-------------- 54 files changed, 242 insertions(+), 242 deletions(-) diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts index 8de6e0e04..ca701e2b0 100644 --- a/lang/calamares_ar.ts +++ b/lang/calamares_ar.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &غيّر... - + Set timezone to %1/%2.<br/> اضبط المنطقة الزّمنيّة إلى %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts index a454992bd..edfe7fc7a 100644 --- a/lang/calamares_ast.ts +++ b/lang/calamares_ast.ts @@ -1231,12 +1231,12 @@ L'instalador colará y perderánse toles camudancies. LocalePage - + The system language will be set to %1. Afitaráse la llingua'l sistema a %1. - + The numbers and dates locale will be set to %1. Los númberos y dates afitaránse a %1. @@ -1257,12 +1257,12 @@ L'instalador colará y perderánse toles camudancies. &Cambiar... - + Set timezone to %1/%2.<br/> Afitóse'l fusu horariu a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts index 482981aa5..04dfbebee 100644 --- a/lang/calamares_bg.ts +++ b/lang/calamares_bg.ts @@ -1232,12 +1232,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1258,12 +1258,12 @@ The installer will quit and all changes will be lost. &Промени... - + Set timezone to %1/%2.<br/> Постави часовата зона на %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts index 5d94701ee..f53be4aa2 100644 --- a/lang/calamares_ca.ts +++ b/lang/calamares_ca.ts @@ -1231,12 +1231,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. LocalePage - + The system language will be set to %1. La llengua del sistema s'establirà a %1. - + The numbers and dates locale will be set to %1. Els números i les dates de la configuració local s'establiran a %1. @@ -1257,12 +1257,12 @@ L'instal·lador es tancarà i tots els canvis es perdran. &Canvi... - + Set timezone to %1/%2.<br/> Estableix la zona horària a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts index c16c96740..52fd95815 100644 --- a/lang/calamares_cs_CZ.ts +++ b/lang/calamares_cs_CZ.ts @@ -1231,12 +1231,12 @@ Instalační program bude ukončen a všechny změny ztraceny. LocalePage - + The system language will be set to %1. Jazyk systému bude nastaven na 1%. - + The numbers and dates locale will be set to %1. Čísla a data národního prostředí budou nastavena na %1. @@ -1257,12 +1257,12 @@ Instalační program bude ukončen a všechny změny ztraceny. &Změnit... - + Set timezone to %1/%2.<br/> Nastavit časové pásmo na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts index 08411f70d..cce229540 100644 --- a/lang/calamares_da.ts +++ b/lang/calamares_da.ts @@ -1231,12 +1231,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt. LocalePage - + The system language will be set to %1. Systemsproget vil blive sat til %1. - + The numbers and dates locale will be set to %1. Lokalitet for tal og datoer vil blive sat til %1. @@ -1257,12 +1257,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.&Skift... - + Set timezone to %1/%2.<br/> Sæt tidszone til %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 24f78addb..783dbf454 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -1231,12 +1231,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. LocalePage - + The system language will be set to %1. Die Systemsprache wird auf %1 gestellt. - + The numbers and dates locale will be set to %1. Das Format für Zahlen und Datum wird auf %1 gesetzt. @@ -1257,12 +1257,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Ändern... - + Set timezone to %1/%2.<br/> Setze Zeitzone auf %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts index e813d90da..1fe563f5b 100644 --- a/lang/calamares_el.ts +++ b/lang/calamares_el.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. Η τοπική γλώσσα του συστήματος έχει οριστεί σε %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Αλλαγή... - + Set timezone to %1/%2.<br/> Ορισμός της ζώνης ώρας σε %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts index c42b32856..b86a2fd55 100644 --- a/lang/calamares_en.ts +++ b/lang/calamares_en.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. The system language will be set to %1. - + The numbers and dates locale will be set to %1. The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Change... - + Set timezone to %1/%2.<br/> Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts index 2f58c6872..d7477a149 100644 --- a/lang/calamares_en_GB.ts +++ b/lang/calamares_en_GB.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Change... - + Set timezone to %1/%2.<br/> Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts index 2fa296be0..3197cad6c 100644 --- a/lang/calamares_es.ts +++ b/lang/calamares_es.ts @@ -1232,12 +1232,12 @@ Saldrá del instalador y se perderán todos los cambios. LocalePage - + The system language will be set to %1. El idioma del sistema se establecerá a %1. - + The numbers and dates locale will be set to %1. La localización de números y fechas se establecerá a %1. @@ -1258,12 +1258,12 @@ Saldrá del instalador y se perderán todos los cambios. &Cambiar... - + Set timezone to %1/%2.<br/> Configurar zona horaria a %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_es_ES.ts b/lang/calamares_es_ES.ts index a3a796c36..0a186e7ad 100644 --- a/lang/calamares_es_ES.ts +++ b/lang/calamares_es_ES.ts @@ -1231,12 +1231,12 @@ El instalador se cerrará y se perderán todos los cambios. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ El instalador se cerrará y se perderán todos los cambios. &Cambiar - + Set timezone to %1/%2.<br/> Establecer la zona horaria a %1%2. <br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts index 14f6f7a5c..423da41d6 100644 --- a/lang/calamares_es_MX.ts +++ b/lang/calamares_es_MX.ts @@ -1233,12 +1233,12 @@ El instalador terminará y se perderán todos los cambios. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1259,12 +1259,12 @@ El instalador terminará y se perderán todos los cambios. &Cambiar... - + Set timezone to %1/%2.<br/> Definir la zona horaria como %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts index c8e9f1715..d45dd0fe7 100644 --- a/lang/calamares_es_PR.ts +++ b/lang/calamares_es_PR.ts @@ -1230,12 +1230,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1256,12 +1256,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts index b5244d131..0e0205f98 100644 --- a/lang/calamares_et.ts +++ b/lang/calamares_et.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts index 8e4276dd5..21fbb3fb9 100644 --- a/lang/calamares_eu.ts +++ b/lang/calamares_eu.ts @@ -1228,12 +1228,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1254,12 +1254,12 @@ The installer will quit and all changes will be lost. &Aldatu... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts index 043f13c11..6c4491030 100644 --- a/lang/calamares_fa.ts +++ b/lang/calamares_fa.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts index f94828905..2e85684bf 100644 --- a/lang/calamares_fi_FI.ts +++ b/lang/calamares_fi_FI.ts @@ -1231,12 +1231,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. &Vaihda... - + Set timezone to %1/%2.<br/> Aseta aikavyöhyke %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts index 3292e5afe..1a3d85d09 100644 --- a/lang/calamares_fr.ts +++ b/lang/calamares_fr.ts @@ -1231,12 +1231,12 @@ L'installateur se fermera et les changements seront perdus. LocalePage - + The system language will be set to %1. La langue du système sera réglée sur %1. - + The numbers and dates locale will be set to %1. Les nombres et les dates seront réglés sur %1. @@ -1257,12 +1257,12 @@ L'installateur se fermera et les changements seront perdus. &Modifier... - + Set timezone to %1/%2.<br/> Configurer le fuseau horaire à %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts index 94de21f8a..7a0b7a688 100644 --- a/lang/calamares_fr_CH.ts +++ b/lang/calamares_fr_CH.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts index 98e1e6dcf..721764b56 100644 --- a/lang/calamares_gl.ts +++ b/lang/calamares_gl.ts @@ -1232,12 +1232,12 @@ O instalador pecharase e perderanse todos os cambios. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1258,12 +1258,12 @@ O instalador pecharase e perderanse todos os cambios. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts index b3ddb8367..5bcb29bfd 100644 --- a/lang/calamares_gu.ts +++ b/lang/calamares_gu.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts index b542db48e..7727fd4e5 100644 --- a/lang/calamares_he.ts +++ b/lang/calamares_he.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. שפת המערכת תוגדר להיות %1. - + The numbers and dates locale will be set to %1. תבנית של המספרים והתאריכים של המיקום יוגדרו להיות %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &החלף... - + Set timezone to %1/%2.<br/> הגדרת אזור זמן ל %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts index 92246c548..a9f4acd4b 100644 --- a/lang/calamares_hi.ts +++ b/lang/calamares_hi.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts index bba908f49..b13a3ff46 100644 --- a/lang/calamares_hr.ts +++ b/lang/calamares_hr.ts @@ -1231,12 +1231,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene. LocalePage - + The system language will be set to %1. Jezik sustava će se postaviti na %1. - + The numbers and dates locale will be set to %1. Jezična shema brojeva i datuma će se postaviti na %1. @@ -1257,12 +1257,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.&Promijeni... - + Set timezone to %1/%2.<br/> Postavi vremesku zonu na %1%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts index c8b56d845..358556554 100644 --- a/lang/calamares_hu.ts +++ b/lang/calamares_hu.ts @@ -1232,12 +1232,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l LocalePage - + The system language will be set to %1. A rendszer területi beállítása %1. - + The numbers and dates locale will be set to %1. A számok és dátumok területi beállítása %1. @@ -1258,12 +1258,12 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l &Változtat... - + Set timezone to %1/%2.<br/> Időzóna beállítása %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index 85a07975a..a400bfe4a 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -240,7 +240,7 @@ Keluaran: Cancel installation without changing the system. - + Batal pemasangan tanpa mengubah sistem yang ada. @@ -257,17 +257,17 @@ Pemasangan akan ditutup dan semua perubahan akan hilang. &Yes - + &Ya &No - + &Tidak &Close - + &Tutup @@ -292,12 +292,12 @@ Pemasangan akan ditutup dan semua perubahan akan hilang. &Done - + &Kelar The installation is complete. Close the installer. - + Pemasangan sudah lengkap. Tutup pemasang. @@ -555,7 +555,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. MiB - + MiB @@ -930,7 +930,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. MiB - + MiB @@ -1034,7 +1034,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Pemasangan Gagal</h1><br/>%1 tidak bisa dipasang pada komputermu.<br/>Pesan galatnya adalah: %2. @@ -1233,12 +1233,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. LocalePage - + The system language will be set to %1. Bahasa sistem akan disetel ke %1. - + The numbers and dates locale will be set to %1. Nomor dan tanggal lokal akan disetel ke %1. @@ -1259,12 +1259,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.&Ubah... - + Set timezone to %1/%2.<br/> Setel zona waktu ke %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -1839,7 +1839,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. The screen is too small to display the installer. - + Layar terlalu kecil untuk menampilkan pemasang. @@ -2252,7 +2252,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Selamat datang di Calamares pemasang untuk %1.</h1> diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts index 868913959..178168690 100644 --- a/lang/calamares_is.ts +++ b/lang/calamares_is.ts @@ -1231,12 +1231,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. LocalePage - + The system language will be set to %1. Tungumál kerfisins verður sett sem %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. &Breyta... - + Set timezone to %1/%2.<br/> Setja tímabelti sem %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts index 223e60035..f8196bdc0 100644 --- a/lang/calamares_it_IT.ts +++ b/lang/calamares_it_IT.ts @@ -1231,12 +1231,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno LocalePage - + The system language will be set to %1. La lingua di sistema sarà impostata a %1. - + The numbers and dates locale will be set to %1. I numeri e le date locali saranno impostati a %1. @@ -1257,12 +1257,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno &Cambia... - + Set timezone to %1/%2.<br/> Imposta il fuso orario a %1%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts index e2c6bb2b2..4acd523f1 100644 --- a/lang/calamares_ja.ts +++ b/lang/calamares_ja.ts @@ -1032,7 +1032,7 @@ The installer will quit and all changes will be lost. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>インストールに失敗しました</h1><br/>%1 はコンピュータにインストールされませんでした。<br/>エラーメッセージ: %2. @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. システムの言語が %1 に設定されます。 - + The numbers and dates locale will be set to %1. 数字と日付のロケールが %1 に設定されます。 @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. 変更(&C)... - + Set timezone to %1/%2.<br/> タイムゾーンを %1/%2 に設定。<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -1837,7 +1837,7 @@ The installer will quit and all changes will be lost. The screen is too small to display the installer. - + インストーラーを表示するためには、画面が小さすぎます。 @@ -2260,7 +2260,7 @@ The installer will quit and all changes will be lost. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts index 553e8ffd2..c4830b307 100644 --- a/lang/calamares_kk.ts +++ b/lang/calamares_kk.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts index a315bfb1d..63eca236a 100644 --- a/lang/calamares_lo.ts +++ b/lang/calamares_lo.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts index 2a37272d7..3a1173515 100644 --- a/lang/calamares_lt.ts +++ b/lang/calamares_lt.ts @@ -1231,12 +1231,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. LocalePage - + The system language will be set to %1. Sistemos kalba bus nustatyta į %1. - + The numbers and dates locale will be set to %1. Skaičių ir datų lokalė bus nustatyta į %1. @@ -1257,12 +1257,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti. K&eisti... - + Set timezone to %1/%2.<br/> Nustatyti laiko juostą kaip %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts index bd286376f..36517f34f 100644 --- a/lang/calamares_mr.ts +++ b/lang/calamares_mr.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts index cf00efed5..308040dc9 100644 --- a/lang/calamares_nb.ts +++ b/lang/calamares_nb.ts @@ -1231,12 +1231,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts index b2146dead..48b609cf9 100644 --- a/lang/calamares_nl.ts +++ b/lang/calamares_nl.ts @@ -1032,7 +1032,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Installatie Mislukt</h1><br/>%1 werd niet op de computer geïnstalleerd. <br/>De foutboodschap was: %2 @@ -1231,12 +1231,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. LocalePage - + The system language will be set to %1. De taal van het systeem zal worden ingesteld op %1. - + The numbers and dates locale will be set to %1. De getal- en datumnotatie worden ingesteld op %1. @@ -1257,12 +1257,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. &Aanpassen - + Set timezone to %1/%2.<br/> Instellen tijdzone naar %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -2260,7 +2260,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>voor %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Met dank aan: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg en het <a href="https://www.transifex.com/calamares/calamares/">Calamares vertaalteam</a>.<br/><br/>De ontwikkeling van <a href="http://calamares.io/">Calamares</a> wordt gesponsord door <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts index c97fdf5e6..d3628ca66 100644 --- a/lang/calamares_pl.ts +++ b/lang/calamares_pl.ts @@ -1231,12 +1231,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. LocalePage - + The system language will be set to %1. Język systemu zostanie ustawiony na %1. - + The numbers and dates locale will be set to %1. Format liczb i daty zostanie ustawiony na %1. @@ -1257,12 +1257,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.&Zmień... - + Set timezone to %1/%2.<br/> Ustaw strefę czasową na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pl_PL.ts b/lang/calamares_pl_PL.ts index 010d16dc3..79a039bf4 100644 --- a/lang/calamares_pl_PL.ts +++ b/lang/calamares_pl_PL.ts @@ -1231,12 +1231,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone. - + Set timezone to %1/%2.<br/> Strefa czasowa %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts index 7af01a10a..c363d38bc 100644 --- a/lang/calamares_pt_BR.ts +++ b/lang/calamares_pt_BR.ts @@ -1233,12 +1233,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados. LocalePage - + The system language will be set to %1. O idioma do sistema será definido como %1. - + The numbers and dates locale will be set to %1. O local dos números e datas será definido como %1. @@ -1259,12 +1259,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.&Mudar... - + Set timezone to %1/%2.<br/> Definir o fuso horário para %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts index 66c142a06..f6079afbc 100644 --- a/lang/calamares_pt_PT.ts +++ b/lang/calamares_pt_PT.ts @@ -1231,12 +1231,12 @@ O instalador será encerrado e todas as alterações serão perdidas. LocalePage - + The system language will be set to %1. A linguagem do sistema será definida para %1. - + The numbers and dates locale will be set to %1. Os números e datas locais serão definidos para %1. @@ -1257,12 +1257,12 @@ O instalador será encerrado e todas as alterações serão perdidas.&Alterar... - + Set timezone to %1/%2.<br/> Definir fuso horário para %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts index efbad5e3a..da78d6a79 100644 --- a/lang/calamares_ro.ts +++ b/lang/calamares_ro.ts @@ -1231,12 +1231,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute. LocalePage - + The system language will be set to %1. Limba sistemului va fi %1. - + The numbers and dates locale will be set to %1. Formatul numerelor și datelor calendaristice va fi %1. @@ -1257,12 +1257,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.S&chimbă - + Set timezone to %1/%2.<br/> Setează fusul orar la %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts index e45353dcd..e7e86be9b 100644 --- a/lang/calamares_ru.ts +++ b/lang/calamares_ru.ts @@ -1230,12 +1230,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. Системным языком будет установлен %1. - + The numbers and dates locale will be set to %1. Региональным форматом чисел и дат будет установлен %1. @@ -1256,12 +1256,12 @@ The installer will quit and all changes will be lost. И&зменить... - + Set timezone to %1/%2.<br/> Установить часовой пояс на %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts index 109e343c8..2fa344b56 100644 --- a/lang/calamares_sk.ts +++ b/lang/calamares_sk.ts @@ -1231,12 +1231,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. LocalePage - + The system language will be set to %1. Jazyk systému bude nastavený na %1. - + The numbers and dates locale will be set to %1. Miestne nastavenie čísel a dátumov bude nastavené na %1. @@ -1257,12 +1257,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Z&meniť... - + Set timezone to %1/%2.<br/> Nastavenie časovej zóny na %1/%2.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts index 19e101ca2..4077a39f0 100644 --- a/lang/calamares_sl.ts +++ b/lang/calamares_sl.ts @@ -1231,12 +1231,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Set timezone to %1/%2.<br/> Nastavi časovni pas na %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts index 9f0cc2348..a138b8714 100644 --- a/lang/calamares_sr.ts +++ b/lang/calamares_sr.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. Системски језик биће постављен на %1 - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &Измени... - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts index e8af514de..65b05e1f6 100644 --- a/lang/calamares_sr@latin.ts +++ b/lang/calamares_sr@latin.ts @@ -1231,12 +1231,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Set timezone to %1/%2.<br/> Postavi vremensku zonu na %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts index aafaeace6..b01ac9254 100644 --- a/lang/calamares_sv.ts +++ b/lang/calamares_sv.ts @@ -1231,12 +1231,12 @@ Alla ändringar kommer att gå förlorade. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ Alla ändringar kommer att gå förlorade. Ändra... - + Set timezone to %1/%2.<br/> Sätt tidszon till %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts index f0bb16bd3..895cf4464 100644 --- a/lang/calamares_th.ts +++ b/lang/calamares_th.ts @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. &C เปลี่ยนแปลง... - + Set timezone to %1/%2.<br/> ตั้งโซนเวลาเป็น %1/%2<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts index 9c20c21ce..4bb27457b 100644 --- a/lang/calamares_tr_TR.ts +++ b/lang/calamares_tr_TR.ts @@ -1234,12 +1234,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir. LocalePage - + The system language will be set to %1. Sistem dili %1 olarak ayarlanacak. - + The numbers and dates locale will be set to %1. Sayılar ve günler için sistem yereli %1 olarak ayarlanacak. @@ -1260,12 +1260,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.&Değiştir... - + Set timezone to %1/%2.<br/> Bölge ve zaman dilimi %1/%2 olarak ayarlandı.<br/> - + %1 (%2) Language (Country) %1 (%2) diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts index b877c5c97..78b9b4c7f 100644 --- a/lang/calamares_uk.ts +++ b/lang/calamares_uk.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts index bbaea6219..01b752e3c 100644 --- a/lang/calamares_ur.ts +++ b/lang/calamares_ur.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts index c984cb6b0..c7cc826bd 100644 --- a/lang/calamares_uz.ts +++ b/lang/calamares_uz.ts @@ -1224,12 +1224,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. - + The numbers and dates locale will be set to %1. @@ -1250,12 +1250,12 @@ The installer will quit and all changes will be lost. - + Set timezone to %1/%2.<br/> - + %1 (%2) Language (Country) diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts index d93d55cb4..f4138a786 100644 --- a/lang/calamares_zh_CN.ts +++ b/lang/calamares_zh_CN.ts @@ -1233,12 +1233,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. 系统语言将设置为 %1。 - + The numbers and dates locale will be set to %1. 数字和日期地域将设置为 %1。 @@ -1259,12 +1259,12 @@ The installer will quit and all changes will be lost. 更改 (&C) ... - + Set timezone to %1/%2.<br/> 设置时区为 %1/%2。<br/> - + %1 (%2) Language (Country) %1(%2) diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts index d1f22ee66..693553985 100644 --- a/lang/calamares_zh_TW.ts +++ b/lang/calamares_zh_TW.ts @@ -240,7 +240,7 @@ Output: Cancel installation without changing the system. - + 不變更系統並取消安裝。 @@ -257,17 +257,17 @@ The installer will quit and all changes will be lost. &Yes - + 是(&Y) &No - + 否(&N) &Close - + 關閉(&C) @@ -292,12 +292,12 @@ The installer will quit and all changes will be lost. &Done - + 完成(&D) The installation is complete. Close the installer. - + 安裝完成。關閉安裝程式。 @@ -553,7 +553,7 @@ The installer will quit and all changes will be lost. MiB - + MiB @@ -928,7 +928,7 @@ The installer will quit and all changes will be lost. MiB - + MiB @@ -1032,7 +1032,7 @@ The installer will quit and all changes will be lost. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>安裝失敗</h1><br/>%1 並未安裝到您的電腦上。<br/>錯誤訊息為:%2。 @@ -1231,12 +1231,12 @@ The installer will quit and all changes will be lost. LocalePage - + The system language will be set to %1. 系統語言將會設定為 %1。 - + The numbers and dates locale will be set to %1. 數字與日期語系將會被設定為 %1。 @@ -1257,12 +1257,12 @@ The installer will quit and all changes will be lost. 變更...(&C) - + Set timezone to %1/%2.<br/> 設定時區為 %1/%2 。<br/> - + %1 (%2) Language (Country) %1 (%2) @@ -2260,7 +2260,7 @@ The installer will quit and all changes will be lost. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>感謝:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="http://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。 From cf6d4744eaeb9890df9d1d1cfff9f87914236d7e Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Thu, 10 Aug 2017 10:49:18 -0400 Subject: [PATCH 06/32] [desktop] Automatic merge of Transifex translations --- calamares.desktop | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/calamares.desktop b/calamares.desktop index ff765b398..129f82dd1 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -22,22 +22,34 @@ Name[hr]=Calamares Icon[hr]=calamares GenericName[hr]=Instalacija sustava Comment[hr]=Calamares — Instalacija sustava +Name[de]=Calamares +Icon[de]=calamares +GenericName[de]=Installation des Betriebssystems +Comment[de]=Calamares - Installation des Betriebssystems Name[ru]=Calamares Icon[ru]=calamares GenericName[ru]=Установщик системы Comment[ru]=Calamares - Установщик системы -Name[sv]=Calamares -Icon[sv]=calamares -GenericName[sv]=Systeminstallerare -Comment[sv]=Calamares — Systeminstallerare +Name[ja]=Calamares +Icon[ja]=calamares +GenericName[ja]=システムインストーラー +Comment[ja]=Calamares — システムインストーラー +Name[sk]=Calamares +Icon[sk]=calamares +GenericName[sk]=Inštalátor systému +Comment[sk]=Calamares — Inštalátor systému +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 Comment[da]=Calamares — Systeminstallationsprogram -Name[de]=Calamares -Icon[de]=calamares -GenericName[de]=Installation des Betriebssystems -Comment[de]=Calamares - Installation des Betriebssystems +Name[sv]=Calamares +Icon[sv]=calamares +GenericName[sv]=Systeminstallerare +Comment[sv]=Calamares — Systeminstallerare Name[lt]=Calamares Icon[lt]=calamares GenericName[lt]=Sistemos diegimas į kompiuterį From 8052b6d6f6d11c62c5d13aee8b3949466321d114 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Thu, 10 Aug 2017 10:49:18 -0400 Subject: [PATCH 07/32] [dummypythonqt] Automatic merge of Transifex translations --- .../lang/ar/LC_MESSAGES/dummypythonqt.mo | Bin 520 -> 511 bytes .../lang/ar/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/ast/LC_MESSAGES/dummypythonqt.mo | Bin 441 -> 926 bytes .../lang/ast/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/bg/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 431 bytes .../lang/bg/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/ca/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 964 bytes .../lang/ca/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo | Bin 486 -> 950 bytes .../lang/cs_CZ/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/da/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 963 bytes .../lang/da/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/de/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 897 bytes .../lang/de/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../dummypythonqt/lang/dummypythonqt.pot | 8 ++++++-- .../lang/el/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 427 bytes .../lang/el/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/en_GB/LC_MESSAGES/dummypythonqt.mo | Bin 461 -> 452 bytes .../lang/en_GB/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/es/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 908 bytes .../lang/es/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/es_ES/LC_MESSAGES/dummypythonqt.mo | Bin 452 -> 443 bytes .../lang/es_ES/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/es_MX/LC_MESSAGES/dummypythonqt.mo | Bin 453 -> 444 bytes .../lang/es_MX/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/es_PR/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 449 bytes .../lang/es_PR/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/et/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 430 bytes .../lang/et/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/eu/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 428 bytes .../lang/eu/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/fa/LC_MESSAGES/dummypythonqt.mo | Bin 431 -> 422 bytes .../lang/fa/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/fi_FI/LC_MESSAGES/dummypythonqt.mo | Bin 454 -> 445 bytes .../lang/fi_FI/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/fr/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 427 bytes .../lang/fr/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/fr_CH/LC_MESSAGES/dummypythonqt.mo | Bin 456 -> 447 bytes .../lang/fr_CH/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/gl/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 430 bytes .../lang/gl/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/gu/LC_MESSAGES/dummypythonqt.mo | Bin 439 -> 430 bytes .../lang/gu/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/he/LC_MESSAGES/dummypythonqt.mo | Bin 437 -> 945 bytes .../lang/he/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/hi/LC_MESSAGES/dummypythonqt.mo | Bin 436 -> 427 bytes .../lang/hi/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/hr/LC_MESSAGES/dummypythonqt.mo | Bin 975 -> 1034 bytes .../lang/hr/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/hu/LC_MESSAGES/dummypythonqt.mo | Bin 440 -> 889 bytes .../lang/hu/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/id/LC_MESSAGES/dummypythonqt.mo | Bin 896 -> 887 bytes .../lang/id/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/is/LC_MESSAGES/dummypythonqt.mo | Bin 462 -> 918 bytes .../lang/is/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/it_IT/LC_MESSAGES/dummypythonqt.mo | Bin 901 -> 920 bytes .../lang/it_IT/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/ja/LC_MESSAGES/dummypythonqt.mo | Bin 432 -> 993 bytes .../lang/ja/LC_MESSAGES/dummypythonqt.po | 12 ++++++++---- .../lang/kk/LC_MESSAGES/dummypythonqt.mo | Bin 430 -> 421 bytes .../lang/kk/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/lo/LC_MESSAGES/dummypythonqt.mo | Bin 427 -> 418 bytes .../lang/lo/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/lt/LC_MESSAGES/dummypythonqt.mo | Bin 504 -> 1036 bytes .../lang/lt/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/mr/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 429 bytes .../lang/mr/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/nb/LC_MESSAGES/dummypythonqt.mo | Bin 448 -> 439 bytes .../lang/nb/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/nl/LC_MESSAGES/dummypythonqt.mo | Bin 908 -> 899 bytes .../lang/nl/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/pl/LC_MESSAGES/dummypythonqt.mo | Bin 495 -> 1022 bytes .../lang/pl/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/pl_PL/LC_MESSAGES/dummypythonqt.mo | Bin 598 -> 589 bytes .../lang/pl_PL/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/pt_BR/LC_MESSAGES/dummypythonqt.mo | Bin 455 -> 978 bytes .../lang/pt_BR/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/pt_PT/LC_MESSAGES/dummypythonqt.mo | Bin 458 -> 994 bytes .../lang/pt_PT/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/ro/LC_MESSAGES/dummypythonqt.mo | Bin 954 -> 945 bytes .../lang/ro/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/ru/LC_MESSAGES/dummypythonqt.mo | Bin 804 -> 925 bytes .../lang/ru/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/sk/LC_MESSAGES/dummypythonqt.mo | Bin 464 -> 943 bytes .../lang/sk/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/sl/LC_MESSAGES/dummypythonqt.mo | Bin 492 -> 483 bytes .../lang/sl/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/sr/LC_MESSAGES/dummypythonqt.mo | Bin 512 -> 1070 bytes .../lang/sr/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/sr@latin/LC_MESSAGES/dummypythonqt.mo | Bin 532 -> 523 bytes .../lang/sr@latin/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/sv/LC_MESSAGES/dummypythonqt.mo | Bin 438 -> 429 bytes .../lang/sv/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/th/LC_MESSAGES/dummypythonqt.mo | Bin 428 -> 419 bytes .../lang/th/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/tr_TR/LC_MESSAGES/dummypythonqt.mo | Bin 446 -> 932 bytes .../lang/tr_TR/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/uk/LC_MESSAGES/dummypythonqt.mo | Bin 514 -> 505 bytes .../lang/uk/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/ur/LC_MESSAGES/dummypythonqt.mo | Bin 435 -> 426 bytes .../lang/ur/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/uz/LC_MESSAGES/dummypythonqt.mo | Bin 429 -> 420 bytes .../lang/uz/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/zh_CN/LC_MESSAGES/dummypythonqt.mo | Bin 445 -> 897 bytes .../lang/zh_CN/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- .../lang/zh_TW/LC_MESSAGES/dummypythonqt.mo | Bin 446 -> 974 bytes .../lang/zh_TW/LC_MESSAGES/dummypythonqt.po | 8 ++++++-- 107 files changed, 326 insertions(+), 110 deletions(-) diff --git a/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/ar/LC_MESSAGES/dummypythonqt.mo index 5349b67376e990f88c085d6df23017b6c32c9b65..e99aa6d4af8eeebcf107ea2eba172870abf26c2a 100644 GIT binary patch delta 37 tcmeBR`OiE-h4JV_)j(bgT?0!612ZdQ6I}z7iOs87LPOkiCtEX~1pv~e3myOf delta 46 zcmey*+`%$Ih4I`()j(czT_Xbp10yRFOKk&#iOs8d9sPnm<0FjqOmqz`%_bW$o&^9t CJPktt 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 bb0413d21fade2099352ef2042469b665becf7ab..709ab125fdb1293c88766dafc808f2dac9fa9c85 100644 GIT binary patch delta 589 zcmaiwPcH*e6vbaDBGLs5D~oGI!c4}WPz?>C7SctVw2AE-9)_9snD++bPrBd>G-501 zjz!mEtKUP!(%J`brbHwpy_sLmyKl~%+&fR*cYU>&q4X_7^@0&l1Owm#By|rm-~o(- zN6-&m!7z9Sb0C$12V}t@`nRsH`wwW6H_^=)LFb_b=q41_8jg&?!_c#I()_9(oRh)Y zwL(&yP`Sum;oEG5wBaVw6bP;PuAm(i(pnS*F_mJor)1gChH`DT>U&!UaE-Fcp7`Tf zP%iF0O?b>d?~y>sciZjcedUtovCh%?Wj&kEWG!cboVnc0tmVwsuPjF!s}gdleQs2k zBO#T4NQ-S*)@sLaZKBXt;ckACrk$zzdhD*5+%BqMRmZB~^STxx!b z0mg(jtwuzL+$R%qm&XwWTzW@Qt0`$){H$%W=SC@PH3KhMy3oPR3fg!Si!pzxLoEFt K<((yegM9+aV4&Cl delta 105 zcmbQozLVMFo)F7a1|VPrVi_P-0b*t#)&XJ=umIwEprj>`2C0F8$>xl9yhgePCJF|I lRt5&z1_qOx7, 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 8fc73de2335cfb7eba3fed11462b5d3411a46bd3..634bd45a72954c46cb132181edd066caa2bc9ab3 100644 GIT binary patch delta 37 tcmdnNyq)4~n;Yb@aLk%%$jeUaMB!k*8j>pg*n?a&B z4ZKKtj#Z6h@Q$!pVkvNe?uRwGZzHW)b<{?5GE_Q3lVm>B@IZ!f3Xfw7 zWs3S~KSmijK@vZ?m+w_#i|P;g;zWlq_MwUfBUG?3FecT$>yAbv$K)%@T{_H-ZommK zW~5!i7VQ>2uToVY?c1d2dY|L6x_=%mK}0wFaI A`2YX_ delta 108 zcmX@YzKz-9o)F7a1|VPrVi_P-0b*t#)&XJ=umIv3prj>`2C0F8$?=TV0%p2~M!JS( o3WnxZCI;FD29sAY>Q3fjs^@j|3-*kUFxE5CHMBIF+{;u20Ks?=WB>pF 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 dca706224e1f6f443091a665a6e5cf735da7611c..73d5fba643ffb0ecae94f7e702ee494ba41c933e 100644 GIT binary patch delta 571 zcmZvXPcH*O7{;d*5h3E>fWzx1VmIqgs!Bvd91tPu;5e;etJ@vf87p0+2cMupLY#Wz z&?||=Y54}u;^g2{c(#Z7`(}Q5-kEvk%{=eTcWvd@p7;erwSob#0y@Aki0TG(f?F^I z?m;_v1HIq_BtR_2*b7L4$luw_mHExnOpL#;nmqrFI_Q%q$vbtFg=Ss`SIhM#2rveH>IN z*!RM!&q(cG8~C delta 108 zcmdnS{*2k;o)F7a1|VPrVi_P-0b*t#)&XJ=umIvUKuJp=4N?OGlg$~e1P~*ZIFZ-UFW56a!dTBl*U-{zaw*dc0ONuYQvd(} diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po index fec1f577a..9b52a1fa8 100644 --- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: pavelrz , 2016\n" "Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: cs_CZ\n" @@ -26,6 +26,10 @@ msgstr "Klikni na mě!" msgid "A new QLabel." msgstr "Nový QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Testovací úloha PythonQt" diff --git a/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/da/LC_MESSAGES/dummypythonqt.mo index aa8d8916ca6b46b3afa69b80b533906d4300e01c..3b5d593f4df1750e6dfcd527817cc6c9191d8906 100644 GIT binary patch literal 963 zcmZuv%~BIV5MC9vT+0hp>Ol|94GL#>gNV2o%a|+}AtXScN={C)&1PVCc57xr*s^>B zu0Dbf;7!jSd<&n!vnP8Jgpy)vzxlSO`|J7X{xv=I*`aZp@R-mg+$Ee6?D$5wNBB;d zCHy4ZA^avhB>W*fAWUC#oF(Ep;;)1c1go3A;W+ceKy2*|;zz{$#P^AhiLLIGm?YzI zon|tfsfl?$-=aTz&YO0n1`JUDDaylwM#J*w8 znC+p`B9|d_YW4NnS_FI1_D-|C>2}&(R#(Ukd0B%S3}GRtJZHf&3tm956h2*K!D0|l zAlt@cVY8gYy^m_!tkq_X8oX_Xt>*lGdoyx3xHhb-xYQ{(xe7t|^W30Hl+Y;Q<$vbu zB;z9W`g!*1$#`Fq%VbE8$hye05E@(xJ%HJPF@+9&e>56-#wHgBcw%*apQk+I3bk)Y zq5Xv*SgQCj_vhSJvlU(3yy69JJ(mV0ov$qDq6SZlU!+{f73dGR(rBu?-Bq@H5ofnL zK*b{2&toBz5SDwwxN9g;(PPEzO&LN_CTMIjuPCA7Jv+Zd2r+j%=}_^Mt>!ADvdCg= z>gvJ@On$4g5@xDUnOkw4NP;ZS8;h(-XJr`2m}06Cj7ZN){jawe)!cK|Q*i{vk1vpk r`2C0F8$?=SKyhgePmI{XE lR>r2<1_qN?G3rhhW2)nI^b7Wkk1*CV(KWO*n>>T53ILeV59t5^ 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 0ba5db33bd3ee63b68e843a3f61ca2818d7acdfc..a22587fbaf0822d2fc55b6aa74364dd3eb359c9a 100644 GIT binary patch delta 564 zcmZvYy-or_6om&tjWHBjSXo>W3kw%lB?xGU1k^++B;W%KFf6P4V|Hev_!B~W0%Cjz zEi8?Vo$q0crL_;>*~Ndo*>CUOnKLJI_BPrZ?LJP%E*WYBOoK8Q2d5yYD-Z|QU>4kg zG4KSYzzax&NCX;?0TY;?hZvhje?<@cW}*YVj-JK5i4JKOpNv7nFtb=Ne5+x62Nw&g zK#n-1N}1P%m1G5yiYs4|Eu`dzpqA@V$+zte?Q~Szbt;Os+D*FE(^LI(EhUv!^SC1|u3Rri z#kOZkWpanA2ORHJqhkoUX4pqbN2vT9E$R!){hMBFx3-~OtVE8x>!yR4zL1|mu_CA% zX0?UY^c{m*5BDB5g)>N_edN``yxW7kW}}^8CGq}GerQ<9gg-6@k6-(wLKFHr2v4%O JuY?Lhvo}iOk(~el delta 105 zcmZo<-^y%pPl#nI0}wC*u?!Ha05LNV>i{tbSO9S~P|^}egVeylWOGJ4UL##YGX(=f lD+2><1B1y;jJlJbG1l=q`UQK&M;Pmw=o(s@P0nDd0sw(&59I&= diff --git a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po index 9a5d0cb54..92e24b4df 100644 --- a/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/de/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Christian Spaan , 2017\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: de\n" @@ -26,6 +26,10 @@ msgstr "Klick mich!" msgid "A new QLabel." msgstr "Ein neues QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Der Dummy-PythonQt-Job" diff --git a/src/modules/dummypythonqt/lang/dummypythonqt.pot b/src/modules/dummypythonqt/lang/dummypythonqt.pot index 5ebacd7f4..4e9769911 100644 --- a/src/modules/dummypythonqt/lang/dummypythonqt.pot +++ b/src/modules/dummypythonqt/lang/dummypythonqt.pot @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" @@ -22,6 +22,10 @@ msgstr "Click me!" msgid "A new QLabel." msgstr "A new QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "Dummy PythonQt ViewStep" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "The Dummy PythonQt Job" diff --git a/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/el/LC_MESSAGES/dummypythonqt.mo index b4195cc68512e52114b4fb15184bd6642ecc2933..bbfb33004ecece45205580876d19ce67058725cc 100644 GIT binary patch delta 37 tcmdnOyqbA}3S;3!)j(bgT?0!612ZdQ6I}z7iOs86LPOkiCtERA0RY1(3QPb1 delta 46 zcmZ3@yoGs!3S-qo)j(czT_Xbp10yRFOKk&#iOs8c9sPnm<0FjqOmqz`%_bW%RsjGh CR19$d 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 219cff20f5cc8fdd6564f8fe9ab8fe5fe043c67a..79b2366b4e30c08902d3f38f362c6f983d86fab7 100644 GIT binary patch delta 37 tcmX@he1v&|3S-wq)j(bgT?0!612ZdQ6I}z7iOmOCLPOkiCkHUr0sziH3dR5c delta 46 zcmX@Ye3p5F3ghI7s)4-bx<&>H21ZsUmf8je6Ppk4I{F2B#zz?Indll?noV|RtOWo! C)C}tY 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 aca1de3f4f487b5b942a7900f6ce4e9716e56f2b..eddbb921db46c6f977bd50dfe71093e3f61240d8 100644 GIT binary patch delta 568 zcmZ{fyGlbr5QZmS5fRkFLM+BcEIi3kV@#rm!Al_#6p{y+oUG==bCI(fC8(sZwMpRv zSO{8J3zqsGVr}Ik_@5wAP>22acXnt0oq6cJ8f?9e_gxcW08D`*7zXDcjyo^{?!hd0 z1Vi8rOn`Tg0f_|BEy#i~^IX(GzndRu0eO9C~aX&gc?FleR1+5`mv82 z>qLPAb;|oisVFZ=1=dDPL$j~6mP5q{VZ@sa-*56>)6~LX-|$XYNz#VrI!CCQrczD) zs>p>EoV%K_%pdn~;P_p&<6I9btfi^*e0I^!u8b~QcGj|UY-jR|Y0FNxFRhd|Rw|u!CpUD)omKi{tbSO9S`P|^}egVeylWOGJq0W)1gBV9u? W1w%6{Lvw8d!^usIx|1I={sjQ6>, 2016\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: es\n" @@ -26,6 +26,10 @@ msgstr "¡Púlsame!" msgid "A new QLabel." msgstr "Una nueva QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "La Tarea PythonQt Ficticia" diff --git a/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/es_ES/LC_MESSAGES/dummypythonqt.mo index 2115baaf1aeb31f9b0f6a7daaeece2fe87121fee..6a5cf2cc1479d78a13943b574e7a2b5ea554e562 100644 GIT binary patch delta 37 tcmX@YyqkG~3S;9$)j(bgT?0!612ZdQ6I}z7iOt(tLPOkiC%ZG&0szW23Yh=^ delta 46 zcmdnZe1v&|3S-wq)j(czT_Xbp10yRFOKk&#iOt)29sPnm<0FjqOmqz`%_iG1)&c-B Cg$%v` 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 68ea8166d592e31121c543e1b428a545f9c9308e..7f66467e83f31701b41ac2c17efcdbff47c5d8b5 100644 GIT binary patch delta 37 tcmX@gyoY&$3S-km)j(bgT?0!612ZdQ6I}z7iOoA$LPOkiCwnl~0szXW3Z4J} delta 46 zcmdnPe3W^D3S;*~)j(czT_Xbp10yRFOKk&#iOoBB9sPnm<0FjqOmqz`%_iG3)&c-C C91Oz% 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 49729889c3039001c2fc21c22dfd183e92960d95..f52688188c7f9161235d90f8b1aa7fdb3b8c5a27 100644 GIT binary patch delta 37 tcmX@be2{s93S;|3)j(bgT?0!612ZdQ6I}z7iOqXiLPOkiC;Kwi0szeC3bz0N delta 46 zcmX@ee2RI33gd){s)4-bx<&>H21ZsUmf8je6Px$)I{F2B#zz?Indll?noV|LtOWoz C4-DJ@ 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 f301c86e626194fad5d6cd3207b575577976dbb2..ecb678aba0db77cdc0ff7bb38bd353d1c59908e8 100644 GIT binary patch delta 37 tcmdnaypDN-3S-Gc)j(bgT?0!612ZdQ6I}z7iOp+SLPOkiC)+Ys0RY5;3R?gG delta 46 zcmZ3-yq$T13S;d=)j(czT_Xbp10yRFOKk&#iOp+y9sPnm<0FjqOmqz`%_f^LRsjGj C84Q2` 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 6d4c89220d1d88e01969f3c4c24952d9d25538d0..14aebbea7f966038429c7aa83f62ae0c51fd10f5 100644 GIT binary patch delta 37 tcmdnWyoPy#3S-ek)j(bgT?0!612ZdQ6I}z7iOs87LPOkiCtEXC0RY3C3Q+(6 delta 46 zcmZ3(yp?%^3S;#|)j(czT_Xbp10yRFOKk&#iOs8d9sPnm<0FjqOmqz`%_bW$RsjGh C>kM`P 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 036426bb4bbd253af0cbee7dee2e47909e3a7309..dc17915b0d8d7f44cd935f91fb4f07f4c870e1be 100644 GIT binary patch delta 37 tcmZ3_yo`B*3S-Vh)j(bgT?0!612ZdQ6I}z7iOp+RLPOkiC)+R<0|3E33OWD) delta 46 zcmZ3+yq9sPnm<0FjqOmqz`%_ciD)&KxB C_6*Yi 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 2f21852db7a0e9160d105ed43af66b23b77e013b..3548ce7630aab6cecb3fc9d23d8207055c4fa38f 100644 GIT binary patch delta 37 tcmdnaypDN-3S-Gc)j(bgT?0!612ZdQ6I}z7iOp+SLPOkiC)+Ys0RY5;3R?gG delta 46 zcmZ3-yq$T13S;d=)j(czT_Xbp10yRFOKk&#iOp+y9sPnm<0FjqOmqz`%_f^LRsjGj C84Q2` 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 43d6bb8a9fbc83871c9b45efc1dfbf1557f73108..191607183c8cf3e8d1f5ffdb71ceeef92912d415 100644 GIT binary patch delta 37 tcmdnaypDN-3S-Gc)j(bgT?0!612ZdQ6I}z7iOp+SLPOkiC)+Ys0RY5;3R?gG delta 46 zcmZ3-yq$T13S;d=)j(czT_Xbp10yRFOKk&#iOp+y9sPnm<0FjqOmqz`%_f^LRsjGj C84Q2` 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 af3a9923415d5da917137681cc77101f4d32e754..3fd3f3a6429af8d1ffe33656f898f598448893ce 100644 GIT binary patch delta 612 zcmZvY%Syvg5Qe9=Dk6%waOGmUb75k=P}?d+@v;yR#rgn=#x|NXkQ0%5p@=VFXsZ-T z7lP6%E?kI@a(3dvm0MrHKNX~6hkW^G=KM3{}p$pIrs1Aj-h?EE(LQRpNXp3&- z!H2bCk@LneZ>?*(VX3sp!qdDX!L}iUmNj_aae4X3whO#j@N!Om%i}diS82&IcMsu; zQYL5ob0i%deN!+VufsVua4@&m+I-;XEVP11@#(prNDm~GSdwG$)bxxJoAED|xbT#W ztL25Id5)Xn70cx9oMo8%hRgGYWoCo^Le|zyOWk$s^f*t&CTIPpi^xu9RVmGdPKrMl zWO*Y?vZ<0R%L=kv`M|O+@1@Vkee@bZ-IP_laa4ko8FlUV`k1X@%Uv)~gRdH;_K9+* d8Il{<*j<*@KifNc)y|eH%-3Z@J_J9Bz5yG4)Eoc+ delta 105 zcmdnUzLnYHo)F7a1|VPrVi_P-0b*t#)&XJ=umIv}prj>`2C0F8$>xl9yym(F#tMdJ lRz@b;1_qOx7, 2017\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: he\n" @@ -26,6 +26,10 @@ msgstr "לחץ עליי!" msgid "A new QLabel." msgstr "QLabel חדש." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "משימת הדמה של PythonQt" diff --git a/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/hi/LC_MESSAGES/dummypythonqt.mo index 33f5578c2ee95352fe8d65c47d21d7619ead12be..4a53bc6b4659748c5093067e5786731da76f2be4 100644 GIT binary patch delta 37 tcmdnOyqbA}3S;3!)j(bgT?0!612ZdQ6I}z7iOs86LPOkiCtERA0RY1(3QPb1 delta 46 zcmZ3@yoGs!3S-qo)j(czT_Xbp10yRFOKk&#iOs8c9sPnm<0FjqOmqz`%_bW%RsjGh CR19$d 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 cc1235d798267f6d3632ed2c8d18c95f3b04f09a..eeb08c0158ed4ee42b01922071129ccf68b051ff 100644 GIT binary patch delta 395 zcmX@l-o;UWPl#nI0}!wSu?!H005LZZ_W&^n>;Ph3Al?bY8bEv;h&h4y0}zV?@h>12 z17aaY1_m=AtqG+60dWEl^8oqr%nS@#KspCVa{=k;Kw1JwF9Om)eOwH?fedq?z@>?m z$~Ks?!=*-6}`G&i?WA)vA(BR?;&L?J9QwLG{awP11sv;SlZMq6GBT?0!6 z12ZdQ6I}z7$xV#!SwchHbSKv_9jf=sFUwR2^hr!g&Cz2BE=epYEzV0+D9A4=%}!LP zN<6fnB(=CCFB4&SL4I*!z8-^jPG&YxI5$<1Ap}hY%zAW*Lkqxq8T`xg4=u<_1skn{ Y#q2{1peBNqD`Y1g-Ir>mP+iLa05U0Oga7~l delta 195 zcmeC;IL}^xPl#nI0}!wQu?!IV05LZZ*8njHtN>zOAYKW?8bG`qh&h4y0T7D;@hc!U z17b!-1_pK}1_lct4N~vG3{md~q(SP-fiy^cBajBEp8=$SN+Zgrh3 y#MsSisB2)MU|?WnYN~BuFnJZ@dtOJsV9)pnV?7gHLrb&CbD0iJ-028Z>IVQ_y&OIO 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 206bf7b4a77b3c830bced08f2385ad894aba18cd..6eb9ade95024c3e58bb45088c19f66878aec3973 100644 GIT binary patch delta 556 zcmZvX&q_i;6voH2AR>x_RuQL7wD4YTWu_LAm@UeMl0CqvlYhGR4mcy>t#DB#XyaJkUpx*U@K@A?>1M3>t=>MNBgkqo~ct zej-D@IH6*mmxXJy3@OcZTahP};x$1>vPC;>&+Aa3qwCTyYTA=!n`PZbXlcu9x#nWK=JAGWSEQGY(yFr(@7-TU4okb%RXP-ObF~ijpPRp4 z4+7o4F<$#Gf$)VU0l~0Kt1bhZ?Q^XgzJ`}7+?plB8qxxPV7cJW^x(y&%%GrIW0MD( LJn2`P+?ZwGHY1RU delta 108 zcmey#wu9N?o)F7a1|VPrVi_P-0b*t#)&XJ=umIvZprj>`2C0F8$>xmK0%p2~M!Lp^ o3I+yNrl#5k29ui@btk`IY~*$H3-*kUFxE5CHMBIFoXb=N0N&LR1^@s6 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 ee16efc6968a5ce8f125dc25c2796d76ae6e38ed..ee4f15b5205f6a1a3b058d4e3789be3e9e7acd74 100644 GIT binary patch delta 83 zcmZo*|IRkSM|UkF1A_$+^Dr84, 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 f9585197dd4009c05628af3dbfa90f84807bbef3..c638cbd28d9007a6e04a5998b146aa3ff1e29759 100644 GIT binary patch delta 560 zcmZvYy-EW?5XUzrDw5cw5Cn@!C*pJRhQtTh)6IFw-7VbiAt8no`Tz#e zQn1rPuu>4LuD9?3#M-Cue?der!~Xcs%+3ru`xd_*?|q~bR}3}=X21?ef>RLL9he07 zU=}=s3GfM~z!z8nu^40TAP=JYWSp@%=rlA1tw7VzDs%yQ1Vw2NE@LAAF-t_j9~*@q zJ#1iQ^27;Mcep8>EGv`JTnCC=p%k|SHKb3Kz;)ZS-`2;{t7_VkW|nO@_F)TE8CE|Q z|0)X7MBY|}qlesM0!4jCgUL;4lHzSuq)xY=FHPo+T!C^c#ieBidw_I*J*+c1;=4mmvu-bn(PaM=YjmuK( zqPG{mYW=%(O@~k6W1w2L!%Z1JQlstL!`H64!f|v!u5D%5|9@fOjnJBt7~1{wO--4? MzQVGxN~g=d0f6?E4FCWD delta 105 zcmbQnevaAVo)F7a1|VPrVi_P-0b*t#)&XJ=umIvIKuJp=4N?OGlg%0Jc#U-pOcV?Z ltW3?d4GbnXG3rkK#@NW~=ojo6A7QL#qHAbrHo2N<0sx&e5ODwi 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 ea87ff9f01aeccf7ae322543ec4004ee465f9585..8549b91ecc2a2a03f7e6159a67866886284504ee 100644 GIT binary patch delta 236 zcmZo=pTR!CM|VFX1A_$+3oPHDAHEC@(9qEHPQZrX)4rAv+~iFTW^#^J7Lw#))Sn zLX#5}3QIE;89Z|oTuO6uD-{ANOEU8F0!tLU@{OH+$W@)ZuRP{_n4ucrXimIBt6 Rm7k=Ll9`-prBGeV007;wHtPTY 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 0aa5dd177d4e169ddd42f080bb7caa1c4468b204..afaac186a46d0d7f5480475e5d227c0e6a3d7495 100644 GIT binary patch delta 668 zcma)&&r1|x7{_08OCrP&s!Pz@p-5Ay<4w3?#zzt`!2FXtna=? zV1g{7As*_K5TqU?EV}n!1o5CtU zI-5gs2aPo-cJ|{CPLwQ{m4DA8$lQ+}cAZ1XQ$GsP?7&SJ@z9(y4;`ZN>StRq8%rd@}x%59K n-OCJSWR|G0KxXq_^IL9SC$mbkjcnf1-`IWmd3S!znZ|wt;E2{Q delta 108 zcmaFJzJb}|o)F7a1|VPrVi_P-0b*t#)&XJ=umIvRprj>`2C0F8$?=TV0%p2~M!JUP o3I+yNrY71329sAY>Q0tpYT$MB3-*kUFxE5CHMBIFyojk70Lw=ZmH+?% 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 e7ce265a2692b1b77da701f115a13a8fec06a7b1..4d7e1ade2d2e71ad4403377d108c268ab9680671 100644 GIT binary patch delta 37 tcmZ3-yp(x@3S;&})j(bgT?0!612ZdQ6I}z7iOs87LPOkiCtEWX0|3Cw3N-)# delta 46 zcmZ3=ypDN-3S-Gc)j(czT_Xbp10yRFOKk&#iOs8d9sPnm<0FjqOmqz`%_bW$76Sk# CT?|?P 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 5b1c5ee21eddab390ab0b68cba4fd3d2b66dcb77..d9e3440ea2a7ebda87675d986ec7aca508da29cd 100644 GIT binary patch delta 37 tcmZ3@yoh;%3S-7Z)j(bgT?0!612ZdQ6I}z7iOnlmLPOkiCtENU0|38r3MK#m delta 46 zcmZ3)yqbA}3S;3!)j(czT_Xbp10yRFOKk&#iOnl`9sPnm<0FjqOmqz`%_i$J76Skz Cm<&q* 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 3b7f8fd9445650f9ca43a3477a2bffb22484287f..f2cb98bc39703a59a07d5cab620cd74da6fa1c61 100644 GIT binary patch delta 639 zcmZvYze^lJ6vxMSCWa6R1|mv|XJ^1&Ry{74Q;ecm1Qo?i>dfhwo4ehcW8bW@gm8ti zvpGW0)>_h}icKmHtNaVWKfzM0{I15m2tMXB-+AxNn;-9@d#|_ow?Fq?z#f5@zz0vj z9!TvMcnXfe2sj0g!8sTJm*55H?-HT_eFZ%OA3-1d*=`{wpexYl(67)z=mB&{h^F|7 z#WVtcps2aF2bkfC+>M*f53x!g+LK0RsjjwZby1d8;KE}oZOjxZX8B3crio}i4#R|2 z5?e9#RZH(o*%fnvUaw)-ut>A=zw`&Kw%4p`2*0B4DMeT_Vc2`qE~RA~*Ed#8nOG)V zqR(Gi#mQ%{9k1wkZ^$c@Ci0G#Z|yiEY#l$6bq=I8QHhp}p{dXqRx_d0fg8osqcrY~ z685aM}>70_a;%;UUO}xE;g)cQFk)+L=S9GegEiT>GXCd^ZX41Zh EE0?UXk^lez delta 108 zcmeC-_`z&(Pl#nI0}wC*u?!Ha05LNV>i{tbSOD=pprj>`2C0F8$?=TV0%p2~M!JS( o3WjD@CKlQT29sAY>P}{2YT|YD3-*kUFxE5CHMBIF+`+UH0M~60?EnA( 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 9c513e85ad4b34f86b17c09781ea3fd08e7f6c93..afb5fa103f8b66b28cdb4b8f65e99017d7544c0e 100644 GIT binary patch delta 37 tcmdnSyq0-_3S;p^)j(bgT?0!612ZdQ6I}z7iOp+RLPOkiC)+Sq0RY4g3RVCB delta 46 zcmZ3>yp4H+3S-Sg)j(czT_Xbp10yRFOKk&#iOp+x9sPnm<0FjqOmqz`%_bW&RsjGi Cf(&~A 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 e0aa88a98995bf6c919ba32b0ee0693c23383898..195b054a8a90e87c8c6bc474f44c3586e5731383 100644 GIT binary patch delta 37 tcmX@Wyq$T13S;d=)j(bgT?0!612ZdQ6I}z7iOt(sLPOkiC%Z9L0RYI23Wxvz delta 46 zcmdnae1Lg^3S-+u)j(czT_Xbp10yRFOKk&#iOt)19sPnm<0FjqOmqz`%_iG2RsjGo CXbi0Y 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 d883f109b181021c32e96d8e72dd6e2e637c43e6..be19ac81b8fb4ee2cbb84cbbba17128074d91db3 100644 GIT binary patch delta 83 zcmeBSZ)Tt1qq~xkfx!ZZ1sE6@9x*X67y;?eK$;Ust1&Y$NC9aBAZ-q$y(d=w;kD2; duv9QGvobc(H87dn#Q2CMG{jAJb0L#7BLFTn4;cUe delta 92 zcmZo>?_roYSjNC9a}AZ-q$Lnc=K;WgJa mGEguuvNEyMHZYjn#Q2EU(J$CDKEhbfMAy*LY;y*aG$R1bZxL$% 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 6d4cd26132a6f35eed432929f2ec2ee13cb0ff7e..d74e6d2da958a7e362b6e24d5e502ca4cd374114 100644 GIT binary patch literal 1022 zcmZuv%~BIV5FQk*GHO}n!IOvPAeEHNW;ccq7B(0|z$hUBBbMAIn<1I7JCoX(5TbCj zd;(9rfO_>{l~>^bd;!a|PhoF}q>5r{zwMdsufLw3{(XP?6Txv4@er|rxQ#eM#N#vK zF5(L!iTIAVh4_PbfcT5ZA*QAXS-3_>9_<}m_pTE%hxQolJ+xoZ#{3^+|1Y#i9Suw) zxFpl(%ZvXFoW=VZjUq@sfUOPIwK?pm2v+-HIE4Dpbd=mO@Io~$ zQVN8>kE|Ke=!PrM8)<*BZ1Gab_?|SDE21WNc@F+Iea(f}L}pWT~CCZ6wldejs9%G4E}; zxJ|1yx>|(iHMd%Myj$BWCpMTiv=K3>17=j@LYUS2j)diN`}9B@u%IO@$xUG{u9d?S z+3w>7(FSKBZczn7cOcm@rl;L>dN3GRCKeQX{Lu1MnD$w~LKbnIHkhH)8Qab|>0Xdd zC90Kbd2(9EvJ)jG4VSp5VGj>y_@O~26LJas4vRE5-s{F1%};o7sXZRivh-C;$hHgl zrZ9Vjfc rkxk}{vlA)05F%}c?2dSsdzv&9bh$QTnag1ae|{T?(+@sA7k2SK2iq5i delta 188 zcmeyz{+`+5o)F7a1|VPrVi_P-0b*t#)&XJ=umIw%KuJp=4N?OGlg$~e1P~*dSjX$=7wj1yVXSAOYiMaUIfW_J-`HBAAg8n_F~?RT&(_vZ z!Ct{Y!Ac=d)zHAs)<{834a~H$H32a-K*9z#h6V~XHDGa&8UszB9z&oWBTZ{A1^{, 2016\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: pl\n" @@ -26,6 +26,10 @@ msgstr "Naciśnij mnie!" msgid "A new QLabel." msgstr "Nowy QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Zadanie Dummy PythonQt" diff --git a/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pl_PL/LC_MESSAGES/dummypythonqt.mo index 9cc14be42a9b6b828bca460a012776a7924c5ffd..f690c1a4406b3e1c8436a7471d5eb1a2722bbf57 100644 GIT binary patch delta 38 ucmcb{a+YO+3Zw8u)j(bgT?0!612ZdQ6I}z7iOt(tLPOkiH@h?PGXen2y$S>X delta 47 zcmX@ha*btz3Zu+K)j(czT_Xbp10yRFOKk&#iOt)29sPnm<0FjqOmqz`%{JRH@-qSe DG^z|K 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 820ff385547286d3bb6d9407bf20bb9ce4c25339..69adda56341c4e593f5f529c63946b9e9e6b4c98 100644 GIT binary patch delta 627 zcmZvYy-piJ6otp&5Ftc_Qcw};(xqTG4zV2DiVzkg1wR53Q-U|njBQKI%~ZAk_y_C<}XldfgSC~IXy(H5sP-!i66t8LfhWX;h62fmn#b+`l9 zq^LL53rB?m>}yMS+$--ffwJ$S-sEi#$jY{@(&2HpJTqGM3Kc4ps$Ys;q1gT7ZCK~k zQ<>OUI!>$flcQ8Om?A~B*eD%I`o+$%ks7C6mZ6H6zNN-;+zMG)Wpsjj80mCaoNd4s z`yrc|DVi>P{@T6l=GW^#ywk^UH5{oJ9Y2LBzFVj0`hvJ;Ed6sb^_~AS_vzW7Egib+%TQyGKFBf? Ej}U*V0{{R3 delta 105 zcmcb_ew^9jo)F7a1|VPrVi_P-0b*t#)&XJ=umIv-prj>`2C0F8$>xl9yoS0)mI?+2 lR;K3K1_qOx7, 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: pt_BR\n" @@ -26,6 +26,10 @@ msgstr "Clique em mim!" msgid "A new QLabel." msgstr "Uma nova QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "O trabalho de modelo do PythonQt" diff --git a/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pt_PT/LC_MESSAGES/dummypythonqt.mo index 489edf85fecdd9645eac7cc5079482339fd8d564..a437e8c58cddeba803d8c98f024bdc1bb16e107f 100644 GIT binary patch literal 994 zcmaKq!EVz)5QYsD5JpI-2e@#U-V(vuPAO?|2_mFv2{cWbno4kijXg|L|FX__M5 zfD;lA0e2)g_W)19GjQg_I4P}EMXd7q-`Uxj+1<>q`MFOPjmyL>A|S33ABcQ>Bd!tO zi30J1xI+9UZW4cp8^ruM%PNx=Nq-WriR-z2!LpV}eNvlLlIC%T$NG_Und~p56fzm- z=}V?HH#JYbmuQxs^J2bI1%V^j-sD|O9I~|GW~d=Wt$81zCl#y>({v2&u^C9QZQ!Zw zI#w--!#A{R!8+sJjd8SNFtdUI&WNPtSOfjcOt%AhSTrfPC%d5eSo`qqz13E74@1Km z5!*$jV<~)SS8LCz8+F*NcXk@BExX+cSWO`}*}uEQyd}@0 zjjV(Fah~OP--~*+!xKg#35Iagq=7&`idGJ z9HgOCnN*XSkNPQ(6DO4E!#jE9G9?iGAw44tkf(HDsm!oHM2%3G&UsRV!oZkJ`>s10 zjU1C#i+gyGr*T7`@RTdmuAv0lUG%(i$<55GcHkE6W}{g@eT|ai*)=H)3Oe&RqstpS zFm9IcSgb-g;7X&ZJP+2{%IUtmS`QVgi%>?f==-qJjg7s50_jc|vBzT{vT+|xp3KR{ zP;%~_T#H=!QS5dyR6JqpQl<27iELu(%Hk?ar+)(}Jn6_aQA5J>( EFNh-?g#Z8m delta 108 zcmaFFeu~-Ro)F7a1|VPrVi_P-0b*t#)&XJ=umIu-KuJp=4N?OGlj9k!1, 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 46b7e3207110b8fa911ce96ea548c1ec88ea35f9..13750b1672b7a8fc36694e8a466ecd503eb68a62 100644 GIT binary patch delta 83 zcmdnRzL9-`kM2!I1_lct=3`)B5MpLv&, 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 a627ad69a90b70f5c27037d0bc27109b36804db4..948000f6a34fa9994c38afd28e316fb23801ced0 100644 GIT binary patch delta 322 zcmZ3&HkZBro)F7a1|VPsVi_QI0b+I_&H-W&=m26~AnpWW4IrKl#GF8U0Eoqa_!JPE zGchnc1kyr4EXmBk-~gm`fV2dV&IQsSb!|YJ5lFKDF^~zi4@lWF0QEwEqe5P4xk8{% zVp3|39)qJoaYM+%LO^9nMt)vkiGo*t(!|;XUJG3V zO9cZnD`OK~1CxobY!rhtbMx~Qf|E1K6N^f!6l@ZUsuGJ*vK`WM6Ek!4lJj#n2QV&W zv|D }sT5*m+^=g}oPcT-d5`vGKybi;WkXfMh>N=wiRZg)J9$11U_KCx2ox0sz)m BSY7}C delta 205 zcmbQszJ#s*o)F7a1|VPoVi_Q|0b*7ljsap2C;(z!AT9)AP9UxaVlg1@1Y!p!28IPd zS_p_A0@)Hk`U{W-$@4NZFfamX5CAe6fWlxq7#tPyQp*(reG-#WbMzP{9*E;L*EKL! zFfg<-G1fLPn5@lcqjh1@g$), 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 dcbc56c38b091052ad899bd1295d66f0b0936027..cb3c99c40cf78872b7e4882ed7214cb266bf5abb 100644 GIT binary patch delta 586 zcmZvY%SyvQ6o#i-6%j!M6~V=E=fcEzA=WBhP%79W7V85{YqT+!k<2twFBI_!iueHC z>7uw4+y=p=Pav*+3jb88q8{espEL8HGnbdn`<~kCVDg3`y1^L8fj)2!;k~~XFerVBw2xz0?c~#n}s zu^@_AwoJ3^P4Drx|ngD=j6JRtUH+ zU9Los#(_@_?o*bZ+72xp2bL@erA%}6(BrnNmxQ-GNi)W@S#Mq@_X-*9dNFZR+ZJKe zz@>c=I=ubnUB$!JhCB|UM#u^6=)iVV)C~O!MUSp1SK80lS=O~3-&Ph$%Nu8zFC+gn d^0tu`gc5Z0-HK2Bw&?Vyx-3EwM9ugs*ayeYqKg0k delta 108 zcmZ3_eu3HIo)F7a1|VPrVi_P-0b*t#)&XJ=umIv|KuJp=4N?OGlg$~e163??@*>P~*eSjX$=7wj1yVXSAOYiMaUIfrQ~0MNM+2><{9 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 96350dfe783c55f8d12d628b80e5dc220320a391..c7c255e216e7635201c377443824f51164958806 100644 GIT binary patch delta 37 tcmaFE{Fr%y3ggO&s)4)~x(1dC24+^qCb|YD6Pwqugoe23PPSuQ2LRdO3orlx delta 46 zcmaFN{Dygg3gf1Us)4-bx<&>H21ZsUmf8je6PwrZI{F2B#zz?Indll?noTxkTn7L~ C7!6eb 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 a2771e965b6532eb04cdb91ebbbb5e54d4952cec..2aa5a10618209f8a6a4731cc8f043093fb7b5b59 100644 GIT binary patch delta 662 zcmb7=&q^Cn6vl6C6pOfVQ4m}lcP^YTTG1Fp42la4RWUxmOfuEcnOw*nk>H;sx^Nw& zPy%hCtGZBv5EHbH8z11z3yAAJL6?3vD?v9N<~QFt_kQQhom+`t_Ld(9;@ z=mQ5p#~;uS&cO(1fsfz`d;?-mdrL0YdzRDsk?D~F*R!hN_EUX2z zB<+Nl_uSkLT*D%}<-BrCOB?I1B0Rwx`pTZlpr`wbWNs+boh1lReN+Zfhy{^jN{z7QR~Yl^@DuQ;UWJ2&5d1VZ;6 M>EGdNZt80l&xmXYO#lD@ delta 105 zcmZ3-(ZFJHPl#nI0}wC*u?!Ha05LNV>i{tbSOD=cprj>`2C0F8$>xl9yvDkQMhXT7 lR;Fg!1_qOx7, 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 81152d66b6d54c72e0e1d8101c01391b88381c5e..b3f1e8936efd1f53c141f955615343726b4bcace 100644 GIT binary patch delta 37 tcmbQj(#yp4H+3S-Sg)j(czT_Xbp10yRFOKk&#iOp+x9sPnm<0FjqOmqz`%_bW&RsjGi Cf(&~A 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 931fda431e4975fa1014582210073ad2aab3717e..3c787d07459c5708b1f64425c745df8ee4605ea0 100644 GIT binary patch delta 37 tcmZ3(yqI}{3S;I()j(bgT?0!612ZdQ6I}z7iOnlnLPOkiCtETW0|39}3M&8r delta 46 zcmZ3?yoPy#3S-ek)j(czT_Xbp10yRFOKk&#iOnl{9sPnm<0FjqOmqz`%_bW#76Sk! CFAPus 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 7d2abb0cc6bdd40ca836a428c0431c4d596046db..77085f17e16e230d986250e944e75044f27e4c69 100644 GIT binary patch delta 593 zcmaKoJx|+E6oyZlP=qQf#K6RG*cfWdZK(-qg$NB*#fMa+bm(|ZE{%z=E%{!9tPo{j z=vFDJI*DY?s?J^d7y3F#e5j~Le)Qgt_nhlC1ok@8m3HZqoqU#ZsB(TdWcy%VYBC;ZHL>JH97SKc?@ zSYO_j_WK`X=(Fd?*X?d3oj}}lmVXk#FuOcfLJu?c^HV<@*;`4RsA42yZ`2C0F8$>xmK0%p2~M!H5O o3I+yNrY71329ui@btk`K?B;d!3-*kUFxE5CHMBIFT**`h0KlUV(*OVf diff --git a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po index a2eb1a9c7..cc6044854 100644 --- a/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/tr_TR/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Demiray Muhterem , 2016\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: tr_TR\n" @@ -26,6 +26,10 @@ msgstr "Buraya tıkla!" msgid "A new QLabel." msgstr "Yeni bir QLabel." +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "Kukla PythonQt Çalışması" diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo index e5b10eaef985fd13a02bc237ef79ec3cbb6fc25a..957835e0339b6573cdcaff8c4c3dec759f0bc7df 100644 GIT binary patch delta 37 tcmZo-`N=#%g>nBx)j(bgT?0!612ZdQ6I}z7iOuU+LPOkiC)+U|0RYfn3kd)K delta 46 zcmey#+{7|Lh4I8h)j(czT_Xbp10yRFOKk&#iOuVH9sPnm<0FjqOmqz`%_f^N9svM5 CZw)R0 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 a3b85531219ebe17715186d4a5e5d143cdcbf894..430ab38ead211adbd4707702355b547155385499 100644 GIT binary patch delta 37 tcmdnYyoz~(3S+@U)j(bgT?0!612ZdQ6I}z7iOnlnLPOkiCtEUB0RY0b3P%6{ delta 46 zcmZ3*yqS4|3S;F&)j(czT_Xbp10yRFOKk&#iOnl{9sPnm<0FjqOmqz`%_bW#RsjGg Cy$oys 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 ee43814102a17904de678cc4046bbc397857b91a..32451102b783c954d2eda0cf25fba02dc9caea39 100644 GIT binary patch delta 37 tcmZ3>yo7mz3S-tp)j(bgT?0!612ZdQ6I}z7iOs86LPOkiCtEQV0|3BS3NQcw delta 46 zcmZ3&yq0-_3S;p^)j(czT_Xbp10yRFOKk&#iOs8c9sPnm<0FjqOmqz`%_bW%76Sk! C#tc;e 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 b14bb481464f4aeabe523619c12fd3d619589972..2556fba3fe1c27f30c0f598597f6d223718b79aa 100644 GIT binary patch delta 556 zcmdnX+{j*kPl#nI0}!wQu?!IV05LZZ*8njHtN>zOAYKW?8bG`qh&h4y0T7D;@hc!U z17b!-28NA5YyrgbAaN#$dM;)L27Vyl7)m<>X0IUA@-ks%}_6+?w(eiBeTvseL$O0dWSO;7;oO97jlm7kUCq zf=yOxT3S+KrbA+Wak5@TWtE+df{}rt`NXxoETJK8x|7`*%j%!(Xn3+?)zh7upKV|G zZ2E$yOWU8%YJqzCaYGZsv$;!Ow68*V@yYJpPrDWZ)jaRo_N<}t*|v^njqAY*dpe(W vOne3=-|uN;fCmah2LniQ#(JP#C}v3j4Fl?isCm{u;rWtX@Au5Au4MoKf!eb9 delta 105 zcmZo<-^*-qPl#nI0}wC*u?!Ha05LNV>i{tbSO9S|P|^}egVeylWOGJ4UPE023k3rM lD^pW#1B1y;jJlJbF?R7f`UQK&M;Pmw=o(s@O)g<70|1Dz5E1|Y diff --git a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po index 8404093d6..7371e4e9c 100644 --- a/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po +++ b/src/modules/dummypythonqt/lang/zh_CN/LC_MESSAGES/dummypythonqt.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-07-20 02:49+0000\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Mingcong Bai , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ANSI_X3.4-1968\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Language: zh_CN\n" @@ -26,6 +26,10 @@ msgstr "按我按我!" msgid "A new QLabel." msgstr "一个平淡无奇的 QLabel。" +#: src/modules/dummypythonqt/main.py:97 +msgid "Dummy PythonQt ViewStep" +msgstr "" + #: src/modules/dummypythonqt/main.py:183 msgid "The Dummy PythonQt Job" msgstr "PythonQt 任务" diff --git a/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/zh_TW/LC_MESSAGES/dummypythonqt.mo index 32a925e8ce7319b19d19f8f722414ac59cae8efe..5ac8ea5c1c8014040093c6cc0fda8e68999939cc 100644 GIT binary patch delta 635 zcmdnTe2%^To)F7a1|VPuVi_O~0b*_-?g3&D*a5`6K)e%(HGudy5OV_Y2Ot&);$J{4 z2E;;)3=C#KS`$cb0^$T928jzZL-c6@X&xXy7)XQcNdVG7`Fe(0Aj1+UFa<~h^?(5r zkOXoWSRh;ixqNHi;EM}Qx($kixgZ+ zb8{;d0xC-~^78^q6uk12^cb9TGLy4`suUSOvWZC2VVSAr!6m5$3?Uh*ShNC#Gm8~~ zs06FDo&rc)3fRW1{3M0q#L8kTh3eXg7S;mhx&{`y29^p2W>&@~x&|f_n{`c!OLRku z67!045=-)ntQ5Rb)6x_?N)z+a6>N$vjExLU3{4!;a}zUj^pf*)?Q|533=GXCuI*z9 z4RO<*?7>)8|71tQ(}wP6(>6Sx)dCHM#|=#kPaE4o0&q`1-M;k6-Z?;_=iLp@TDxDY z=z7+;9;EQ)?s?B9cRlNv_`2C0F8$?=TV0%p2~M!JUP o3I+yNrY71329sAY>Q3fk>gILy3-*kUFxE5CHMBIFJeR2q0L(5Bm;e9( 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 工作" From b4a5f65f8abea6f5ad00a0a57dc09a633d552357 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Thu, 10 Aug 2017 10:49:19 -0400 Subject: [PATCH 08/32] [python] Automatic merge of Transifex translations --- lang/python.pot | 14 ++++----- lang/python/ar/LC_MESSAGES/python.mo | Bin 0 -> 511 bytes lang/python/ar/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/ast/LC_MESSAGES/python.mo | Bin 0 -> 432 bytes lang/python/ast/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/bg/LC_MESSAGES/python.mo | Bin 0 -> 431 bytes lang/python/bg/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/ca/LC_MESSAGES/python.mo | Bin 0 -> 743 bytes lang/python/ca/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/cs_CZ/LC_MESSAGES/python.mo | Bin 0 -> 477 bytes lang/python/cs_CZ/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/da/LC_MESSAGES/python.mo | Bin 0 -> 725 bytes lang/python/da/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/de/LC_MESSAGES/python.mo | Bin 0 -> 428 bytes lang/python/de/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/el/LC_MESSAGES/python.mo | Bin 0 -> 427 bytes lang/python/el/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/en_GB/LC_MESSAGES/python.mo | Bin 0 -> 452 bytes lang/python/en_GB/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/es/LC_MESSAGES/python.mo | Bin 0 -> 429 bytes lang/python/es/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/es_ES/LC_MESSAGES/python.mo | Bin 0 -> 443 bytes lang/python/es_ES/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/es_MX/LC_MESSAGES/python.mo | Bin 0 -> 444 bytes lang/python/es_MX/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/es_PR/LC_MESSAGES/python.mo | Bin 0 -> 449 bytes lang/python/es_PR/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/et/LC_MESSAGES/python.mo | Bin 0 -> 430 bytes lang/python/et/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/eu/LC_MESSAGES/python.mo | Bin 0 -> 428 bytes lang/python/eu/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/fa/LC_MESSAGES/python.mo | Bin 0 -> 422 bytes lang/python/fa/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/fi_FI/LC_MESSAGES/python.mo | Bin 0 -> 445 bytes lang/python/fi_FI/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/fr/LC_MESSAGES/python.mo | Bin 0 -> 427 bytes lang/python/fr/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/fr_CH/LC_MESSAGES/python.mo | Bin 0 -> 447 bytes lang/python/fr_CH/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/gl/LC_MESSAGES/python.mo | Bin 0 -> 430 bytes lang/python/gl/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/gu/LC_MESSAGES/python.mo | Bin 0 -> 430 bytes lang/python/gu/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/he/LC_MESSAGES/python.mo | Bin 0 -> 428 bytes lang/python/he/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/hi/LC_MESSAGES/python.mo | Bin 0 -> 427 bytes lang/python/hi/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/hr/LC_MESSAGES/python.mo | Bin 0 -> 818 bytes lang/python/hr/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/hu/LC_MESSAGES/python.mo | Bin 0 -> 431 bytes lang/python/hu/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/id/LC_MESSAGES/python.mo | Bin 0 -> 425 bytes lang/python/id/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/is/LC_MESSAGES/python.mo | Bin 0 -> 453 bytes lang/python/is/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/it_IT/LC_MESSAGES/python.mo | Bin 0 -> 443 bytes lang/python/it_IT/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/ja/LC_MESSAGES/python.mo | Bin 0 -> 734 bytes lang/python/ja/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/kk/LC_MESSAGES/python.mo | Bin 0 -> 421 bytes lang/python/kk/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/lo/LC_MESSAGES/python.mo | Bin 0 -> 418 bytes lang/python/lo/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/lt/LC_MESSAGES/python.mo | Bin 0 -> 788 bytes lang/python/lt/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/mr/LC_MESSAGES/python.mo | Bin 0 -> 429 bytes lang/python/mr/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/nb/LC_MESSAGES/python.mo | Bin 0 -> 439 bytes lang/python/nb/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/nl/LC_MESSAGES/python.mo | Bin 0 -> 666 bytes lang/python/nl/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/pl/LC_MESSAGES/python.mo | Bin 0 -> 574 bytes lang/python/pl/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/pl_PL/LC_MESSAGES/python.mo | Bin 0 -> 589 bytes lang/python/pl_PL/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/pt_BR/LC_MESSAGES/python.mo | Bin 0 -> 446 bytes lang/python/pt_BR/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/pt_PT/LC_MESSAGES/python.mo | Bin 0 -> 750 bytes lang/python/pt_PT/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ lang/python/ro/LC_MESSAGES/python.mo | Bin 0 -> 471 bytes lang/python/ro/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/ru/LC_MESSAGES/python.mo | Bin 0 -> 567 bytes lang/python/ru/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/sk/LC_MESSAGES/python.mo | Bin 0 -> 455 bytes lang/python/sk/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/sl/LC_MESSAGES/python.mo | Bin 0 -> 483 bytes lang/python/sl/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/sr/LC_MESSAGES/python.mo | Bin 0 -> 503 bytes lang/python/sr/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/sr@latin/LC_MESSAGES/python.mo | Bin 0 -> 523 bytes lang/python/sr@latin/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/sv/LC_MESSAGES/python.mo | Bin 0 -> 429 bytes lang/python/sv/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/th/LC_MESSAGES/python.mo | Bin 0 -> 419 bytes lang/python/th/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/tr_TR/LC_MESSAGES/python.mo | Bin 0 -> 437 bytes lang/python/tr_TR/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/uk/LC_MESSAGES/python.mo | Bin 0 -> 505 bytes lang/python/uk/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/ur/LC_MESSAGES/python.mo | Bin 0 -> 426 bytes lang/python/ur/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/uz/LC_MESSAGES/python.mo | Bin 0 -> 420 bytes lang/python/uz/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/zh_CN/LC_MESSAGES/python.mo | Bin 0 -> 436 bytes lang/python/zh_CN/LC_MESSAGES/python.po | 32 +++++++++++++++++++ lang/python/zh_TW/LC_MESSAGES/python.mo | Bin 0 -> 734 bytes lang/python/zh_TW/LC_MESSAGES/python.po | 35 +++++++++++++++++++++ 107 files changed, 1726 insertions(+), 8 deletions(-) create mode 100644 lang/python/ar/LC_MESSAGES/python.mo create mode 100644 lang/python/ar/LC_MESSAGES/python.po create mode 100644 lang/python/ast/LC_MESSAGES/python.mo create mode 100644 lang/python/ast/LC_MESSAGES/python.po create mode 100644 lang/python/bg/LC_MESSAGES/python.mo create mode 100644 lang/python/bg/LC_MESSAGES/python.po create mode 100644 lang/python/ca/LC_MESSAGES/python.mo create mode 100644 lang/python/ca/LC_MESSAGES/python.po create mode 100644 lang/python/cs_CZ/LC_MESSAGES/python.mo create mode 100644 lang/python/cs_CZ/LC_MESSAGES/python.po create mode 100644 lang/python/da/LC_MESSAGES/python.mo create mode 100644 lang/python/da/LC_MESSAGES/python.po create mode 100644 lang/python/de/LC_MESSAGES/python.mo create mode 100644 lang/python/de/LC_MESSAGES/python.po create mode 100644 lang/python/el/LC_MESSAGES/python.mo create mode 100644 lang/python/el/LC_MESSAGES/python.po create mode 100644 lang/python/en_GB/LC_MESSAGES/python.mo create mode 100644 lang/python/en_GB/LC_MESSAGES/python.po create mode 100644 lang/python/es/LC_MESSAGES/python.mo create mode 100644 lang/python/es/LC_MESSAGES/python.po create mode 100644 lang/python/es_ES/LC_MESSAGES/python.mo create mode 100644 lang/python/es_ES/LC_MESSAGES/python.po create mode 100644 lang/python/es_MX/LC_MESSAGES/python.mo create mode 100644 lang/python/es_MX/LC_MESSAGES/python.po create mode 100644 lang/python/es_PR/LC_MESSAGES/python.mo create mode 100644 lang/python/es_PR/LC_MESSAGES/python.po create mode 100644 lang/python/et/LC_MESSAGES/python.mo create mode 100644 lang/python/et/LC_MESSAGES/python.po create mode 100644 lang/python/eu/LC_MESSAGES/python.mo create mode 100644 lang/python/eu/LC_MESSAGES/python.po create mode 100644 lang/python/fa/LC_MESSAGES/python.mo create mode 100644 lang/python/fa/LC_MESSAGES/python.po create mode 100644 lang/python/fi_FI/LC_MESSAGES/python.mo create mode 100644 lang/python/fi_FI/LC_MESSAGES/python.po create mode 100644 lang/python/fr/LC_MESSAGES/python.mo create mode 100644 lang/python/fr/LC_MESSAGES/python.po create mode 100644 lang/python/fr_CH/LC_MESSAGES/python.mo create mode 100644 lang/python/fr_CH/LC_MESSAGES/python.po create mode 100644 lang/python/gl/LC_MESSAGES/python.mo create mode 100644 lang/python/gl/LC_MESSAGES/python.po create mode 100644 lang/python/gu/LC_MESSAGES/python.mo create mode 100644 lang/python/gu/LC_MESSAGES/python.po create mode 100644 lang/python/he/LC_MESSAGES/python.mo create mode 100644 lang/python/he/LC_MESSAGES/python.po create mode 100644 lang/python/hi/LC_MESSAGES/python.mo create mode 100644 lang/python/hi/LC_MESSAGES/python.po create mode 100644 lang/python/hr/LC_MESSAGES/python.mo create mode 100644 lang/python/hr/LC_MESSAGES/python.po create mode 100644 lang/python/hu/LC_MESSAGES/python.mo create mode 100644 lang/python/hu/LC_MESSAGES/python.po create mode 100644 lang/python/id/LC_MESSAGES/python.mo create mode 100644 lang/python/id/LC_MESSAGES/python.po create mode 100644 lang/python/is/LC_MESSAGES/python.mo create mode 100644 lang/python/is/LC_MESSAGES/python.po create mode 100644 lang/python/it_IT/LC_MESSAGES/python.mo create mode 100644 lang/python/it_IT/LC_MESSAGES/python.po create mode 100644 lang/python/ja/LC_MESSAGES/python.mo create mode 100644 lang/python/ja/LC_MESSAGES/python.po create mode 100644 lang/python/kk/LC_MESSAGES/python.mo create mode 100644 lang/python/kk/LC_MESSAGES/python.po create mode 100644 lang/python/lo/LC_MESSAGES/python.mo create mode 100644 lang/python/lo/LC_MESSAGES/python.po create mode 100644 lang/python/lt/LC_MESSAGES/python.mo create mode 100644 lang/python/lt/LC_MESSAGES/python.po create mode 100644 lang/python/mr/LC_MESSAGES/python.mo create mode 100644 lang/python/mr/LC_MESSAGES/python.po create mode 100644 lang/python/nb/LC_MESSAGES/python.mo create mode 100644 lang/python/nb/LC_MESSAGES/python.po create mode 100644 lang/python/nl/LC_MESSAGES/python.mo create mode 100644 lang/python/nl/LC_MESSAGES/python.po create mode 100644 lang/python/pl/LC_MESSAGES/python.mo create mode 100644 lang/python/pl/LC_MESSAGES/python.po create mode 100644 lang/python/pl_PL/LC_MESSAGES/python.mo create mode 100644 lang/python/pl_PL/LC_MESSAGES/python.po create mode 100644 lang/python/pt_BR/LC_MESSAGES/python.mo create mode 100644 lang/python/pt_BR/LC_MESSAGES/python.po create mode 100644 lang/python/pt_PT/LC_MESSAGES/python.mo create mode 100644 lang/python/pt_PT/LC_MESSAGES/python.po create mode 100644 lang/python/ro/LC_MESSAGES/python.mo create mode 100644 lang/python/ro/LC_MESSAGES/python.po create mode 100644 lang/python/ru/LC_MESSAGES/python.mo create mode 100644 lang/python/ru/LC_MESSAGES/python.po create mode 100644 lang/python/sk/LC_MESSAGES/python.mo create mode 100644 lang/python/sk/LC_MESSAGES/python.po create mode 100644 lang/python/sl/LC_MESSAGES/python.mo create mode 100644 lang/python/sl/LC_MESSAGES/python.po create mode 100644 lang/python/sr/LC_MESSAGES/python.mo create mode 100644 lang/python/sr/LC_MESSAGES/python.po create mode 100644 lang/python/sr@latin/LC_MESSAGES/python.mo create mode 100644 lang/python/sr@latin/LC_MESSAGES/python.po create mode 100644 lang/python/sv/LC_MESSAGES/python.mo create mode 100644 lang/python/sv/LC_MESSAGES/python.po create mode 100644 lang/python/th/LC_MESSAGES/python.mo create mode 100644 lang/python/th/LC_MESSAGES/python.po create mode 100644 lang/python/tr_TR/LC_MESSAGES/python.mo create mode 100644 lang/python/tr_TR/LC_MESSAGES/python.po create mode 100644 lang/python/uk/LC_MESSAGES/python.mo create mode 100644 lang/python/uk/LC_MESSAGES/python.po create mode 100644 lang/python/ur/LC_MESSAGES/python.mo create mode 100644 lang/python/ur/LC_MESSAGES/python.po create mode 100644 lang/python/uz/LC_MESSAGES/python.mo create mode 100644 lang/python/uz/LC_MESSAGES/python.po create mode 100644 lang/python/zh_CN/LC_MESSAGES/python.mo create mode 100644 lang/python/zh_CN/LC_MESSAGES/python.po create mode 100644 lang/python/zh_TW/LC_MESSAGES/python.mo create mode 100644 lang/python/zh_TW/LC_MESSAGES/python.po diff --git a/lang/python.pot b/lang/python.pot index a883baf9a..bc63235fd 100644 --- a/lang/python.pot +++ b/lang/python.pot @@ -1,11 +1,11 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-08-09 06:15-0400\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,20 +14,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" - #: src/modules/dummypython/main.py:39 msgid "Dummy python job." -msgstr "" +msgstr "Dummy python job." #: src/modules/dummypython/main.py:77 msgid "Dummy python step {}" -msgstr "" +msgstr "Dummy python step {}" #: src/modules/machineid/main.py:30 msgid "Generate machine-id." -msgstr "" +msgstr "Generate machine-id." #: src/modules/machineid/main.py:60 msgid "Done machineid" -msgstr "" - +msgstr "Done machineid" diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..e99aa6d4af8eeebcf107ea2eba172870abf26c2a GIT binary patch literal 511 zcmYk1!A=4(5QZ^&+M{O=b5Ntv?zVsk#cEbqkSH!eG|^jG3a)|frdtIb#7FWqd=_WL zfRp^`-+cc}r{B9fp9QQf)E;UdwT(JO5RyeGFhBx4n4nd z>$d}V3i=P7@ZRZ#1JW=`TBM{Yt>RFm?3~alp*5ftUMdq>rWAvuuRh{@%3tm|@cX12 zlBN$gA@6ohUc&ppxs!VGE+>i%l$>$!jU2`i9KBkbX591U^SNt{)LA@M3pYw;UL>b- zCXLEGiyfI)q_o03X}n{n+vx_I)tO73Mxw3KmJF6DZfe!Sdg)Zgx(?B+G?}vEanK^w zO)h_GtPBZsl#F6M;ZPmM)@duP4E}aRu9qCr, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ast/LC_MESSAGES/python.mo b/lang/python/ast/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..6603ed39c8e27662cc65d6c6a079dc8a910856f5 GIT binary patch literal 432 zcmYL^-%i3X6vi=nwM(zPsEHR4?b;#YDA~n?fs2kUI7#%bjxuJpZfVP(J&3R8v)HMD zFZrcy&Ua3~^L>8y)zUiATxhN|r&q0wWKUt!nzk~}WWL9zlB6sxU zPCc;j<}ZFYGomntBf+TBRXC=K5zxifJ;XM|1AzPFwg+(!V{L?Uw#}L;|GqcRox>o6 zV;4MzB=E1_!U%3#cBL4YgOMr4$O_FAb*5`=cUov8%nGF!2|nUn=eXif_% zm_$nVNYur+Zy_ob>KK6^c*pdXiH%Xo72^uVb)~~9wpXaiX~u^jSyLgIa$e&Jw2!{# zuN4!}<4L*9cuIi%ktt)!I1_r|C48s}sOprdW|&#kz%uU+dk~<57*W0vG>4N?6p{d5 W{XV7B9fH5B)8^pP0aj;dw0;299ec+B literal 0 HcmV?d00001 diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po new file mode 100644 index 000000000..84a0cab7d --- /dev/null +++ b/lang/python/ast/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/bg/LC_MESSAGES/python.mo b/lang/python/bg/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..634bd45a72954c46cb132181edd066caa2bc9ab3 GIT binary patch literal 431 zcmYL^O-{ow5QRao%91q;Be7@&j-66U>MD!=q$PqhQ3;h`=caBNlsJ*?(B>dqkF($a zYM=CJJeoJ-neU79uM@3P&86mAbEdh~G_p07F7|b7JO_oM_+YVu-Wo2MkZHjQ2#4dR z;mid~ck$u{b0Z8QI2Md5U4;{>7y%t@JwR+j+y}Tv?z#|nG1f-7V4rC-<=^+_4j0f5 z;A99M1LAu(@4?(Po+(c%nlKnKniDXpvV@A1a?si;RZ4=;Znra)pj@UKwm0JJPIJ>NZUZ<*K_7hEx}U{sfSS;h7Wl^IR>0K{7=Bva07G==uj z*L<~M0=hgd)+tX2uve)vW{fkT4_?DjO+Z;EOf|#IvIdrUf4GByRbqr$C1?hxg~%lV Xy!=h2(;0xjr_, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ca/LC_MESSAGES/python.mo b/lang/python/ca/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..5e54a0365d3b8506ac97b39b10f0ab3b5a6d67ca GIT binary patch literal 743 zcmY+C&2G~`5XToNLh=ELiVKLtAP%&GwVhB(a0ntKZiygG6hb9>o31y>R`%L>H%+68 zJ6yOSapZ&q5+@#jLtcS1&%!tjiMrBH|J~X7@Obv``r2nk>oReRXcAY5m?+i<;wtfx zxJG;-t`k2N`kVCI1;+l6t`nyh8M{gPiS!2PchWngGg5M6By5c+>J{tKnNZDJUx=a@>az6Wo}fe1L)Qp zFYCJ@?1#PAtc|S*OVzg-7%9@b!X*?^|Bb1u7Vh0ZltZf>F@B$%C9IjkU0;vNF$|(0aOl^ zb^ib3h(DhOG?JmTMKU*=Ldku&>>>bxPB$Ls81tPpPfP$hn;%WBT!pi3Z9~KD8k9Dx z4r?_bqQT9+z8fozFp!q@(FiQ8i@^_+u(O{+Aq^GHxeF_-5^D7Zgqr;-9OAq51m+uD H=62aX{NvRa literal 0 HcmV?d00001 diff --git a/lang/python/ca/LC_MESSAGES/python.po b/lang/python/ca/LC_MESSAGES/python.po new file mode 100644 index 000000000..a385a973e --- /dev/null +++ b/lang/python/ca/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Davidmp , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Davidmp , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Tasca de python fictícia." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Pas de python fitctici {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generació de l'id. de la màquina." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "ID de màquina fet" diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.mo b/lang/python/cs_CZ/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..2824218300e2e287b100e029eb9a8abf3cf1acc5 GIT binary patch literal 477 zcmYL_!A`d~`@IT!-bZMTRBi`8H$NEAyDN#tVIGD1z+HoJ>Z-@_;Hy?hq8 zYIKq>vpe(W-i7!*EP|iCmj5>2Qq^be=uZD8GSF<in1OE-91(bi%2(#5w5=Rv%FSO1SbDZ^hZEMMe zil1>~N9oduc*2)lqH?rxP)?Q7y6Z&h(VsdMYtSDA|J%4Wwft0Q6q=0l%nYw_qn#|_ zv1mcG;8LOX?#Ery_}3M$J) z#o&7sYnZGgPe?bFOT|EB-&f@wx8UdKm4)ZI6}SKj49eo%t3s&+;>@cRMb{LoEo, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..22534de136e20bf568360f57fa951324d5da145c GIT binary patch literal 725 zcmZXS&2G~`5XTJ^A^Ctr#gW5uYX$3%P)gVkM2MXdL7FIpN^slSQ+tcOYwd1GBg7TK z10cZ*aDWp}01~gjnP*|#q^TlC`su%G&xgk|e>XQiIcS%W8%Ts)K?)E%hhrj|-0T2Xzy9e{tdW1-173zSLi+=;oj}8%SNRwo41a!b$=ud6EkWB6Xr^ zS;wTi(lNXdb(W>y%eXV9gCUJN zVL*}xYu86v$wlEMs(g6+v@V9rY|1mB z6W}Ey5tqW`WGlC}GR*g9vzce>Nr2)1uwY<<6Dd{ej^BWLqFyIwmaw#;`7c! zFL1j`T9EjC^9mcaaAN(c;6k=Yl5=gqwqHzow0Z7VmpTGXW0|N_$c&NZp|I}R?@sCC zIm78>VC!UFH7B8Wchv+VDR)Q3RP%!Nlr9Y;vO2w*cB4fW$M%*aH`^rKZn;kH_g9^Y f4CilNEdaGz$khUXt{31e)N}p;H1*GL literal 0 HcmV?d00001 diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po new file mode 100644 index 000000000..c869e1245 --- /dev/null +++ b/lang/python/da/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# scootergrisen , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: scootergrisen , 2017\n" +"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Dummy python-job." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Dummy python-trin {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generere maskine-id." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Færdig maskine-id" diff --git a/lang/python/de/LC_MESSAGES/python.mo b/lang/python/de/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..92d88a40e28c29e62255cddaf3a8e0f1e857677e GIT binary patch literal 428 zcmYL^!A^rf5Qa5+;^^7Kns{iV3rnq)Zo>gvT8UCf#U^@NVM;NukY#JjgZO$ri;J4} zPrl4f=AYS_@3YgdBc)@-x#CiBqPSMHvJ^rUhbp$7y+TobKrFGB;3bGUD>+4>Gk$bt zE?T;aXD^s*VG!Z5047xxPnZOXdc?fL#KL5V$bjDTG3gVcjCcW`Sv%$5_v$(e><4(_ zpof6^-ql+$ceN+R(+x`jN5Be-W*`d2QD-e>Ra3**ZnwG=jMv!;c6wYEM$B?nFafn8 zRYz^~2pO100!CN!J>Na7Zt6rEms|puIBF`jsf3+0s+?tfgyJ<5HAwp6jeNl-?dS)8zj@dI literal 0 HcmV?d00001 diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po new file mode 100644 index 000000000..880f4fb5e --- /dev/null +++ b/lang/python/de/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/el/LC_MESSAGES/python.mo b/lang/python/el/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..bbfb33004ecece45205580876d19ce67058725cc GIT binary patch literal 427 zcmYL^!A^rf5Qb~?#L=^dHSy3!7nWKp-G&3Uv=XI|icR#k(kVq@!DVa9gZO$ri;Eij zCtqeK^Uv(e*YVM3OX)yyqBv6=DlQa_EXBJj4peMB{|ZI%3bDlA5-&hhX~8K9oza~$ zb-RKiXgWyVrIMDd!53Z(rQO|Z51HD9ej zV3)_mGUW+H)=Mh2DR2<#*d@NHDJts(WHU@JYh>zI|2I$snHFXn!7@B4L|#$E%b&Ee SyF>K*wA&n=+Q{q-wbnQH40(G1 literal 0 HcmV?d00001 diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po new file mode 100644 index 000000000..d8305fcd2 --- /dev/null +++ b/lang/python/el/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/en_GB/LC_MESSAGES/python.mo b/lang/python/en_GB/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..79b2366b4e30c08902d3f38f362c6f983d86fab7 GIT binary patch literal 452 zcmYL_O-{ow5QRao%91sUL1NJgoH(UGan(hC(h`-DsH8}+K_(f}pu~x6m$p}6&-FM9 z4j_2aC)=8*H#7b`*#Fou+BF;+jtzT;Q$wwe;oTIk%vpQ>6w2}yV@>>o+@n-kDHw$P z;j};T;NF|x`N6Ff1`!!b0Zyk<9Tet5be`4_<#x zW&s)X;W}V5|Ku^a^{g8%(iKmUM92#Uo=EddEupaxnZ^XBnMjkeXhLJDb)}f&tk-K> zODLcsVg_Q+dCs&oL4neIK|%&w2Gur2U5DA#7F_%M nZ!-qpqgY|Sk~}BlQWlDVsJ@@7*XqL0wbu}E)C0HKwRXM$oacfE literal 0 HcmV?d00001 diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po new file mode 100644 index 000000000..5cdc212e5 --- /dev/null +++ b/lang/python/en_GB/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es/LC_MESSAGES/python.mo b/lang/python/es/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..b09564123a95c1d23c835bf8f4572a05a016a9c2 GIT binary patch literal 429 zcmYL^&rZTX5XLcj>d~`@HSqw^ZMTS6mT;(0u+h>6Dv93KGC)ncZFU!-58~_jEN<1n zm;5q2nQ!OM_xagZL+eCyp}EqWYHl>O9F5e)o{qKWphy%SkSOdg@dAWQ3ro7nf5IGFSh>C)Q{CLKbw5zpW=t-JjDUOjh)gAk8g z^cd2>zkUm+p7G51ddt>;V_-Q&^OEsYZcuZhR4J)t?RGm;3C3l*g1wm(xs|YtQ>EHX&Wx(rL>G{J=ZzZkxmy7F+>WIIc>)s)D_;%8aGFkCF`&64c-&9%JX|t4FOs zV2>xoGUaQEocB~26W}29xl8;|QB+oIP<1o2tdMQq9j>4Vq!DFX!7@B9L@p`fqn S?LPW@4w@WY4v^jI8;u_, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es_ES/LC_MESSAGES/python.mo b/lang/python/es_ES/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..6a5cf2cc1479d78a13943b574e7a2b5ea554e562 GIT binary patch literal 443 zcmYL^&rZTX5XLon>d~`@G4TM=ZMTRBOE@4DBw9)UN%UgYGL)Kj+w3j^M<2r1^I6=Y zfk}SZ*~~Y8zMr$x?;{h(hI7NE;lyxlD57roGR1~@3(Y=8GW)<#lfj(KP^vf+3`XtF zW4rIc%o|Sz!O$87Q__*hwW*RW*T|qk-8(|-gf@WI*iDttDy2q9#`qZ*Q~q@?UVBXZ zfOOmN5HNpm^%@L4>xqkK#UmtB-E~!k_#0taASvA z>V!PuDVL}mZCaI6p|s{YsNTGZQ?~qp?;UKoHnlpL&?q#SZgX?B#*KFJ#4Kq-xa3ly zZaq(Xq<+v9+ZHH^C&FwVi-}V0z%4heqhHn`e%k;5 literal 0 HcmV?d00001 diff --git a/lang/python/es_ES/LC_MESSAGES/python.po b/lang/python/es_ES/LC_MESSAGES/python.po new file mode 100644 index 000000000..cb2e1e05d --- /dev/null +++ b/lang/python/es_ES/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/calamares/teams/20061/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es_MX/LC_MESSAGES/python.mo b/lang/python/es_MX/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..7f66467e83f31701b41ac2c17efcdbff47c5d8b5 GIT binary patch literal 444 zcmYL^!A`d~`@G4TM=ZMTRBOE@4DBwE@)CF;ejWq=ykHoJ?!)pzjqd=|H8 z;7`8nZswoa`F~DNz6(Z2hBL#3;n;9x$W=3ZnPT0Xxo59XrXLt<(w~qqN|mI7LD*_P zw0a(lz2T@I46HDSNLwP;rb;?oBZD$^ZwajtS_fKX*A+r5lo}%$;%Aai`S-nets(IP z(rLkc!2JH@YcTMvM=oY7K0^{AUoseFTqJ4^MISdwoR*+C*E&, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/es_PR/LC_MESSAGES/python.mo b/lang/python/es_PR/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..f52688188c7f9161235d90f8b1aa7fdb3b8c5a27 GIT binary patch literal 449 zcmYL^(N4lJ6oxf=wM(zPI3`{|v|ERWP{IYmK%%f^OcK2@bsS)3bW2+Vp1>#Y^?VjP zH1H>1+UETEd;XuZ)9)jrW5c=O(r{w9HWaEGzRa*;&cd@-AhQpQH5p9F1f@zc!60aN z9@~8nCSEum_#-RuBhrz`wV9GG*T|qk-8(|-gf@WI*iDttDy7CqLi|jMlz-og*AB_h zC*3wY_-r`1di6)1^~A+|#pg&OI}jp&dN|)Xq_wOIP3M=){+aA z%y47J+0u!5%9mWCa!5lILZ@sE2Se{r#Z3qu`cKLImO;Lqqb|bid<(99yRXGy jw~7^{E6G#R%j8lq5c%$@T9qdJU0Wpq7cFqhP3!0v7hr)V literal 0 HcmV?d00001 diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po new file mode 100644 index 000000000..02fbd7c6e --- /dev/null +++ b/lang/python/es_PR/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: es_PR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/et/LC_MESSAGES/python.mo b/lang/python/et/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..ecb678aba0db77cdc0ff7bb38bd353d1c59908e8 GIT binary patch literal 430 zcmYL^!A`d~`@HSqw^ZMTS6mh^y7u+dV2NTRp345fx{o83X+L3}-*#jP6n zlP|NA`Db?K`|R}V$mrN`Zn!j@7_JSKJOi3y+r-MV*H{%FkRT1`bOuUih2&)1?LBsf z0htAp=P({w<9JGY3Iv)e?F$4>8qB?;%%iMLSc~5@DQhxjjC2B@SvBR~_ZoC3G>U1z zOCDk#g;#I!D6pP{OxGd>It7t)5@;-BCM2mX5lhV-XS3PZsD#wn0=9Niuli~M ziUu+%=9x@6@!m7Eh9E(id*}3i$4R+M0jptlxg)N9yFY^yKx@2OE3u-3LgkthS^lQl TZ*<7t)2~T#;S;ysv5tNKy%c)k literal 0 HcmV?d00001 diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po new file mode 100644 index 000000000..1a8abd0d8 --- /dev/null +++ b/lang/python/et/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/eu/LC_MESSAGES/python.mo b/lang/python/eu/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..14aebbea7f966038429c7aa83f62ae0c51fd10f5 GIT binary patch literal 428 zcmYL^&rZTX5XLon>d~`@HSqw^ZMTS6mT=%t!A46PtR#9{%TQ|Qw(f3)K8Ua9v$$0Q zU-HZBWWJf5`93@SI?_7UoNF#MCz@+bEk`4Cv8!Y4*(((JJH!fmOS}Lf)0|Tj4n_}y zsf!lw{K*SuMi@kRB!DSh#bc&`q8735FmW*HBGREZZA{vPXd|A(XIfAB_r17-IralQ z9-#Yx`rg%RFmsJZ#*>mIfFocTMMEY(N7kD;!mY-c-R(S;dB>yocg76B1PaIhtVS;H$q{ zfxs@0^JU5tik!Dp8B^dO^tDSotSBm~1XMlDEGlH1xBDX~g3<^#rC=L8$wek9;>B+& T`>h`Od-fX~UG$ON>={Qtl|gy| literal 0 HcmV?d00001 diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po new file mode 100644 index 000000000..2d936f113 --- /dev/null +++ b/lang/python/eu/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fa/LC_MESSAGES/python.mo b/lang/python/fa/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..dc17915b0d8d7f44cd935f91fb4f07f4c870e1be GIT binary patch literal 422 zcmYL^K~IA)6vt=u#L=^d9z1BYw9GkKmmP3plPH5sT%xzi9t;D8l+KM0;@9)DSk!F) zdsu>~M?bcM1i#khSXU1hgVxIGYOQ?y` zUux2&v~Q7wlS{+*eD^TBWm02Y3I#&psHya*3U-QAInTrp#cM8WP@|Vdb zSH$Hi6DdRXd!~#T2#|W+6~1p6s+ts3+sv#QWSO`7Ef`9;5#}4ob383&Q8Of}-)B9t MhUo7)qC=ze1GnmU=Kufz literal 0 HcmV?d00001 diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po new file mode 100644 index 000000000..971f8bdf7 --- /dev/null +++ b/lang/python/fa/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fi_FI/LC_MESSAGES/python.mo b/lang/python/fi_FI/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..9e0d83f6b5fa202d2c1e1f8f2ed509f3ab1fcc8d GIT binary patch literal 445 zcmYL^K~KUk6vr`o+R?LzXW{{(T{}dCk{u8RE(#-vBziG*D^N4Kr7Z$yKZ9S-&tiuL z{>d+W&HMND{eMnRzDrg|mNUzR<=Ap%Db%oh*=Ez8g=epk%075(P?(@8S6XC}!l>PO zX!iq{2IHqN8aktBf;x&bW4ox!45v^f-Yp^xM4CYA^ty&fjSy=@WBw_MDgVBgpgl%| z2zA?VAJIX0`5Fxa=aI?zip@EiaJHn-6H*GjfU+%8CX))37slk8V!U3jU89)PV#YUa zoGo$8QnqA@Yi#UejjM#zJv, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fr/LC_MESSAGES/python.mo b/lang/python/fr/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..0d4650d3305b4d4e82aba24279cf41c31006464b GIT binary patch literal 427 zcmYL^!A`d~`@J$QiVwp&CjOE9TWu+h>6D~aCLGA%Xjwr&@p58~_jEN<1n zpM05}%s;a;-=`;EEu|yHnc`e=thiJ(vJ@YxI8d?i>=lUO9U_U{6<&g<(t=YI*y9I# z=Afmscyj%@7Wg3^3t&=J@q|gBs7uTnOe{6nKo1YeJ_r^z@CpM zHoEtz=U%+}b4Pn*JlU`Wa0o1?Xexk5Yt&v#Syt3Aw%e^P1>;p3!%mNi+=y7lawecM zr0S@QE+Ku>h=tM7JlAs$tD8E}#s!zaB@XLSZ7N|WjWS~?AEIc@L zAh5%uVwLiQBI_-c+6*`db?pk@)fAO=0-`ZF#X<|RjbIs`79y`G;^l8z Tjk-hh_Z+o3x, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/fr_CH/LC_MESSAGES/python.mo b/lang/python/fr_CH/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..f669949fe3b7b63ab8fa9e77f53b648f14834e6a GIT binary patch literal 447 zcmYL^&rZTX5XLon>d~`@Ie38Rwp&DmC79Gw{zRb!kVG$LEkmhkx6O7D@a`k{dOnL= zH1H+A>~7|p+4+9XPQQ<|jy30+3(bkiw=`O?LPJ`2xYBbmNqph$mCW+?M06%0m> z``~mvn0ez#-ya$ye@a}5Ttx~FuWQ-qCG3DR)>^WmH z@JZW&p3esT%NKv>8IN3qD;^@5B2O4}B#K}OrO7%{pD1H4=4B`?mCABvS?l%MRFaE4 zTHwYE(!>gQ%o8p#x0LSBtqP?z+giw1w`Y}&L4V*Kve+gy+*BwOicGheUR~ivSy{{@ z(S%^hWsa)#H0_Z3!B_mYKuJ6ir1MCG4C-%@GP)>G>iBbVzh#hZLsZ2uGuwh~-t1E` j*sWrW;+5nv>7+8r8HjB6%v+Tv{9Rim0e4`Ro5s;EIl+Lz literal 0 HcmV?d00001 diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po new file mode 100644 index 000000000..d9c44de97 --- /dev/null +++ b/lang/python/fr_CH/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/gl/LC_MESSAGES/python.mo b/lang/python/gl/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..3548ce7630aab6cecb3fc9d23d8207055c4fa38f GIT binary patch literal 430 zcmYL^QBT4!5XUw8v`3$PsEH2{?b;#YDA@zTz(vOvoFw{IM;SF+x3opr2l4CqS?tun zKl$Z)x&K}7zRym-j*N~C=Y~teiQ(GN$TetF?3>tl_KIcs!BP!_C0sD6cqs^ohoi^g z)CUWH{v1RzD~=L4l8kCog=4B20UhkzLF_`@2e?OWx)66UHbyvSpS+p!?|b!!a~MW& zJOmFB34^P*Xy#i_RAd{PF_i5xnb0t)E3>O+JB_NGaxnnuno7mA_mWJYd+;@1 zt(b(qNXsP`83FD)*VdE?Ce6J|cwZAx)fv;xFuSUOW8d!2ARx=FINwN`!$~O%MS!S& UQ{{CA;P2_R1i0{k(;iqyKaq!etN;K2 literal 0 HcmV?d00001 diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po new file mode 100644 index 000000000..0cf1bd849 --- /dev/null +++ b/lang/python/gl/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/gu/LC_MESSAGES/python.mo b/lang/python/gu/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..191607183c8cf3e8d1f5ffdb71ceeef92912d415 GIT binary patch literal 430 zcmYL^K~KUk9K|tu+R?Lzns|U{w+<0U$qo|+E;_d0B+*+Pf5r&wmaY@_LHv4t7CSZY zl3&{9|N8p+eSY@UQaVvwD6SNziW@~EOCi;8pw`B7P$=>Z#1eZ;yZ}+AIj1OeMo-Sv zMGJTS;srA;3?e)dz@(buF_S=1mzejMSeOhD>C@XDCOtxw5zpZ>ZBqVyZ>}@Pet^dg zdJL%VUB3r2S9@kWsaOIy0+vxUtu{=kbktr;S(MZ;cDtP}1>R=t`4GixCQ6X@Yc#>u(bqh+ z0)br~=gX8Q6j>js)TY2e6@w*ys3|Jy1Y{GY7d0~VyTdmqN-8bfR)THuBo|pp5ifp^ UrQIE(zpdTo=+Z`JXQ;J)0JdLx-2eap literal 0 HcmV?d00001 diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po new file mode 100644 index 000000000..d0935dd8c --- /dev/null +++ b/lang/python/gu/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..baa87e8d36a63d9c888f8de1a9b22d00109fbb7d GIT binary patch literal 428 zcmYL^!A`d~`@HSqw^ZMTRBOM0kKpiyXpl|*k#8QPk5+iVw0AH>)5S=_3D zKlw5{nSW+yzAw(dPLxg+mx^n}nc`N_sIL&JI8d?i9OR4q144=24PJpLlbloJ+oLCY z>Y$agd~v;n=6eAi31CuH@t8@Vs6)&LO!}A%5b4poE+$<LnxyVY2c=4N- TR%eL*o>q&aD+`(Jp?2~Eh4^{n literal 0 HcmV?d00001 diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po new file mode 100644 index 000000000..3eeefa131 --- /dev/null +++ b/lang/python/he/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/hi/LC_MESSAGES/python.mo b/lang/python/hi/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..4a53bc6b4659748c5093067e5786731da76f2be4 GIT binary patch literal 427 zcmYL^!A^rf5Qa5+;^^7Kns{iV3rnq)Zo>gv+7hLZicR#k!WP!Rg3H#H2l4fM78f<` zpM05}%s;a;-)E;^M@q+vbH%0NL~*TXWhp*Xaj0VJ*((&~JB=mu61bwGW+lfUbjA

pRAqo?|X5bCG-P0 zalkylzIXK+EL`o8@N`2`3L{Di4Cag{40JLns~Q`|cDvQ3AiQR4y3^ybFk+IEf(Tk0 zQZ>{@521l+WX$MlzURA#%}pI?, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/hr/LC_MESSAGES/python.mo b/lang/python/hr/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..e26813c8b3bd2fba08c20c3f36f18cb9cdc28d9f GIT binary patch literal 818 zcmZ8f!EVz)5M5{yk`G8A1QOyf9H?5s+Uqow;MRqZq$O(8L?u+Bx2>~HoY=e8deb(d zoPh&JB(7Zf2`=Re;LIoR35eOGNd+T4&CbkwGduSFx-tKWpj|=SMN|=25edTDd&D)w z2gG&6XT(j!*K_|3{hv#O{6v2T@#FHO{u})*jOXSExovCckw!30<`H(DHB3*es-%FF zN4;2zxI?PLG#x=UGCd`suMXUQGr18Nym?DDg%p~bnUcmGm$bC%i^$M=hwcfT$4Um! zDp$73n>E<0?Y^uxcbrzUO)FY(gH>9^4gnOH|Cq88Wlw;u1j|Lrii{zV?uw(>b~)$0 zu9bIbqe-h}c+m_R^#}XSotm@Fb3@yj%RJ#m=>WFXkyfxZ?1&^jdk1TYjoraGj-IKZ zNt7D6kxJJejz?n$*&Xt(pl!j^04iGH?YM-+o-tV-c;4~xv1{yv_)wf!r5Evpr(BEN zGpNbE0%I$_*VEpT)2KIU7wh{jb1F(2A@P!<47WAn#CTc4W4Q`ZkLz5R@Kt+*mM(a9 z)S=L{CL`5}WjBD*L2R7qH}BBrqX2(VR~XyO%|_t6k7jEG(9=#U8ET%;4W-jO0GW-$ zJX~Id$uX4oeHMm3EG&RMvU{QL!&6{@Y>d~#!nCv&7VU9yOk49AoSsf3$YD#U@ljJ) zb;v$H(%-)bsi13LM~rLq1=OpQleWl>jHk~kQ#n`ef60N;d@y@jDDI;aG(Y<|l=!t> F@)xl-<|P0C literal 0 HcmV?d00001 diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po new file mode 100644 index 000000000..fe39875e9 --- /dev/null +++ b/lang/python/hr/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Lovro Kudelić , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Lovro Kudelić , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Testni python posao." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Testni python korak {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generiraj ID računala." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Završeno generiranje ID-a" diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..28d114b72affdc5de7b3def6eae88280df290821 GIT binary patch literal 431 zcmYL^!A^rf5Qb~?#L=^dHSy3!7nWKp-G&3Uv?WR*6`Sa7rCY$jLUtEh9>mx4SzOe# zfAVE^GXKoZe4n3vb(BsN7m6#zsp3Y_%2L#-I8w3o92D~MgT@ki8@Q%iWF^BObS96^ z+y!fQ_3Q;pEes+!;gm>Kg;OFa27P4SLu5fT0%(YD2M`SqQbxFVQRneee1$Si0I1VM$FA3L{Di3>Gy@2+s%u-Bij-V8ht$cDm$*iEK;vdR!JpOmb2X zPK6;=lQ8-S4NW7hjh^OvzI)u>)R8tRnWRj@sHxPllJ2EZNgd3e+>Sfc9(%m8<@SZ*7*TL1A9gQ literal 0 HcmV?d00001 diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po new file mode 100644 index 000000000..ffeff950c --- /dev/null +++ b/lang/python/hu/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/id/LC_MESSAGES/python.mo b/lang/python/id/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..435b2ccfd8744cb42ff3cbe388378932454fe9aa GIT binary patch literal 425 zcmYL^!A`d~`@J$TUQwp&CjOE^?0*l1~kl|*lAJCrrBZFU!-58~_jEN<1n zpM05}%s;a;-=`;EEu$mDnc>`UY`8Ww@(iUZ_DpO%dnK~`fK1~s$8(U1mx7|iA3pk% z0L_Eha~MypBu?>A0@J37M@$1nZQ|Zx;$hN5q)Tr)m~;p+Mm&R0-c0%Ty$1daM=>7x z=pm+2c=Z-f1M7*2V#5l+DX=v~p~y=CiZg*OmReVeI?i^xwY6kI@dfPctXw-8Td_5h zpd4+wl+z}p>pDDlF0Ckxg2Vc*O{`%lGzg8;x-#2p*lDL)F)sQjTQaFY4_?wS_71-0 zs|83Lh^)-HC@AvYxwa-CK$?qld|y*k)dlEgm|fM#wQu)_P{ea9S#2a+;c+R~iXu_{ PrfT5!(cg1G`c~@)TETiO literal 0 HcmV?d00001 diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po new file mode 100644 index 000000000..de39a8e65 --- /dev/null +++ b/lang/python/id/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/is/LC_MESSAGES/python.mo b/lang/python/is/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..e744294681a423727a5fba8515ac5b8d0d567a17 GIT binary patch literal 453 zcmYL^-%i3X6vi=nwM(zPI3}7vv|ES&pkx;a0~ehmI7#%bjsw(;ZfUDX;v0DF>-j8p zV)RRXX}_GWr{{d_?tIp)wk&&=1IxDM*ixxw`LM;dJ*&*0Myhzm%#dhGCaAP1B!f}6 zcikO^FbT(ZQF7~yl9coma$~Ec&kZtYQvZU`7NKpR=j`N^&{Ilnkc{zFR9${^4`Fvq z;)L|OaFwt)I(kfQL+6Ie`3s*TNs%uZL>cB>PDKXwg)yaOp0`@9T%)+uVuo*SRxG`Y z=X}W(YR}k5+G|pJ?t4Oe4JVG`@PB&WrB1Jq2BjhCy0pU@d^28|b0IsBEx6KXg8Otp zTK~D~s~IX1%B+|QIcLy%62=*#L}eGAlFK!Nay>^=HFL`~`0m-?9t?zbM)`~4IT;jc ksTs)f$LgTjfz36jOE?6d!hQfgyuZW7QV6W~8y%9^w*UYD literal 0 HcmV?d00001 diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po new file mode 100644 index 000000000..c9751618e --- /dev/null +++ b/lang/python/is/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/it_IT/LC_MESSAGES/python.mo b/lang/python/it_IT/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..affb97e749f281306303c1366aef86d4a3c99821 GIT binary patch literal 443 zcmYL^K~KUk6vr`o+R?LzXW{{(-8w`ZB|9JtTy$)~Nun21M;S9)w{%6=(GTI*^Rw8Y zfq(K#U-SNbegB`+lkbMok>X5op*U7tDQa1YFV*a+v-a#2i2Q>^61fXBXQE7UP9PWz z9|jW#=FaTN^`~0khiE7mm8y$IR5Ai>Y~CVlA>0GpCD$Esfuf3;tcU4E1*U$p4@6+MiWa16 eK~pr&MOG5v#qL_#?LPdKc9X-o4Q8vaHGTopB!1%n literal 0 HcmV?d00001 diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po new file mode 100644 index 000000000..8ef45f3e2 --- /dev/null +++ b/lang/python/it_IT/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ja/LC_MESSAGES/python.mo b/lang/python/ja/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..ce4a0eddd01241b7b05ab6a7ab279e691035e18d GIT binary patch literal 734 zcmZ{izi-n(6vqt|A$dRoF)%RPSOjOEOMf~95fZlq$Pa~33AR_~CArkTv+N6Lgcw** zD={#D#DIjv$k3@15@Kd&W}(2p!E+N*b>K-KeeLu2z301kKQ7L_wJ6RKSBMI6j);gn zc8T-E9&v$qM_eL4P4z43!70o7PI{TxJ3aAzB+Y#XQ~gFtHjBiXBl3QEoS6tU)(Tk+ zVP7hg9jh{o<1tIdrmqzn=q=~uN@g%&&z@Tws4xXH%jB}-Sj|)qFf_c{;hUIdQY)V| zOXd5ejeua{10dSE|*%+eK*k|`30fiZ|`Mxnp=DY4_G;&PdMs{(>33cp- z5J3znX0D-}%v}&-*>eZrUbSo0T5x;@o+IqCRt6RQ={TV+8{9E&5`k0&7WN^{&=eoF z*ZJzPFK^Ywlm{x*9jSUgTiuez{&(;lerN2{oO)>TVoow, YEAR. +# +# Translators: +# Takefumi Nagata , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Takefumi Nagata , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Dummy python job." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Dummy python step {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "machine-id の生成" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "machineid作成の完了" diff --git a/lang/python/kk/LC_MESSAGES/python.mo b/lang/python/kk/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..4d7e1ade2d2e71ad4403377d108c268ab9680671 GIT binary patch literal 421 zcmYL^!BWC75QcH|)T3t)Ie5^~G$|sMFdQlr>|kjJD>HhFC6wAW?Ib~{@8RqDET-zf zKl9CIXaC*oexIIvwX}{jXPR@(vF2LS$kt@K*weA`>=lagoy7`zOSoV{rX?pJbcR!B z;(~=cfAWHv5e5+)3PzQ#!Vy)BfHt=7Ahsdy0o)}w9f&&^Ya^VqkF=Tc?|X5bIrIZK za==4CeDCTtn7PIy<;jL73`UF=1Wf5C&DP*ztyComLfh@uRDyDuuGr3u%L2tTrv(*E zBBeVdYGd5BP?n)f!}ommu)1YpV_0&V&Cgm|4}pGH>@s5Rhd?m~RBl;kXoqB!E}H PsT^2+@b?_xzR~&tEM$0$ literal 0 HcmV?d00001 diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po new file mode 100644 index 000000000..238670585 --- /dev/null +++ b/lang/python/kk/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: kk\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/lo/LC_MESSAGES/python.mo b/lang/python/lo/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..d9e3440ea2a7ebda87675d986ec7aca508da29cd GIT binary patch literal 418 zcmYL^K~KUk6vr`o+R?Lz9z1CDtsNqc5)KmvE;6>@B+*+PWz39r>58xq;@9)D*r~yP z@=M#iUtZt)Iz9PpnH(9;4CjVp!?mG_Ygn6N&zy~ONUY>LPc;NfSa4P4Qcx6o!$)u8 zqlG_z3Zj`6M+poSXWCR@#5AX!iSp-J4V*su Ky$(p, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/lt/LC_MESSAGES/python.mo b/lang/python/lt/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..d242e9919144b8c696dfb5684e4892ec30c53dcf GIT binary patch literal 788 zcmY*X!EVz)5H(PQSpSYM~1WpWS3`JDCtAD zR)1OB3Sl?wy=rxK>~5z|>KSJStE7PrK9s5Vn9vHLPk^rbt80X=QHny+<42-!IoIul zwH|4ANTUWXI)1zL;7w;Iw6~cyq@OXVV`fz5Lt81>NR-n2S;9o@WclX9X%CdjVa|q} z^f^m>*cN7#Gbxyam60*2_FZ>89y_Km69@d*iB#f7EM^JIxONTR(r%g3bDh(;{a+yt-tO;Wkg6|D|fsjKVD*M9N z^UpgV&nG_qjUhLMnUhYya~>@Q@gX*LH_kH_lcvfN?So9GsSZ}FFgpe-^1erdz=P#w zD30`A;Cb*AD4-nk&7fSArZT$WQ8+o7>99acDD+TRE>&%-W@7Qyuz%L2iTUJ6%oip< fJ00Z82<=$2O0MUnvr`;TOQ9F*QwZl))BX7iY%<=H literal 0 HcmV?d00001 diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po new file mode 100644 index 000000000..f1dad7c93 --- /dev/null +++ b/lang/python/lt/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Moo , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Moo , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Fiktyvi python užduotis." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Fiktyvus python žingsnis {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Generuoti machine-id." + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Atlikta machineid" diff --git a/lang/python/mr/LC_MESSAGES/python.mo b/lang/python/mr/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..afb5fa103f8b66b28cdb4b8f65e99017d7544c0e GIT binary patch literal 429 zcmYL^(N4lJ6oxf=wM(zPsEHR4?badUDA~n?fs2kUI7#%bj>DK?-O?6e58~_jEOu(( zPrkG#=kGaxzt2v;j=ldh15$;91)hVDdC4h?z2T!b z@zLC$JqOX$h@%7#1u&(%c*GP?)FJjACJrWjM0)h5i%FLdZNxM9%$q6yzE|Iy;V{A@ z4?RRQ46fdysc$?no^4nLI005r6f(ioDo3rAQkA5ZwcTz_B^a0a5_V=<7FNpEtY8A9 zrSubNbqML%Rw1mm5eA`u$Zng&7?xZCS2(FF9aX_jS=E~5e1Osw6B3mBl8mu)@HMNJ zAh6HVa*^|lBIi9<#soO%WU#>ZHAPjOfog`CRgG-(cK-{C3Sq?SjbLj$E=3_J;?-{{ T-Od30UELN(7cR2f1LNoiBfola literal 0 HcmV?d00001 diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po new file mode 100644 index 000000000..82cbd894b --- /dev/null +++ b/lang/python/mr/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/nb/LC_MESSAGES/python.mo b/lang/python/nb/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..195b054a8a90e87c8c6bc474f44c3586e5731383 GIT binary patch literal 439 zcmYL^%}&BV6ooOm>e97~F>wLWX{U%-hOpqLAkk8Sl|*+#xs+-<(@Y1U3m?Nr@JW0R zpT(&fImws#x#!-Q^L2dmUeP+xoM_H8hnfpbDM$0Bi!HsDo_|fHc!p5n@eA7gV(s6^5=VW zyEE+hc+f>RKJ~`uPyWO;?ii0YECL(=ODUQNxrHcZ9QDLY`uUNd>RPERr, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/nl/LC_MESSAGES/python.mo b/lang/python/nl/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..08356ccdce94f019ef9047da278b995738b67aec GIT binary patch literal 666 zcmZXR&u-H|5XKiM7vK0Nao{lATEW^*C?$0ogh|{GL7FIpAP|?0J+)FQjzLt`N01ZO@~(D9aU8E1M|^Cu;7pe=^2m1s^}LK1$TW zB9tP|a)~@oTsGF~1Y^qw37?@hxsm~l!|wC2AHgh|yc~>j&wcOcx?WK1ERm&|BCzgYC@P$^@RbTrOQ( zo94%O=Ekb@Vo``vXf&Rs3&v~u{$9hAg}37j2g7L7al`eUu96ldeb=g@1}&ahuPQ_? z+Yo0$8?>EQ(?j0c)YVTNqvnx}Rg%jzfYv;>&hOux@TaSQrjnwq&D?4Q4fo-n9s-bs zGcFcd6#P)>(omvWZ%wD!hVx}-Tf*HAG, YEAR. +# +# Translators: +# Adriaan de Groot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Adriaan de Groot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Voorbeeld Python-taak" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Voorbeeld Python-stap {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Genereer machine-id" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..fd824c25b4a11dabb9d7d28b3f5644756e18d911 GIT binary patch literal 574 zcmYLE(N5bi6zw*i^0;Rn?xYR1VovN(SnHBjr39#;q$&kzyqVOrnNlaR-IYrG#(r<# zvg@vpD;@dzo^#K!|9;;4Q^Wdz*hhRtd_sIjxN0HxKGte&Je}sf#=7_=Q%i<3@*uUz z3dLdEA6)k@V|a)scf;h?8z)mT&{9}r$+@tSLrB>VLR*Bkfu8WACZSDAQAj58cjjDn zx}R}>LPiNW@55EXN5jL%n7$W#Z?h0sRY z=ze-ZT9wX4Jxfhul@_y1%{jE5GV5JRB{lwbM$R@I%FSF_XXck1VE*y@Cy>g$alXuA+!R4=8Y`t8a{UqYw@bz_q7Qv*G&foSw1}USGEa?J{I~ pz;H=@!TmQ;H=@-tYdHPR^thV0t2w5j>n;xS{@aFVd(`N7wSQkXm<|8{ literal 0 HcmV?d00001 diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po new file mode 100644 index 000000000..fe9d5e401 --- /dev/null +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pl_PL/LC_MESSAGES/python.mo b/lang/python/pl_PL/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..f690c1a4406b3e1c8436a7471d5eb1a2722bbf57 GIT binary patch literal 589 zcmYLE(QeZ)6fLl)Ji;pvcM?pEz=@r8qji@~rOQUOb%{!u1TV;>UYjX(BHN>@wBO+O z_!h29w_NGS_C4pGH3@yhz|CnSLFo*It&+$Vf|JktJusN)8cap9t*|+5>vb4?Bc*C`BQe%HM@^ z+3CI~!zr1ho>G-jz^`d$EvYCdCT#s3iT(8%G z)k2x#Rz3uIwF+}lij~mPgce6l7*Tr6!n*vKU4_0k8BdaC4Hi&uR4FT!C9_S9zqazh zqF5BF5BXAPBW?U`c22sD&ZXT-O%jz?^Fl2+bbl4ryO2t1+, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Polish (Poland) (https://www.transifex.com/calamares/teams/20061/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pt_BR/LC_MESSAGES/python.mo b/lang/python/pt_BR/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..cd60e9376af0b5e9afb3deccdf0104e486e80966 GIT binary patch literal 446 zcmYL^-%i3X6vj1rwM(zP=!F*$?bab8lwiW2fs4YHIZ5=!)NvRyTeq}DnAg67ujjMa zsezOH(l+1MbI$jDa{P6m>riv5Inx|zE;LoOHJ@7S=(FiC_x#zLImSKX@tVbeLtvSnmkYIy*B}Aa27-MgX&u#8N)?h?)@HLYm0(;Z zOW2xGo>>t~S;hoNOX=^@Y7o-0twOyF0;_IJ-Kn#WVw=Pm=3D_+I4ldjxq_{-ij*b1 zi=q`15>)Ro9OL%hS4~@jzz&b{MZ#l>+OLT+Ccr`H^b0&FDJsesRMpHZN@SZ?yHHxH iRx$i^Em(@jxyU3%y!d^}UZactuDu#ZH^{Dcje{S~Wq_0b literal 0 HcmV?d00001 diff --git a/lang/python/pt_BR/LC_MESSAGES/python.po b/lang/python/pt_BR/LC_MESSAGES/python.po new file mode 100644 index 000000000..043177ca3 --- /dev/null +++ b/lang/python/pt_BR/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/pt_PT/LC_MESSAGES/python.mo b/lang/python/pt_PT/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..24b9e0050793e574459478695afcce592f5931b0 GIT binary patch literal 750 zcmY+C%Wl&^6ow5HA$ftsZO7uUO9W#(rL@5zh>*A?f;3TTD!~R#?TIs$XU5EoNg~7^ z9sr3A3%2Z7ux3#S@c=9l&%$w2dKu}{KbJHAIdl1Yb>*Xj?ILm$=^>Yp9I4uSJ1$KM6LGyLB%i!#aThBd{w)!6ilon13{B1 zmyD-QuM}bd#llXNgnhN=ot-h374Y_*v&AIS)E@67JoTKBR{Jcmq@R*qrVUpzgi)va zw6hh#ZZzKM54YXXFeY8isKr&%Lx&JngT@94nk2Xn!FqUijRb2!fPrMp-tfxhDDFkn z8I!?~^g8fl7!LZkUk%0cW1di*D%j!T;5#$$U@j7+3x(yP*P~2O zo_mQB5APgiMgy6ZG-D)YRA9kM+cGPeVNhH4XYs6E?4G{DkII zP|b{Q(ZKktL9pKN3;Svm`*nBFA4Dg&(eMJdtE6QTYhDz1c+2M2FLKId3z8|-hS~P> zc#||w;;L*Drb#3dm2#Pd(A?wJ{r?0hdAtbm#WH3qGp|@c!@GBUEL^HeaYuQnX-+nk z7A6E)91cx;wFS#=yC&gQ8yfYN>%>e8E@?_neT*27IH7R*f8dK#W7L_s<>$~;15b%K K`0~0$Bj+C-_t};J literal 0 HcmV?d00001 diff --git a/lang/python/pt_PT/LC_MESSAGES/python.po b/lang/python/pt_PT/LC_MESSAGES/python.po new file mode 100644 index 000000000..c1212cda4 --- /dev/null +++ b/lang/python/pt_PT/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Ricardo Simões , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Ricardo Simões , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "Tarefa Dummy python." + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "Passo Dummy python {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "Gerar id-máquina" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "Terminada machineid" diff --git a/lang/python/ro/LC_MESSAGES/python.mo b/lang/python/ro/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..1ea26c4545fbbb5c2c5cf33afa943bf0e721f097 GIT binary patch literal 471 zcmYL^QBT4!5XUk4v`3$PsELv-+N}e`Q8Ed_K%!#{B8k4$QN|2wm#zpTd<`G{YJL_w zCGbyvxnAyn*Snw7ldqD}k>X5op*U7tD+)P^Z&hrlSa|jd1^=Ltgo7!ZP?0B`VGy=E zkL|t(Cf?|I5Dc|27{iXBM5-$65=k+rAo~^~2ciZ*bzH4MR6|G^;fQ`F#gv`z)oYKS zAHZ%KJOtPuT)hQDPkSOPUXqx?F(oMmBc2kL5C-(Qlv$1~YqeULQV^CWGrBe-o>~!E zkdz3TTT=DpRt2HDZ3%7}nm_Qp!}7L?v<_#IG6~07A}^8EMSj| zG{=Bte`)Sko8bTH>dbZR7Q(u&vr8MHJG)_Qx4Xo3kx?$|>|8~|XjQOn7)`D83yw{M AFaQ7m literal 0 HcmV?d00001 diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po new file mode 100644 index 000000000..b522e9a98 --- /dev/null +++ b/lang/python/ro/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ru/LC_MESSAGES/python.mo b/lang/python/ru/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..5d17edda174c5f4b79c6bb5e73d19ce022023e93 GIT binary patch literal 567 zcmYLE!A|2a5C!d?a^$>+SqTu;t`j>1Xx+M~lmHc!RHY!n&6}E%RqI5yL#f1X?Cj`ZXi&wFoX{%?K%w}G*V_<`6)d_(+3R8dE~VY7j6#aYF`;WJJ0~Nrzo>DxKmGQg%dWozMo*L%tso8c~WwGE~o5&e)YrUf)T1&a)@eS@^n^qGPv*RHrIo>R$K+(ep;%0mtIYgj0n9&GUBSVW-e6i9 zIVESgnOP3HSe8~qP54N~p59?p2nM^mP^I*zU<{6d0@AT=i}0(}5>b^d6|}`dczykl pv{_U`3Hy`?L95o1*A@qBd84-aM_(NCHM1qq;TS?R*snFcjdzKJm=OQ~ literal 0 HcmV?d00001 diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po new file mode 100644 index 000000000..47d9e207a --- /dev/null +++ b/lang/python/ru/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sk/LC_MESSAGES/python.mo b/lang/python/sk/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..a3a738a04653934fc67cfdeaa86a89f00652f990 GIT binary patch literal 455 zcmYL^&rZTX5XLon>d~`@IT!-bZMOvx7OO!h*eH|$lIU$M3slOs*SSG?xo59|NIqDokUvEeCS;Uw0)uAj zsoC{l;tfZB&^HFb7_|hWN@r1`91G2x@}^km2kzlLgOselPb1TRvOcYHy~V4A(?Vt#vN2U z`0}r2OdyYk$u#0~0=4%@8C}Mi(A!SYLq;IY=1k?y%rpbryxuQCKrW3zycRS@okXl8 p0iOOorCV;m-_i&l2c3p-^aBq+f2aTe literal 0 HcmV?d00001 diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po new file mode 100644 index 000000000..1ec7eaf9f --- /dev/null +++ b/lang/python/sk/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sl/LC_MESSAGES/python.mo b/lang/python/sl/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..c7c255e216e7635201c377443824f51164958806 GIT binary patch literal 483 zcmYL^&rZTX5XLon>d~`@IcS2>ZMT33OB#bvlqi${n&@pU1J;ynv%88UyoL|qOZhBL z{l_G~?0)&aot^pI+kM}n+9vji17e3bA&ROKA7nP@EHeK!)Y&t}mi4CW4z)=#C1BWU zU$-tpxC=+)UNmrq(S)@%N=q*5NQ(l>+&^Qy&UgcOO;oCkS2?F38{unGbotHQhpiFo zN37F=t4Q>F#}CmUbZ(@YzsNbV3Ce|lahkoNN~D6)leM`Kp0`{sU8|)s$qe7zI9qtJ zOyxpqG@hkL#w&AP^F5P#M^3-j4>!~ME_d3QvZySZta2LG;+ysIR3@qk@srdBZE!p3 zvic@hd^JPOLKSDzM9l@%9~0|bqC!mzPuayvK)#xzEt, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sr/LC_MESSAGES/python.mo b/lang/python/sr/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..28199759c394bb6489d8d98257bec6fed307e76a GIT binary patch literal 503 zcmYLE+fD*85Y_0@KKks#n5dCxcUwTk;%X3AC5lTBP4ulUBd&q&rY!=Azv1WjD}IZ! z-k9X1XL8P&&U~&czb{ZN5>^T8geAfbp{N?+gTw=R3(tRbO!k6_W34{BLu1oSOXxJ3 zmyPoX?xOBZE57zRagQ|(Dn}|iRSqSTx!7mC#`pp7Jz1$TUgeyOtc$N{G3D2HA2qtH z9kbI0T*R{7+J1Zn=W;89U^1Eb&M0luC!G38HVP6o zR3l~3296>&D099i0&9Yj*KW0=`R>B!UNh4UwPU?mPOCbcx*#8_RM#PSR>q|`b(pAFCz!~A>(!r%SBLV`73XE-)$$j&k| zvJ!Ou-P*8HhaVbl=?%fdP{8IU6qK)pLclR_AUpL(Vfjxw466nGPVhs);qC1wLLOeC MjG#=pRQDFX0AwzS!T, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sr@latin/LC_MESSAGES/python.mo b/lang/python/sr@latin/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..b3f1e8936efd1f53c141f955615343726b4bcace GIT binary patch literal 523 zcmYLET`vPc6eT?Eqh}9Sg0x|FXR4^FMb)CAwyBcvHnvx-Y-cw!LpAX?{4jsOZ*kY> zO-}B)x#!%EkA?ZS8H!oLB4L>@M_4D6(IC82bBA)N`HP;(A2D&PGi29jY?^Bcy;l3I zbrQjK)W7V+7hW$Ou(mm&AqPa_zhRQju&{e2BI9FI11e3|ccSdQO-s6j( zxQD|$unFch%53MJ)Bp%AbS97s;}URe8W?S}P|emVHA U;PCqTZ6OV>l1GrIR&9DSpNuGw?*IS* literal 0 HcmV?d00001 diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po new file mode 100644 index 000000000..d50b5d363 --- /dev/null +++ b/lang/python/sr@latin/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/sv/LC_MESSAGES/python.mo b/lang/python/sv/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..37c090f637ee898b459a6fefbb0b283738734388 GIT binary patch literal 429 zcmYL^!A`d~`@HSqw^X}5?7OE^?0NEAu{N%Xdsq13e7W_O|RAikc@;#Lj( z$(Py5{4+cAeR2MEVsvV_G+Z0b47Y|-O@lJUmWie3poz>rG1M?z!UCm=Gr`Ej>ppt} zpDg_8Y#5BKNic`5M6OL0dR!wTHR?V9Z31l(+F*Bepmj=(5vI6}%PIf9H{YAWD1e?v zo&q)+-n<86-+JL9+VBWrjyz>#R^T#LYf@Qjoh#-zMN!yVa-rfC?(8s2oscIyeSlg@7bvca@8SjwQZgJ06dv`mH+?% literal 0 HcmV?d00001 diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po new file mode 100644 index 000000000..6866b51a3 --- /dev/null +++ b/lang/python/sv/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/th/LC_MESSAGES/python.mo b/lang/python/th/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..3c787d07459c5708b1f64425c745df8ee4605ea0 GIT binary patch literal 419 zcmYL^&riZI6vr`o+R?Lz9z1BYYln!Vgu{e^i;gWgN%U4n*=n|KX^XHw#DCAf#ZC=; zlTY4zdEdMr-=`;E9it<|nc>`UY`8YGat+)x2PU?jy<%B?uvEif1(!@JUI_wXZ~W-Z ze6aKv&p|Y|;wXV*$*4A6IH8&m(8bOj#4f}Gfcxa82XPN$V}uL#$=fOazE|H{z%YUn z4?IL946fdyxo, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..f9d44a5b7ef30bce0c5340bafdc86df589e2245a GIT binary patch literal 437 zcmYL^&riZI6vr`o+R?Lz9y~y_YlnzX!ePQdqOfI761|u@9%DMXr7gnZ-{HUK-(sgm zUh+v_^SN`z3_hG&#b_Y@IV6BrizDL14B*fTw&V5w2Nq)U9>Q5QEG%Zg!iRId^!8>qh0x=@Ue?RINx$%RUnu(RWQ zO=6z$HJ6}>Hob~8DQ!DM%jYO04Qo1?dV3#^O|3yLGzg8OvM^_B*lAK^JQY0@ueem8 z`w!6wclNq!+Y%)9M4T^DkucPGNwqZw0n%7s;Omm1qD(+n!|b9&j(z#>$gHSNv4U(P Yd4@;1Tq}k|@$*%Er-y#iKJ8hxZ!NxlO8@`> literal 0 HcmV?d00001 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..16cf5be14 --- /dev/null +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..957835e0339b6573cdcaff8c4c3dec759f0bc7df GIT binary patch literal 505 zcmYLE+fKqj5Y^~YAAR;=Ow>Sh+g(6~g=!EA62%e(5`A0C0u|Uc+eIMZH~b#|#BXux zb&``glR0NDAA7rRTNvAjeZ(PR2XTr>qlkFNW(jku`HPN@USwcMYe)uCCt;*GbgH%6 zYSV*(*L`UD_g2U6k(!pmV3*W|ksNZAT@YF%v;_2==L>`uC`BRZ%GWTR@}qn7s$J6d zNxcd;K5w^9p8R{yx)W-=5MxPtQp`E@r&@$66bdpEW8#E6&T_f5jTR~iM{;Ec(cB5d zOw5IriDS@|I5|qsnX{NWS*zV@d;ixnn_9I<8L15Etz$ga$dz&88SW@UFcCVD#_jhS zr1-B(SB<15o(iI2sKy+M&!MrJQb~;u56ShKL%beKlMb`vH8A_^?+*@(snwY+w3v}b zq~{3-6@Qh9n=ivRbu;RSQP*W~d<-e22QFi91r$(@^`)EpZB^VtO1~Vm!YFJu-xk!+ NEP5Dva@n%A^$EqiikJWZ literal 0 HcmV?d00001 diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po new file mode 100644 index 000000000..e7ee3a4c7 --- /dev/null +++ b/lang/python/uk/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/ur/LC_MESSAGES/python.mo b/lang/python/ur/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..430ab38ead211adbd4707702355b547155385499 GIT binary patch literal 426 zcmYL^K~IA)6vt=u#L=^dnt0fvrDe{^x^TdaO`;4k*%G}~=okhHDaDNs;@9)DSk!F) z7NFa(27D?#FaLq)O7My^Fe+6QPN`%B^s#Xdu?g`A;32skKs>-$iEzn2)3(dM_v+Y7==pGJ zgGZlu?)96$aI|O2lbR+BhK%L}tVCRc?pDgOA_(nvJ6#IOt8~NmdQ{{nq8ZJpU=@=~U)rJY^ z@TiDWo)BQZr&60U&V<@Eh7Sz^Ws@-3Hq*-n82a5|1p;cJ1z9a<24{uHD*|}=`>d?~ R82nwWE(ezuFnVLH^8=Roc~}4d literal 0 HcmV?d00001 diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po new file mode 100644 index 000000000..67f5339c3 --- /dev/null +++ b/lang/python/ur/LC_MESSAGES/python.po @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/uz/LC_MESSAGES/python.mo b/lang/python/uz/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..32451102b783c954d2eda0cf25fba02dc9caea39 GIT binary patch literal 420 zcmYL^!A`d~`@J$TUQwp&CjOE^?0*l1~kg+y;l8A_3Eo9$L8@8RqDEN<1n zpM05}%s;a;-{)sv4W$#sh2m0is<>6uvJ`7o?5J3K4hlrJhDc&}foC9!B;ynXcK_KP zIcVlgUR{5z1%8P80+>`)JYW(iY7+AS6AP0LB5iut!lXrrGU5q*CiRqm-t|d7mpH6)wWx%hH1Z8gco#)0CJK$1!?+-UnRPME4Qwp}h!%U, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/zh_CN/LC_MESSAGES/python.mo b/lang/python/zh_CN/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..26080446fb1ae270cd5203dc817f6d4d789be616 GIT binary patch literal 436 zcmYL^K~KUk6vr`o+R?Lz9y~y_TZf3Fgu@&IiH;FO61|u@9%E+fmbM7vd-(PIEOuz% zpZwC-ynkQc|L6SdyQX!bxzJo{PBqt>N{(iyn;m^to`WVL|Aa{4(E`sw$Ry_!OcX6L7pr}dgJ4_r*I*7FCO$(D2A=-$i@Rd|k{(Y~$JH, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "" diff --git a/lang/python/zh_TW/LC_MESSAGES/python.mo b/lang/python/zh_TW/LC_MESSAGES/python.mo new file mode 100644 index 0000000000000000000000000000000000000000..d5f7287fea1a7aec4f782adf47ad14a4a4e6558d GIT binary patch literal 734 zcmZ9Kzi-n(6vq!JLh^vbFR?J(*b2@*r=g@yg9wS+21pYHQv?gTIv2;4eYSiT(twZv zA+<;h3?LyuVq#%nC_^X2%+AaLq5lT&(k2z0^wHNof8TreeDCMUsn-bBQQ#a<1&#p` zpw|{~9C!|#0NwznflvGT4RreuLO(!H0h@;rIt%&^^bF`1Q0@N?3N{3SrT|?}uOoW` zg%iPX%=~UBc-ThOUK|f_I#At2;Pqt9{C7txp5lj(&=MCsV`>sf!nTQ;S+dT3MQUxb z$}<@z!okgQ<$8I^#j9@XX05SeG#ehNWSlAZN~(~-!8vMQBD6s0Jf?HbY@X0OrC=m2 zem~S%_I-EUa*Na(q*}(y4X0i^f48yX8aJ3!#LJkF5mQO#;A_0o!OJ}+0=ys#vpG9& z=dT1Y3nSA{;>#CC^&m_HJr;1{aTYtcqT81oPkSuvGckjwyGo_fv8;Z-Zz`QW?C=ep z!SY$eVwQ1fDTtL;j?y{XdeFV+-L__odadprv~Qc#s3byh0f!u<(5>Pd%1R>^iX!&A zER$T7Zh4EOaNyI`Iy@t;@RN2Z0tXk?LS>Bqd7E4vIB-P)S2~%Q4zO)roOI;i(NT)0 literal 0 HcmV?d00001 diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po new file mode 100644 index 000000000..d1cce5c51 --- /dev/null +++ b/lang/python/zh_TW/LC_MESSAGES/python.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +# Translators: +# Jeff Huang , 2017 +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2017-08-09 06:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Jeff Huang , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/modules/dummypython/main.py:39 +msgid "Dummy python job." +msgstr "假的 python 工作。" + +#: src/modules/dummypython/main.py:77 +msgid "Dummy python step {}" +msgstr "假的 python step {}" + +#: src/modules/machineid/main.py:30 +msgid "Generate machine-id." +msgstr "生成 machine-id。" + +#: src/modules/machineid/main.py:60 +msgid "Done machineid" +msgstr "machineid 已完成" From 0378bee3974c8ac0f56aa14e380a214c82b406aa Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Tue, 15 Aug 2017 09:01:08 +0200 Subject: [PATCH 09/32] [core] Automatic merge of Transifex translations --- lang/calamares_de.ts | 26 ++++++++++++++------------ lang/calamares_id.ts | 2 +- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts index 783dbf454..5ec24e3f6 100644 --- a/lang/calamares_de.ts +++ b/lang/calamares_de.ts @@ -240,7 +240,7 @@ Ausgabe: Cancel installation without changing the system. - + Lösche die Installation ohne das System zu ändern. @@ -257,17 +257,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Yes - + &Ja &No - + &Nein &Close - + &Schließen @@ -292,12 +292,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. &Done - + &Erledigt The installation is complete. Close the installer. - + Die Installation ist abgeschlossen. Schließe das Installationsprogramm. @@ -553,7 +553,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. MiB - + MiB @@ -928,7 +928,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. MiB - + MiB @@ -1032,7 +1032,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <h1>Installation fehlgeschlagen</h1><br/>%1 wurde nicht auf deinem Computer installiert.<br/>Die Fehlermeldung lautet: %2. @@ -1837,7 +1837,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. The screen is too small to display the installer. - + Der Bildschirm ist zu klein um das Installationsprogramm anzuzeigen. @@ -2250,7 +2250,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Willkommen beim Calamares-Installationsprogramm für %1. @@ -2260,7 +2260,9 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + + +<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Danke an: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg und das <a href="https://www.transifex.com/calamares/calamares/">Calamares Übersetzungs-Team</a>.<br/><br/><a href="http://calamares.io/">Die Calamares Entwicklung wird gefördert von<br/><a href="http://www.blue-systems.com/"> Blue Systems</a> - Liberating Software. diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts index a400bfe4a..6437a17de 100644 --- a/lang/calamares_id.ts +++ b/lang/calamares_id.ts @@ -2262,7 +2262,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan. <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1<br/><strong>%2<br/>untuk %3</strong><br/><br/>Hak Cipta 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Hak Cipta 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan <a href="https://www.transifex.com/calamares/calamares/">regu penerjemah Calamares</a>.<br/><br/>Pengembangan <a href="http://calamares.io/">Calamares</a> disponsori oleh<br/> <a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. From 2cd4172d6ec7f88a17fb38b9e511770687c2b772 Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Tue, 15 Aug 2017 09:01:09 +0200 Subject: [PATCH 10/32] [desktop] Automatic merge of Transifex translations --- calamares.desktop | 48 +++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) diff --git a/calamares.desktop b/calamares.desktop index 129f82dd1..5a0834e3b 100644 --- a/calamares.desktop +++ b/calamares.desktop @@ -18,6 +18,10 @@ Name[ast]=Calamares Icon[ast]=calamares GenericName[ast]=Instalador del sistema Comment[ast]=Calamares — Instalador del sistema +Name[he]=קלמארס +Icon[he]=קלמארס +GenericName[he]=אשף התקנה +Comment[he]=קלמארס - אשף התקנה Name[hr]=Calamares Icon[hr]=calamares GenericName[hr]=Instalacija sustava @@ -26,22 +30,26 @@ Name[de]=Calamares Icon[de]=calamares GenericName[de]=Installation des Betriebssystems Comment[de]=Calamares - Installation des Betriebssystems -Name[ru]=Calamares -Icon[ru]=calamares -GenericName[ru]=Установщик системы -Comment[ru]=Calamares - Установщик системы -Name[ja]=Calamares -Icon[ja]=calamares -GenericName[ja]=システムインストーラー -Comment[ja]=Calamares — システムインストーラー -Name[sk]=Calamares -Icon[sk]=calamares -GenericName[sk]=Inštalátor systému -Comment[sk]=Calamares — Inštalátor systému +Name[id]=Calamares +Icon[id]=calamares +GenericName[id]=Pemasang +Comment[id]=Calamares — Pemasang Sistem Name[ca]=Calamares Icon[ca]=calamares GenericName[ca]=Instal·lador de sistema Comment[ca]=Calamares — Instal·lador de sistema +Name[sk]=Calamares +Icon[sk]=calamares +GenericName[sk]=Inštalátor systému +Comment[sk]=Calamares — Inštalátor systému +Name[ja]=Calamares +Icon[ja]=calamares +GenericName[ja]=システムインストーラー +Comment[ja]=Calamares — システムインストーラー +Name[zh_TW]=Calamares +Icon[zh_TW]=calamares +GenericName[zh_TW]=系統安裝程式 +Comment[zh_TW]=Calamares ── 系統安裝程式 Name[da]=Calamares Icon[da]=calamares GenericName[da]=Systeminstallationsprogram @@ -50,6 +58,10 @@ Name[sv]=Calamares Icon[sv]=calamares GenericName[sv]=Systeminstallerare Comment[sv]=Calamares — Systeminstallerare +Name[ru]=Calamares +Icon[ru]=calamares +GenericName[ru]=Установщик системы +Comment[ru]=Calamares - Установщик системы Name[lt]=Calamares Icon[lt]=calamares GenericName[lt]=Sistemos diegimas į kompiuterį @@ -70,10 +82,14 @@ Name[pt_PT]=Calamares Icon[pt_PT]=calamares GenericName[pt_PT]=Instalador de Sistema Comment[pt_PT]=Calamares - Instalador de Sistema -Name[zh_TW]=Calamares -Icon[zh_TW]=calamares -GenericName[zh_TW]=系統安裝程式 -Comment[zh_TW]=Calamares ── 系統安裝程式 +Name[fr]=Calamares +Icon[fr]=calamares +GenericName[fr]=Installateur système +Comment[fr]=Calamares - Installateur système +Name[tr_TR]=Calamares +Icon[tr_TR]=calamares +GenericName[tr_TR]=Sistem Yükleyici +Comment[tr_TR]=Calamares — Sistem Yükleyici Name[nl]=Calamares Icon[nl]=calamares GenericName[nl]=Installatieprogramma From 0121896a708afab19d801b55ccb85c5a215b16cb Mon Sep 17 00:00:00 2001 From: Calamares CI Date: Tue, 15 Aug 2017 09:01:09 +0200 Subject: [PATCH 11/32] [python] Automatic merge of Transifex translations --- lang/python/he/LC_MESSAGES/python.mo | Bin 428 -> 813 bytes lang/python/he/LC_MESSAGES/python.po | 11 +++++++---- lang/python/id/LC_MESSAGES/python.mo | Bin 425 -> 713 bytes lang/python/id/LC_MESSAGES/python.po | 11 +++++++---- lang/python/pl/LC_MESSAGES/python.mo | Bin 574 -> 863 bytes lang/python/pl/LC_MESSAGES/python.po | 11 +++++++---- lang/python/tr_TR/LC_MESSAGES/python.mo | Bin 437 -> 745 bytes lang/python/tr_TR/LC_MESSAGES/python.po | 11 +++++++---- 8 files changed, 28 insertions(+), 16 deletions(-) diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo index baa87e8d36a63d9c888f8de1a9b22d00109fbb7d..3464284cc3b8dc5b7a6de86407a533b3f0753b30 100644 GIT binary patch delta 453 zcma)%!AiqG5QbM<^(H7DMdkr)upU%Iiie6CR7Bcp zpP?@y%&jltLH|_|1P=~;e9OPHGwe%lINci0=Tm{20*jywW`G8!F2F3f1asg9EP%nc zNAUB65U+3voKFg|1dm`dZwwdVHyCXK5_w?up(-Nxb--rdljPb}M|o1!METfto78AV zj_=Wte_;Ji!bmpg^i1qZPX>1M^Rl37R(s=QEsP44!1h9IM}DwLJ6h4cqoq2O0c}aG z>L%Z=ySCC+)ptwFw7ODUZx7#F+~$;@_<wuaf_o)F7a1|VPrVi_P-0b*t#)&XJ=umIvBprj>`2C0F8iI*!Tw=n(z00o~2 AX#fBK diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po index 3eeefa131..43d358c5c 100644 --- a/lang/python/he/LC_MESSAGES/python.po +++ b/lang/python/he/LC_MESSAGES/python.po @@ -2,11 +2,14 @@ # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # +# Translators: +# Eli Shleifer , 2017 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Eli Shleifer , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,16 +20,16 @@ msgstr "" #: src/modules/dummypython/main.py:39 msgid "Dummy python job." -msgstr "" +msgstr "משימת דמה של Python." #: src/modules/dummypython/main.py:77 msgid "Dummy python step {}" -msgstr "" +msgstr "צעד דמה של Python {}" #: src/modules/machineid/main.py:30 msgid "Generate machine-id." -msgstr "" +msgstr "חולל מספר סידורי של המכונה." #: src/modules/machineid/main.py:60 msgid "Done machineid" -msgstr "" +msgstr "בוצעה הגדרת מספר סידורי של המכונה." diff --git a/lang/python/id/LC_MESSAGES/python.mo b/lang/python/id/LC_MESSAGES/python.mo index 435b2ccfd8744cb42ff3cbe388378932454fe9aa..a3b70d74f31c57b3efd44c9bfb931296d9e2d976 100644 GIT binary patch delta 355 zcmY+8Jxc>Y5QaySU?=#6jm7?e++l1K5wQq}5DVeJddw|%>+MIl-Czz8OHG+V5G<_} zto#Ai_SXIq3*XZq=7oo67-o0osqx;r{#iB{kncpZL#*WgzeV+2tX)ccTx8ovcLJ1d3Zey*%kDRqa&RANwt+*xt% z&f?jQ4{{(bujo)(S#tP$8L2d$?2I}-L`likYYwj56{l>2tDM-o_$g#@kQr7w?mM&J z7F(O0?a9m6$x#{^>6I0Q)Lc?B%-D`2C0F8iI*!T*E9YE01KlC Ab^rhX diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po index de39a8e65..f712eae0d 100644 --- a/lang/python/id/LC_MESSAGES/python.po +++ b/lang/python/id/LC_MESSAGES/python.po @@ -2,11 +2,14 @@ # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # +# Translators: +# Wantoyo , 2017 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Wantoyo , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,16 +20,16 @@ msgstr "" #: src/modules/dummypython/main.py:39 msgid "Dummy python job." -msgstr "" +msgstr "Tugas dummy python." #: src/modules/dummypython/main.py:77 msgid "Dummy python step {}" -msgstr "" +msgstr "Langkah dummy python {}" #: src/modules/machineid/main.py:30 msgid "Generate machine-id." -msgstr "" +msgstr "Menghasilkan id-mesin" #: src/modules/machineid/main.py:60 msgid "Done machineid" -msgstr "" +msgstr "Id-mesin kelar" diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo index fd824c25b4a11dabb9d7d28b3f5644756e18d911..1d529a86aa63389e8a8390a3c2f72ee70257802a 100644 GIT binary patch delta 357 zcmdnTa-XgKo)F7a1|VPsVi_QI0b+I_&H-W&=m26qAnpWWK_H$1#3Dev3QF$>(&kJI z3|F9h9%hKVB9t}*(!xMFZy?PGq=8BqSb!L09}t8v0L3A|B|k4!AvZBOBQq~GGljvW zG&i?Wp`fxPBR@|eD?dpORiwBiwLqb|mcczWFSRJK1g=vzGevKrMTJ3eiEc(@`)oFf`w|b|PbNXm<830RSZES9SmZ delta 69 zcmcc5wvWZ)o)F7a1|VPrVi_P-0b*t#)&XJ=umEBfCI$veAPrIj0~0S-Y_4PMV*~&c CItT6m diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po index fe9d5e401..21f59cdd0 100644 --- a/lang/python/pl/LC_MESSAGES/python.po +++ b/lang/python/pl/LC_MESSAGES/python.po @@ -2,11 +2,14 @@ # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # +# Translators: +# m4sk1n , 2017 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: m4sk1n , 2017\n" "Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,16 +20,16 @@ msgstr "" #: src/modules/dummypython/main.py:39 msgid "Dummy python job." -msgstr "" +msgstr "Zadanie Dummy Python" #: src/modules/dummypython/main.py:77 msgid "Dummy python step {}" -msgstr "" +msgstr "Krok dummy python {}" #: src/modules/machineid/main.py:30 msgid "Generate machine-id." -msgstr "" +msgstr "Generuj machine-id." #: src/modules/machineid/main.py:60 msgid "Done machineid" -msgstr "" +msgstr "Ukończono machineid" diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo index f9d44a5b7ef30bce0c5340bafdc86df589e2245a..6d766aaf8b2138b52c202e7bdf4a8b12f63a18d8 100644 GIT binary patch delta 376 zcmdnW{F1f)o)F7a1|VPsVi_QI0b+I_&H-W&=m26qAnpWWK_H$1#3Dev3QF$>(%Tpr z7_Iy;t(@W0JwbM~BGB7mXxR!%4 q&Nnd|=m>@E%-o#JBl9yA@^ea$&Mzq~D$PkLMRf*lhv70qj{yKl5M!+X delta 69 zcmaFKx|P}Do)F7a1|VPrVi_P-0b*t#)&XJ=umIv}prj>`2C0F8iI*!jw=uFZ0stTa B2jTz# diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po index 16cf5be14..7e6443c98 100644 --- a/lang/python/tr_TR/LC_MESSAGES/python.po +++ b/lang/python/tr_TR/LC_MESSAGES/python.po @@ -2,11 +2,14 @@ # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # +# Translators: +# Demiray Muhterem , 2017 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2017-08-09 06:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Demiray Muhterem , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,16 +20,16 @@ msgstr "" #: src/modules/dummypython/main.py:39 msgid "Dummy python job." -msgstr "" +msgstr "Dummy python job." #: src/modules/dummypython/main.py:77 msgid "Dummy python step {}" -msgstr "" +msgstr "Dummy python step {}" #: src/modules/machineid/main.py:30 msgid "Generate machine-id." -msgstr "" +msgstr "Makine kimliği oluştur." #: src/modules/machineid/main.py:60 msgid "Done machineid" -msgstr "" +msgstr "Makine kimliği oluşturuldu" From 22c0ee5dbb45a0abad2cba8caa6f8318c56fb117 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 10:34:28 +0200 Subject: [PATCH 12/32] Python-i18n: install gettext .mo files into system locale dir --- .../CalamaresAddModuleSubdirectory.cmake | 19 +++-- CMakeModules/CalamaresAddTranslations.cmake | 73 +++++++++++++++---- 2 files changed, 70 insertions(+), 22 deletions(-) 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 index cddab6b5e..5c245ce68 100644 --- a/CMakeModules/CalamaresAddTranslations.cmake +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -1,3 +1,5 @@ +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. @@ -52,20 +54,63 @@ macro(add_calamares_python_translations language) set( CALAMARES_LANGUAGES "" ) list( APPEND CALAMARES_LANGUAGES ${ARGV} ) - set( TS_FILES "" ) # Actually po / mo files - foreach( lang ${CALAMARES_LANGUAGES} ) + 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}" ) + message(STATUS " Examining ${lang_mo}") if( lang STREQUAL "en" ) - message( STATUS "Skipping Python translations for en_US" ) - else() - list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/python/${lang}/LC_MESSAGES/python.po;${CMAKE_SOURCE_DIR}/lang/python/${lang}/LC_MESSAGES/python.mo" ) + 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. endif() endforeach() - - file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/_lang ) - file( COPY ${CMAKE_SOURCE_DIR}/lang/python DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/_lang ) - - install( - FILES ${TS_FILES} - DESTINATION ${CMAKE_INSTALL_DATADIR}/calamares/lang/ - ) -endmacro() +endfunction() From c694792e4fede0cd01c710d7b355afed890f3e80 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 11:39:58 +0200 Subject: [PATCH 13/32] Python-style: pep8 fixes --- src/modules/dummypython/main.py | 10 ++++++---- src/modules/machineid/main.py | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index 685644452..0e2c8b746 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -39,9 +39,11 @@ _ = gettext.translation("python", libcalamares.globalstorage.gettext_languages(), fallback=True).gettext + def pretty_name(): return _("Dummy python job.") + def run(): """Dummy python job.""" os.system("/bin/sh -c \"touch ~/calamares-dummypython\"") @@ -81,15 +83,15 @@ def run(): sleep(1) try: - l = list(libcalamares.job.configuration["a_list"]) + configlist = list(libcalamares.job.configuration["a_list"]) except KeyError: - l = ["no list"] + configlist = ["no list"] c = 1 - for k in l: + for k in configlist: libcalamares.utils.debug(_("Dummy python step {}").format(str(k))) sleep(1) - libcalamares.job.setprogress( c * 1.0 / len(l) ) + libcalamares.job.setprogress(c * 1.0 / len(configlist)) c += 1 sleep(3) diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index cd4f06504..916a66d5e 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -30,9 +30,11 @@ _ = gettext.translation("python", libcalamares.globalstorage.gettext_languages(), fallback=True).gettext + def pretty_name(): return _("Generate machine-id.") + def run(): """ Generate machine-id using dbus and systemd. From fdb4be8189f62c0f2fc2aec20efc92b9014779f6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 11:46:25 +0200 Subject: [PATCH 14/32] Python-i18n: be explicit about parameters --- src/modules/dummypython/main.py | 6 +++--- src/modules/machineid/main.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index 0e2c8b746..dc4275f07 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -34,9 +34,9 @@ import os from time import gmtime, strftime, sleep import gettext -_ = gettext.translation("python", - libcalamares.job.gettext_path, - libcalamares.globalstorage.gettext_languages(), +_ = gettext.translation("calamares-python", + localedir=libcalamares.job.gettext_path, + languages=libcalamares.globalstorage.gettext_languages(), fallback=True).gettext diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index 916a66d5e..2e9ccae22 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -25,9 +25,9 @@ import os from libcalamares.utils import check_target_env_call, debug import gettext -_ = gettext.translation("python", - libcalamares.job.gettext_path, - libcalamares.globalstorage.gettext_languages(), +_ = gettext.translan getion("calamares-python", + localedir=libcalamares.job.gettext_path, + languages=libcalamares.globalstorage.gettext_languages(), fallback=True).gettext From 1dbe7c29e2947d2114f25bc1e79c4abcf3a1a2cc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 12:30:19 +0200 Subject: [PATCH 15/32] Python-i18n: prepare for move of API to libcalamares.utils, be less verbose --- CMakeModules/CalamaresAddTranslations.cmake | 1 - src/modules/dummypython/main.py | 4 ++-- src/modules/machineid/main.py | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CMakeModules/CalamaresAddTranslations.cmake b/CMakeModules/CalamaresAddTranslations.cmake index 5c245ce68..9ac5ab2b6 100644 --- a/CMakeModules/CalamaresAddTranslations.cmake +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -99,7 +99,6 @@ function( install_calamares_gettext_translations ) set( INSTALLED_TRANSLATIONS "" ) foreach( lang ${CALAMARES_TRANSLATION_LANGUAGES} ) # Global set( lang_mo "${TRANSLATION_SOURCE_DIR}/${lang}/LC_MESSAGES/${TRANSLATION_FILENAME}" ) - message(STATUS " Examining ${lang_mo}") if( lang STREQUAL "en" ) message( STATUS " Skipping ${TRANSLATION_NAME} translations for en_US" ) else( EXISTS ${lang_mo} ) diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index dc4275f07..bcbe3f537 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -35,8 +35,8 @@ from time import gmtime, strftime, sleep import gettext _ = gettext.translation("calamares-python", - localedir=libcalamares.job.gettext_path, - languages=libcalamares.globalstorage.gettext_languages(), + localedir=libcalamares.utils.gettext_path, + languages=libcalamares.utils.gettext_languages(), fallback=True).gettext diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index 2e9ccae22..1641014f4 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -26,8 +26,8 @@ from libcalamares.utils import check_target_env_call, debug import gettext _ = gettext.translan getion("calamares-python", - localedir=libcalamares.job.gettext_path, - languages=libcalamares.globalstorage.gettext_languages(), + localedir=libcalamares.utils.gettext_path, + languages=libcalamares.utils.gettext_languages(), fallback=True).gettext From cbfdd8690d0daf496cab2ba64df9af0c08712cbc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 12:31:47 +0200 Subject: [PATCH 16/32] Python-i18n: WIP, moving API to libcalamares.utils --- src/libcalamares/GlobalStorage.cpp | 27 --------------------------- src/libcalamares/GlobalStorage.h | 4 ---- src/libcalamares/PythonJob.cpp | 11 +++++++++-- src/libcalamares/PythonJobApi.cpp | 27 +++++++++++++++++++++++++++ src/libcalamares/PythonJobApi.h | 4 ++++ 5 files changed, 40 insertions(+), 33 deletions(-) diff --git a/src/libcalamares/GlobalStorage.cpp b/src/libcalamares/GlobalStorage.cpp index 32ae02191..3fc7d0fa9 100644 --- a/src/libcalamares/GlobalStorage.cpp +++ b/src/libcalamares/GlobalStorage.cpp @@ -125,33 +125,6 @@ GlobalStoragePythonWrapper::insert( const std::string& key, CalamaresPython::variantFromPyObject( value ) ); } -bp::list -GlobalStoragePythonWrapper::gettext_languages() const -{ - bp::list pyList; - QVariant localeConf_ = m_gs->value( "localeConf" ); - if ( localeConf_.canConvert< QVariantMap >() ) - { - QVariant lang_ = localeConf_.value< QVariantMap >()[ "LANG" ]; - if ( lang_.canConvert< QString >() ) - { - QString lang = lang_.value< QString >(); - pyList.append( lang.toStdString() ); - if ( lang.indexOf( '.' ) > 0) - { - lang.truncate( lang.indexOf( '.' ) ); - pyList.append( lang.toStdString() ); - } - if ( lang.indexOf( '_' ) > 0) - { - lang.truncate( lang.indexOf( '_' ) ); - pyList.append( lang.toStdString() ); - } - } - } - return pyList; -} - bp::list GlobalStoragePythonWrapper::keys() const { diff --git a/src/libcalamares/GlobalStorage.h b/src/libcalamares/GlobalStorage.h index 92def182e..ff8d32682 100644 --- a/src/libcalamares/GlobalStorage.h +++ b/src/libcalamares/GlobalStorage.h @@ -87,10 +87,6 @@ public: int remove( const std::string& key ); boost::python::api::object value( const std::string& key ) const; - // Special case to simplify Python code, gets localeConf["LANG"] - // from the global store, in list form with language variants - // expanded (e.g [ "en_GB.UTF-8", "en_GB", "en" ] ). - boost::python::list gettext_languages() const; private: Calamares::GlobalStorage* m_gs; }; diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index f6ae92384..bad463fa7 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -86,8 +86,7 @@ BOOST_PYTHON_MODULE( libcalamares ) .def( "insert", &CalamaresPython::GlobalStoragePythonWrapper::insert ) .def( "keys", &CalamaresPython::GlobalStoragePythonWrapper::keys ) .def( "remove", &CalamaresPython::GlobalStoragePythonWrapper::remove ) - .def( "value", &CalamaresPython::GlobalStoragePythonWrapper::value ) - .def( "gettext_languages", &CalamaresPython::GlobalStoragePythonWrapper::gettext_languages ); + .def( "value", &CalamaresPython::GlobalStoragePythonWrapper::value ); // libcalamares.utils submodule starts here bp::object utilsModule( bp::handle<>( bp::borrowed( PyImport_AddModule( "libcalamares.utils" ) ) ) ); @@ -217,6 +216,14 @@ 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, + bp::args(), + "Returns list of languages (most to least-specific) for gettext." + ); } diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 10b66b39f..1e84d3130 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -208,4 +208,31 @@ obscure( const std::string& string ) return CalamaresUtils::obscure( QString::fromStdString( string ) ).toStdString(); } +std::list< std::string > +gettext_languages() +{ + bp::list pyList; + QVariant localeConf_ = m_gs->value( "localeConf" ); + if ( localeConf_.canConvert< QVariantMap >() ) + { + QVariant lang_ = localeConf_.value< QVariantMap >()[ "LANG" ]; + if ( lang_.canConvert< QString >() ) + { + QString lang = lang_.value< QString >(); + pyList.append( lang.toStdString() ); + if ( lang.indexOf( '.' ) > 0) + { + lang.truncate( lang.indexOf( '.' ) ); + pyList.append( lang.toStdString() ); + } + if ( lang.indexOf( '_' ) > 0) + { + lang.truncate( lang.indexOf( '_' ) ); + pyList.append( lang.toStdString() ); + } + } + } + return pyList; +} + } diff --git a/src/libcalamares/PythonJobApi.h b/src/libcalamares/PythonJobApi.h index a3443ad76..09835b2ed 100644 --- a/src/libcalamares/PythonJobApi.h +++ b/src/libcalamares/PythonJobApi.h @@ -61,6 +61,10 @@ std::string check_target_env_output( const boost::python::list& args, std::string obscure( const std::string& string ); +std::string gettext_path(); + +std::list< std::string > gettext_languages(); + void debug( const std::string& s ); inline int _handle_check_target_env_call_error( int ec, const QString& cmd ); From 637089815460c3712bcfd675a865347695565fa0 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 13:21:17 +0200 Subject: [PATCH 17/32] Python-i18n: make it compile again --- src/libcalamares/PythonJob.cpp | 1 - src/libcalamares/PythonJobApi.cpp | 13 ++++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index bad463fa7..7cd4ae556 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -221,7 +221,6 @@ BOOST_PYTHON_MODULE( libcalamares ) bp::def( "gettext_languages", &CalamaresPython::gettext_languages, - bp::args(), "Returns list of languages (most to least-specific) for gettext." ); } diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 1e84d3130..15c14ab51 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -24,6 +24,9 @@ #include "utils/CalamaresUtilsSystem.h" #include "utils/CalamaresUtils.h" +#include "GlobalStorage.h" +#include "JobQueue.h" + #include #undef slots @@ -211,24 +214,24 @@ obscure( const std::string& string ) std::list< std::string > gettext_languages() { - bp::list pyList; - QVariant localeConf_ = m_gs->value( "localeConf" ); + std::list< std::string > pyList; + QVariant localeConf_ = Calamares::JobQueue::instance()->globalStorage()->value( "localeConf" ); if ( localeConf_.canConvert< QVariantMap >() ) { QVariant lang_ = localeConf_.value< QVariantMap >()[ "LANG" ]; if ( lang_.canConvert< QString >() ) { QString lang = lang_.value< QString >(); - pyList.append( lang.toStdString() ); + pyList.push_back( lang.toStdString() ); if ( lang.indexOf( '.' ) > 0) { lang.truncate( lang.indexOf( '.' ) ); - pyList.append( lang.toStdString() ); + pyList.push_back( lang.toStdString() ); } if ( lang.indexOf( '_' ) > 0) { lang.truncate( lang.indexOf( '_' ) ); - pyList.append( lang.toStdString() ); + pyList.push_back( lang.toStdString() ); } } } From 49384ef01f8bec394887f13f1f903f70cc9802d6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 13:29:39 +0200 Subject: [PATCH 18/32] Python-style: fix derpy workaround for PEP8 --- src/modules/testmodule.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index 907e704b4..9c3e57318 100755 --- a/src/modules/testmodule.py +++ b/src/modules/testmodule.py @@ -67,8 +67,8 @@ 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.") args = parser.parse_args() print("Testing module in: " + args.moduledir) From f509000215e97d07b39c1b936193e77ef31166a3 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 13:36:05 +0200 Subject: [PATCH 19/32] Python-style: cut-and-paste accident --- src/modules/machineid/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index 1641014f4..a11561c82 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -25,10 +25,10 @@ import os from libcalamares.utils import check_target_env_call, debug import gettext -_ = gettext.translan getion("calamares-python", - localedir=libcalamares.utils.gettext_path, - languages=libcalamares.utils.gettext_languages(), - fallback=True).gettext +_ = gettext.translantion("calamares-python", + localedir=libcalamares.utils.gettext_path, + languages=libcalamares.utils.gettext_languages(), + fallback=True).gettext def pretty_name(): From d4c714c400a446d1bcba258da92be67f3444f897 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 13:49:43 +0200 Subject: [PATCH 20/32] Python: fix up testing script - Didn't run at all (at least since v3.1) because of mismatch between GlobalStorage constructor arguments and use; special-case None in the C++ code to allocate a new GlobalStorage object. --- src/libcalamares/GlobalStorage.cpp | 9 ++++++++- src/modules/testmodule.py | 5 ++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/GlobalStorage.cpp b/src/libcalamares/GlobalStorage.cpp index 3fc7d0fa9..e56a241e9 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,8 +101,13 @@ GlobalStorage::debugDump() const namespace CalamaresPython { +// 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 : new Calamares::GlobalStorage ) {} bool diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index 9c3e57318..da852f814 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 @@ -81,7 +82,9 @@ 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 a file for simulating globalStorage contents is provided, load it if args.globalstorage_yaml: From 5326e9ee065429aa4a1a0b951853c56b2f4be1f6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 14:10:56 +0200 Subject: [PATCH 21/32] Python-style: sharp-eyed KK spots a typo --- src/modules/machineid/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index a11561c82..e3dac5c59 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -25,10 +25,10 @@ import os from libcalamares.utils import check_target_env_call, debug import gettext -_ = gettext.translantion("calamares-python", - localedir=libcalamares.utils.gettext_path, - languages=libcalamares.utils.gettext_languages(), - fallback=True).gettext +_ = gettext.translation("calamares-python", + localedir=libcalamares.utils.gettext_path, + languages=libcalamares.utils.gettext_languages(), + fallback=True).gettext def pretty_name(): From 74be2fd098c673ab5f8c2226af54889ee41e279d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 15 Aug 2017 22:50:26 +0200 Subject: [PATCH 22/32] Python-i18n: implement gettext functions in libcalamares.utils - remove Job.gettextPath - add libcalamares.utils.gettext_path() - add libcalamares.utils.gettext_lang() - modify examples in main.py - add some gettext debug-output from dummypython - correct namespace mis-labeling - provide two forms of GlobalStorage - regular use, has a JobQueue with storage - testing use, creates GlobalStorage separately, provide independent access to that for Python. --- src/libcalamares/GlobalStorage.cpp | 12 +++++++-- src/libcalamares/GlobalStorage.h | 6 +++++ src/libcalamares/PythonHelper.cpp | 2 +- src/libcalamares/PythonJob.cpp | 7 +++++- src/libcalamares/PythonJobApi.cpp | 39 +++++++++++++++++++----------- src/libcalamares/PythonJobApi.h | 3 +-- src/modules/dummypython/main.py | 7 +++++- 7 files changed, 55 insertions(+), 21 deletions(-) diff --git a/src/libcalamares/GlobalStorage.cpp b/src/libcalamares/GlobalStorage.cpp index e56a241e9..36405ce87 100644 --- a/src/libcalamares/GlobalStorage.cpp +++ b/src/libcalamares/GlobalStorage.cpp @@ -101,14 +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 ? gs : new Calamares::GlobalStorage ) -{} + : 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 diff --git a/src/libcalamares/GlobalStorage.h b/src/libcalamares/GlobalStorage.h index ff8d32682..0ff56ac62 100644 --- a/src/libcalamares/GlobalStorage.h +++ b/src/libcalamares/GlobalStorage.h @@ -87,8 +87,14 @@ public: 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 7cd4ae556..3d16e946b 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -70,7 +70,6 @@ BOOST_PYTHON_MODULE( libcalamares ) .def_readonly( "module_name", &CalamaresPython::PythonJobInterface::moduleName ) .def_readonly( "pretty_name", &CalamaresPython::PythonJobInterface::prettyName ) .def_readonly( "working_path", &CalamaresPython::PythonJobInterface::workingPath ) - .def_readonly( "gettext_path", &CalamaresPython::PythonJobInterface::gettextPath ) .def_readonly( "configuration", &CalamaresPython::PythonJobInterface::configuration ) .def( "setprogress", @@ -223,6 +222,12 @@ BOOST_PYTHON_MODULE( libcalamares ) &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." + ); } diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 15c14ab51..705467f25 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -186,14 +186,6 @@ PythonJobInterface::PythonJobInterface( Calamares::PythonJob* parent ) prettyName = m_parent->prettyName().toStdString(); workingPath = m_parent->m_workingPath.toStdString(); configuration = CalamaresPython::variantMapToPyDict( m_parent->m_configurationMap ); - - if (moduleDir.cd("../_lang/python")) - gettextPath = moduleDir.absolutePath().toStdString(); - else - { - debug( "No _lang/ directory for translations." ); - gettextPath = std::string(); - } } @@ -211,31 +203,50 @@ obscure( const std::string& string ) return CalamaresUtils::obscure( QString::fromStdString( string ) ).toStdString(); } -std::list< std::string > +bp::list gettext_languages() { - std::list< std::string > pyList; - QVariant localeConf_ = Calamares::JobQueue::instance()->globalStorage()->value( "localeConf" ); + bp::list pyList; + + // 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 >(); - pyList.push_back( lang.toStdString() ); + pyList.append( lang.toStdString() ); if ( lang.indexOf( '.' ) > 0) { lang.truncate( lang.indexOf( '.' ) ); - pyList.push_back( lang.toStdString() ); + pyList.append( lang.toStdString() ); } if ( lang.indexOf( '_' ) > 0) { lang.truncate( lang.indexOf( '_' ) ); - pyList.push_back( lang.toStdString() ); + pyList.append( lang.toStdString() ); } } } return pyList; } +std::string +gettext_path() +{ + // TODO: distinguish between -d runs and normal runs + // TODO: can we detect DESTDIR-installs? + return std::string(); +} + + } diff --git a/src/libcalamares/PythonJobApi.h b/src/libcalamares/PythonJobApi.h index 09835b2ed..a732e005b 100644 --- a/src/libcalamares/PythonJobApi.h +++ b/src/libcalamares/PythonJobApi.h @@ -63,7 +63,7 @@ std::string obscure( const std::string& string ); std::string gettext_path(); -std::list< std::string > gettext_languages(); +boost::python::list gettext_languages(); void debug( const std::string& s ); @@ -77,7 +77,6 @@ public: std::string moduleName; std::string prettyName; std::string workingPath; - std::string gettextPath; boost::python::dict configuration; diff --git a/src/modules/dummypython/main.py b/src/modules/dummypython/main.py index bcbe3f537..ec6b02bfd 100644 --- a/src/modules/dummypython/main.py +++ b/src/modules/dummypython/main.py @@ -35,7 +35,7 @@ from time import gmtime, strftime, sleep import gettext _ = gettext.translation("calamares-python", - localedir=libcalamares.utils.gettext_path, + localedir=libcalamares.utils.gettext_path(), languages=libcalamares.utils.gettext_languages(), fallback=True).gettext @@ -46,6 +46,11 @@ def pretty_name(): 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" From 78b3c8ed32e9b92a840ad6c87857d7d9c5765a5e Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 16 Aug 2017 16:45:34 +0200 Subject: [PATCH 23/32] Python-i18n: allow None as a gettext path (searches default) --- src/libcalamares/PythonJobApi.cpp | 4 ++-- src/libcalamares/PythonJobApi.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 705467f25..d7d78c9ce 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -240,12 +240,12 @@ gettext_languages() return pyList; } -std::string +bp::object gettext_path() { // TODO: distinguish between -d runs and normal runs // TODO: can we detect DESTDIR-installs? - return std::string(); + return bp::object(); // None } diff --git a/src/libcalamares/PythonJobApi.h b/src/libcalamares/PythonJobApi.h index a732e005b..3d31c474e 100644 --- a/src/libcalamares/PythonJobApi.h +++ b/src/libcalamares/PythonJobApi.h @@ -61,7 +61,7 @@ std::string check_target_env_output( const boost::python::list& args, std::string obscure( const std::string& string ); -std::string gettext_path(); +boost::python::object gettext_path(); boost::python::list gettext_languages(); From 34230276e3993b9add2288aaf8b9f5130a68aeb8 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 16 Aug 2017 16:51:56 +0200 Subject: [PATCH 24/32] Python-i18n: extend test-script with language setting --- src/modules/testmodule.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index da852f814..955db1830 100755 --- a/src/modules/testmodule.py +++ b/src/modules/testmodule.py @@ -70,6 +70,8 @@ def main(): help="A yaml file to initialize GlobalStorage.") 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) @@ -85,6 +87,8 @@ def main(): # 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: From 40335d9f1eff4a50732d84137acbb81acc39f91e Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 18 Aug 2017 12:06:32 -0400 Subject: [PATCH 25/32] Python-i18n: install mo files into build tree --- CMakeModules/CalamaresAddTranslations.cmake | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CMakeModules/CalamaresAddTranslations.cmake b/CMakeModules/CalamaresAddTranslations.cmake index 9ac5ab2b6..520c918aa 100644 --- a/CMakeModules/CalamaresAddTranslations.cmake +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -49,7 +49,7 @@ endmacro() # # Translations of the Python modules that don't have their own # lang/ subdirectories -- these are collected in top-level -# lang/python_.po +# lang/python//LC_MESSAGES/python.mo macro(add_calamares_python_translations language) set( CALAMARES_LANGUAGES "" ) list( APPEND CALAMARES_LANGUAGES ${ARGV} ) @@ -110,6 +110,12 @@ function( install_calamares_gettext_translations ) ) # 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_NAME STREQUAL TRANSLATION_RENAME) + file(RENAME ${_build_lc}${TRANSLATION_NAME}.mo ${_build_lc}${TRANSLATION_RENAME}) + endif() + endif() endforeach() endfunction() From 3a1d5ed533af027942e75e387acb8c853353d38e Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 18 Aug 2017 12:56:34 -0400 Subject: [PATCH 26/32] Python-i18n: (inefficiently) search for suitable gettext dirs --- src/libcalamares/PythonJobApi.cpp | 51 +++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 6 deletions(-) diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index d7d78c9ce..91b364c77 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -27,7 +27,9 @@ #include "GlobalStorage.h" #include "JobQueue.h" +#include #include +#include #undef slots #include @@ -203,10 +205,10 @@ obscure( const std::string& string ) return CalamaresUtils::obscure( QString::fromStdString( string ) ).toStdString(); } -bp::list -gettext_languages() +static QStringList +_gettext_languages() { - bp::list pyList; + QStringList languages; // There are two ways that Python jobs can be initialised: // - through JobQueue, in which case that has an instance which holds @@ -224,27 +226,64 @@ gettext_languages() if ( lang_.canConvert< QString >() ) { QString lang = lang_.value< QString >(); - pyList.append( lang.toStdString() ); + languages.append(lang); if ( lang.indexOf( '.' ) > 0) { lang.truncate( lang.indexOf( '.' ) ); - pyList.append( lang.toStdString() ); + languages.append(lang); } if ( lang.indexOf( '_' ) > 0) { lang.truncate( lang.indexOf( '_' ) ); - pyList.append( lang.toStdString() ); + 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.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); + _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" < Date: Fri, 18 Aug 2017 14:13:26 -0400 Subject: [PATCH 27/32] Python-i18n: clean up filename handling a little (thanks Kevin) --- CMakeModules/CalamaresAddTranslations.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeModules/CalamaresAddTranslations.cmake b/CMakeModules/CalamaresAddTranslations.cmake index 520c918aa..b0a623908 100644 --- a/CMakeModules/CalamaresAddTranslations.cmake +++ b/CMakeModules/CalamaresAddTranslations.cmake @@ -112,8 +112,8 @@ function( install_calamares_gettext_translations ) # 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_NAME STREQUAL TRANSLATION_RENAME) - file(RENAME ${_build_lc}${TRANSLATION_NAME}.mo ${_build_lc}${TRANSLATION_RENAME}) + if (NOT TRANSLATION_FILENAME STREQUAL TRANSLATION_RENAME) + file(RENAME ${_build_lc}${TRANSLATION_FILENAME} ${_build_lc}${TRANSLATION_RENAME}) endif() endif() From 48cc1f046127df8d253653452a75504eb9cb398c Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 18 Aug 2017 14:19:50 -0400 Subject: [PATCH 28/32] Python-i18n: adjust for changed API --- src/modules/machineid/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/machineid/main.py b/src/modules/machineid/main.py index e3dac5c59..649570958 100644 --- a/src/modules/machineid/main.py +++ b/src/modules/machineid/main.py @@ -26,7 +26,7 @@ from libcalamares.utils import check_target_env_call, debug import gettext _ = gettext.translation("calamares-python", - localedir=libcalamares.utils.gettext_path, + localedir=libcalamares.utils.gettext_path(), languages=libcalamares.utils.gettext_languages(), fallback=True).gettext From 22fd4286643b005d7c0b37e3b871b0c8bcaa8eca Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 18 Aug 2017 14:22:59 -0400 Subject: [PATCH 29/32] Python-i18: avoid duplicate path entries --- src/libcalamares/PythonJobApi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 91b364c77..fc7d1e412 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -254,7 +254,7 @@ gettext_languages() static void _add_localedirs(QStringList &pathList, const QString &candidate) { - if (!candidate.isEmpty()) + if (!candidate.isEmpty() && !pathList.contains(candidate)) { pathList.prepend(candidate); if (QDir(candidate).cd("lang")) From d6d5f54d002aadbac0718ac4929e9ce9d231322f Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 21 Aug 2017 10:37:35 -0400 Subject: [PATCH 30/32] Python-i18n: clarify debugging --- src/libcalamares/PythonJob.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/PythonJob.cpp b/src/libcalamares/PythonJob.cpp index 3d16e946b..613f0f7ab 100644 --- a/src/libcalamares/PythonJob.cpp +++ b/src/libcalamares/PythonJob.cpp @@ -312,6 +312,7 @@ PythonJob::exec() bp::object entryPoint = scriptNamespace[ "run" ]; bp::object prettyNameFunc = scriptNamespace[ "pretty_name" ]; + cDebug() << "Job file" << scriptFI.absoluteFilePath(); if ( !prettyNameFunc.is_none() ) { bp::extract< std::string > prettyNameResult( prettyNameFunc() ); @@ -321,7 +322,7 @@ PythonJob::exec() } if ( !m_description.isEmpty() ) { - cDebug() << "Job" << prettyName() << "-pretty_name->" << m_description; + cDebug() << "Job" << prettyName() << "(func) ->" << m_description; emit progress( 0 ); } } @@ -336,7 +337,7 @@ PythonJob::exec() auto i_newline = m_description.indexOf('\n'); if ( i_newline > 0 ) m_description.truncate( i_newline ); - cDebug() << "Job" << prettyName() << "->" << m_description; + cDebug() << "Job" << prettyName() << "(doc) ->" << m_description; emit progress( 0 ); } } From 538c59adb90b5d3b0619f9632be7e6dc571f2fde Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 21 Aug 2017 12:34:38 -0400 Subject: [PATCH 31/32] Python-i18n: add /usr/local/share/locale to search --- src/libcalamares/PythonJobApi.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index fc7d1e412..5d0960885 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -271,8 +271,16 @@ gettext_path() // TODO: can we detect DESTDIR-installs? QStringList candidatePaths = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "locale", QStandardPaths::LocateDirectory); QString extra = QCoreApplication::applicationDirPath(); - _add_localedirs(candidatePaths, extra); - _add_localedirs(candidatePaths, QDir().canonicalPath()); + _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; From 5dc70ac26167a16bec5a1ce4790445d9af63ee4d Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 21 Aug 2017 12:36:04 -0400 Subject: [PATCH 32/32] Python-i18n: apply C++-coding style --- src/libcalamares/PythonJobApi.cpp | 104 ++++++++++++++---------------- 1 file changed, 50 insertions(+), 54 deletions(-) diff --git a/src/libcalamares/PythonJobApi.cpp b/src/libcalamares/PythonJobApi.cpp index 5d0960885..595f53a76 100644 --- a/src/libcalamares/PythonJobApi.cpp +++ b/src/libcalamares/PythonJobApi.cpp @@ -46,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 ) ); @@ -98,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 ) @@ -109,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( ' ' ) ); @@ -118,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()-> @@ -135,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()-> @@ -165,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; @@ -226,16 +226,16 @@ _gettext_languages() if ( lang_.canConvert< QString >() ) { QString lang = lang_.value< QString >(); - languages.append(lang); - if ( lang.indexOf( '.' ) > 0) + languages.append( lang ); + if ( lang.indexOf( '.' ) > 0 ) { lang.truncate( lang.indexOf( '.' ) ); - languages.append(lang); + languages.append( lang ); } - if ( lang.indexOf( '_' ) > 0) + if ( lang.indexOf( '_' ) > 0 ) { lang.truncate( lang.indexOf( '_' ) ); - languages.append(lang); + languages.append( lang ); } } } @@ -246,21 +246,19 @@ bp::list gettext_languages() { bp::list pyList; - for (auto lang : _gettext_languages()) + for ( auto lang : _gettext_languages() ) pyList.append( lang.toStdString() ); return pyList; } static void -_add_localedirs(QStringList &pathList, const QString &candidate) +_add_localedirs( QStringList& pathList, const QString& candidate ) { - if (!candidate.isEmpty() && !pathList.contains(candidate)) + if ( !candidate.isEmpty() && !pathList.contains( candidate ) ) { - pathList.prepend(candidate); - if (QDir(candidate).cd("lang")) - { - pathList.prepend(candidate + "/lang"); - } + pathList.prepend( candidate ); + if ( QDir( candidate ).cd( "lang" ) ) + pathList.prepend( candidate + "/lang" ); } } @@ -269,27 +267,25 @@ 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); + QStringList candidatePaths = QStandardPaths::locateAll( QStandardPaths::GenericDataLocation, "locale", QStandardPaths::LocateDirectory ); QString extra = QCoreApplication::applicationDirPath(); - _add_localedirs(candidatePaths, extra); // Often /usr/local/bin + _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()); - } + 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()); // . + _add_localedirs( candidatePaths, QDir().canonicalPath() ); // . cDebug() << "Standard paths" << candidatePaths; - for (auto lang : _gettext_languages()) - for (auto localedir : candidatePaths) + for ( auto lang : _gettext_languages() ) + for ( auto localedir : candidatePaths ) { - QDir ldir(localedir); + QDir ldir( localedir ); cDebug() << "Checking" << lang << "in" <