Merge branch 'master' of https://github.com/calamares/calamares into development

This commit is contained in:
Philip 2017-08-23 09:02:04 +01:00
commit 5df04e5a13
342 changed files with 3632 additions and 1807 deletions

View File

@ -18,3 +18,9 @@ source_file = calamares.desktop
source_lang = en
type = DESKTOP
[calamares.python]
file_filter = lang/python/<lang>/LC_MESSAGES/python.po
source_file = lang/python.pot
source_lang = en
type = PO

View File

@ -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( "" )

View File

@ -0,0 +1,121 @@
include( CMakeParseArguments )
# Internal macro for adding the C++ / Qt translations to the
# build and install tree. Should be called only once, from
# src/calamares/CMakeLists.txt.
macro(add_calamares_translations language)
list( APPEND CALAMARES_LANGUAGES ${ARGV} )
set( calamares_i18n_qrc_content "<!DOCTYPE RCC><RCC version=\"1.0\">\n" )
# calamares and qt language files
set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}<qresource prefix=\"/lang\">\n" )
foreach( lang ${CALAMARES_LANGUAGES} )
set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}<file>calamares_${lang}.qm</file>\n" )
list( APPEND TS_FILES "${CMAKE_SOURCE_DIR}/lang/calamares_${lang}.ts" )
endforeach()
set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}</qresource>\n" )
set( calamares_i18n_qrc_content "${calamares_i18n_qrc_content}</RCC>\n" )
file( WRITE ${CMAKE_BINARY_DIR}/lang/calamares_i18n.qrc "${calamares_i18n_qrc_content}" )
qt5_add_translation(QM_FILES ${TS_FILES})
## HACK HACK HACK - around rcc limitations to allow out of source-tree building
set( trans_file calamares_i18n )
set( trans_srcfile ${CMAKE_BINARY_DIR}/lang/${trans_file}.qrc )
set( trans_infile ${CMAKE_CURRENT_BINARY_DIR}/${trans_file}.qrc )
set( trans_outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${trans_file}.cxx )
# Copy the QRC file to the output directory
add_custom_command(
OUTPUT ${trans_infile}
COMMAND ${CMAKE_COMMAND} -E copy ${trans_srcfile} ${trans_infile}
MAIN_DEPENDENCY ${trans_srcfile}
)
# Run the resource compiler (rcc_options should already be set)
add_custom_command(
OUTPUT ${trans_outfile}
COMMAND "${Qt5Core_RCC_EXECUTABLE}"
ARGS ${rcc_options} -name ${trans_file} -o ${trans_outfile} ${trans_infile}
MAIN_DEPENDENCY ${trans_infile}
DEPENDS ${QM_FILES}
)
endmacro()
# Internal macro for Python translations
#
# Translations of the Python modules that don't have their own
# lang/ subdirectories -- these are collected in top-level
# lang/python/<lang>/LC_MESSAGES/python.mo
macro(add_calamares_python_translations language)
set( CALAMARES_LANGUAGES "" )
list( APPEND CALAMARES_LANGUAGES ${ARGV} )
install_calamares_gettext_translations( python
SOURCE_DIR ${CMAKE_SOURCE_DIR}/lang/python
FILENAME python.mo
RENAME calamares-python.mo
)
endmacro()
# Installs a directory containing language-code-labeled subdirectories with
# gettext data into the appropriate system directory. Allows renaming the
# .mo files during install to avoid namespace clashes.
#
# install_calamares_gettext_translations(
# NAME <name of module, for human use>
# SOURCE_DIR path/to/lang
# FILENAME <name of file.mo>
# [RENAME <new-name of.mo>]
# )
#
# For all of the (global) translation languages enabled for Calamares,
# try installing $SOURCE_DIR/$lang/LC_MESSAGES/<filename>.mo into the
# system gettext data directory (e.g. share/locale/), possibly renaming
# filename.mo to renamed.mo in the process.
function( install_calamares_gettext_translations )
# parse arguments ( name needs to be saved before passing ARGN into the macro )
set( NAME ${ARGV0} )
set( oneValueArgs NAME SOURCE_DIR FILENAME RENAME )
cmake_parse_arguments( TRANSLATION "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
if( NOT TRANSLATION_NAME )
set( TRANSLATION_NAME ${NAME} )
endif()
if( NOT TRANSLATION_FILENAME )
set( TRANSLATION_FILENAME "${TRANSLATION_NAME}.mo" )
endif()
if( NOT TRANSLATION_RENAME )
set( TRANSLATION_RENAME "${TRANSLATION_FILENAME}" )
endif()
message(STATUS "Installing gettext translations for ${TRANSLATION_NAME}")
message(STATUS " Installing ${TRANSLATION_FILENAME} from ${TRANSLATION_SOURCE_DIR}")
set( TRANSLATION_NAME "${NAME}" )
set( INSTALLED_TRANSLATIONS "" )
foreach( lang ${CALAMARES_TRANSLATION_LANGUAGES} ) # Global
set( lang_mo "${TRANSLATION_SOURCE_DIR}/${lang}/LC_MESSAGES/${TRANSLATION_FILENAME}" )
if( lang STREQUAL "en" )
message( STATUS " Skipping ${TRANSLATION_NAME} translations for en_US" )
else( EXISTS ${lang_mo} )
list( APPEND INSTALLED_LANGUAGES "${lang}" )
install(
FILES ${lang_mo}
DESTINATION ${CMAKE_INSTALL_LOCALEDIR}/${lang}/LC_MESSAGES/
RENAME ${TRANSLATION_RENAME}
)
# TODO: make translations available in build dir too, for
# translation when running calamares -d from builddir.
set(_build_lc ${CMAKE_BINARY_DIR}/lang/${lang}/LC_MESSAGES/)
file(COPY ${lang_mo} DESTINATION ${_build_lc})
if (NOT TRANSLATION_FILENAME STREQUAL TRANSLATION_RENAME)
file(RENAME ${_build_lc}${TRANSLATION_FILENAME} ${_build_lc}${TRANSLATION_RENAME})
endif()
endif()
endforeach()
endfunction()

View File

@ -14,22 +14,13 @@ Categories=Qt;System;
# Translations
Name[ast]=Calamares
Icon[ast]=calamares
GenericName[ast]=Instalador del sistema
Comment[ast]=Calamares Instalador del sistema
Name[hr]=Calamares
Icon[hr]=calamares
GenericName[hr]=Instalacija sustava
Comment[hr]=Calamares Instalacija sustava
Name[ru]=Calamares
Icon[ru]=calamares
GenericName[ru]=Установщик системы
Comment[ru]=Calamares - Установщик системы
Name[sv]=Calamares
Icon[sv]=calamares
GenericName[sv]=Systeminstallerare
Comment[sv]=Calamares Systeminstallerare
# Translations
Name[ca]=Calamares
Icon[ca]=calamares
GenericName[ca]=Instal·lador de sistema
Comment[ca]=Calamares Instal·lador de sistema
Name[da]=Calamares
Icon[da]=calamares
GenericName[da]=Systeminstallationsprogram
@ -38,23 +29,83 @@ Name[de]=Calamares
Icon[de]=calamares
GenericName[de]=Installation des Betriebssystems
Comment[de]=Calamares - Installation des Betriebssystems
Name[lt]=Calamares
Icon[lt]=calamares
GenericName[lt]=Sistemos diegimas į kompiuterį
Comment[lt]=Calamares sistemos diegyklė
Name[en_GB]=Calamares
Icon[en_GB]=calamares
GenericName[en_GB]=System Installer
Comment[en_GB]=Calamares System Installer
Name[pl]=Calamares
Icon[pl]=calamares
GenericName[pl]=Instalator systemu
Comment[pl]=Calamares Instalator systemu
Name[pt_PT]=Calamares
Icon[pt_PT]=calamares
GenericName[pt_PT]=Instalador de Sistema
Comment[pt_PT]=Calamares - Instalador de Sistema
Name[es]=Calamares
Icon[es]=calamares
GenericName[es]=Instalador del Sistema
Comment[es]=Calamares Instalador del Sistema
Name[fr]=Calamares
Icon[fr]=calamares
GenericName[fr]=Installateur système
Comment[fr]=Calamares - Installateur système
Name[he]=קלמארס
Icon[he]=קלמארס
GenericName[he]=אשף התקנה
Comment[he]=קלמארס - אשף התקנה
Name[hr]=Calamares
Icon[hr]=calamares
GenericName[hr]=Instalacija sustava
Comment[hr]=Calamares Instalacija sustava
Name[id]=Calamares
Icon[id]=calamares
GenericName[id]=Pemasang
Comment[id]=Calamares Pemasang Sistem
Name[ja]=Calamares
Icon[ja]=calamares
GenericName[ja]=
Comment[ja]=Calamares
Name[lt]=Calamares
Icon[lt]=calamares
GenericName[lt]=Sistemos diegimas į kompiuterį
Comment[lt]=Calamares sistemos diegyklė
Name[nl]=Calamares
Icon[nl]=calamares
GenericName[nl]=Installatieprogramma
Comment[nl]=Calamares Installatieprogramma
Name[pl]=Calamares
Icon[pl]=calamares
GenericName[pl]=Instalator systemu
Comment[pl]=Calamares Instalator systemu
Name[pt_BR]=Calamares
Icon[pt_BR]=calamares
GenericName[pt_BR]=Instalador de Sistema
Comment[pt_BR]=Calamares Instalador de Sistema
Name[cs_CZ]=Calamares
Icon[cs_CZ]=calamares
GenericName[cs_CZ]=Instalační program systému
Comment[cs_CZ]=Calamares - instalační program systému
Name[ru]=Calamares
Icon[ru]=calamares
GenericName[ru]=Установщик системы
Comment[ru]=Calamares - Установщик системы
Name[sk]=Calamares
Icon[sk]=calamares
GenericName[sk]=Inštalátor systému
Comment[sk]=Calamares Inštalátor systému
Name[sv]=Calamares
Icon[sv]=calamares
GenericName[sv]=Systeminstallerare
Comment[sv]=Calamares Systeminstallerare
Name[zh_CN]=Calamares
Icon[zh_CN]=calamares
GenericName[zh_CN]=
Comment[zh_CN]=Calamares
Name[zh_TW]=Calamares
Icon[zh_TW]=calamares
GenericName[zh_TW]=
Comment[zh_TW]=Calamares
Name[ast]=Calamares
Icon[ast]=calamares
GenericName[ast]=Instalador del sistema
Comment[ast]=Calamares Instalador del sistema
Name[pt_PT]=Calamares
Icon[pt_PT]=calamares
GenericName[pt_PT]=Instalador de Sistema
Comment[pt_PT]=Calamares - Instalador de Sistema
Name[tr_TR]=Calamares
Icon[tr_TR]=calamares
GenericName[tr_TR]=Sistem Yükleyici
Comment[tr_TR]=Calamares Sistem Yükleyici

View File

@ -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

View File

@ -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

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>يشغّل عمليّة %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>مسار سيء لمجلد العمل</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>لا يمكن القراءة من مجلد العمل %1 الخاص بعملية بايثون %2.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>ملفّ السّكربت الرّئيس سيّء.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>ملفّ السّكربت الرّئيس %1 لمهمّة بايثون %2 لا يمكن قراءته.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>خطأ Boost.Python في العمل &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>أنهِ</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;غيّر...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>اضبط المنطقة الزّمنيّة إلى %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Salida:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Executando operación %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Camín incorreutu del direutoriu de trabayu</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>El direutoriu de trabayu %1 pal trabayu python %2 nun ye lleible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ficheru incorreutu del script principal</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>El ficheru de script principal %1 pal trabayu python %2 nun ye lleible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Fallu Boost.Python nel trabayu «%1».</translation>
</message>
@ -1038,10 +1038,20 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Finar</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Afitaráse la llingua&apos;l sistema a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Los númberos y dates afitaránse a %1.</translation>
</message>
@ -1257,12 +1267,12 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<translation>&amp;Cambiar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Afitóse&apos;l fusu horariu a %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Изпълнение на %1 операция.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Невалиден път на работната директория</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Работна директория %1 за python задача %2 не се чете.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Невалиден файл на главен скрипт</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Файлът на главен скрипт %1 за python задача %2 не се чете.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python грешка в задача &quot;%1&quot;.</translation>
</message>
@ -1039,10 +1039,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Завърши</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1232,12 +1242,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1258,12 +1268,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Промени...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Постави часовата зона на %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Sortida:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Executant l&apos;operació %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Ruta errònia del directori de treball</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>El directori de treball %1 per a la tasca python %2 no és llegible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Fitxer erroni d&apos;script principal</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>El fitxer de script principal %1 per a la tasca de python %2 no és llegible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Error de Boost.Python a la tasca &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Acaba</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>La llengua del sistema s&apos;establirà a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Els números i les dates de la configuració local s&apos;establiran a %1.</translation>
</message>
@ -1257,12 +1267,12 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>&amp;Canvi...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Estableix la zona horària a %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Výstup:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Spouštím %1 operaci.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Špatná cesta k pracovnímu adresáři.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Pracovní adresář %1 pro Python skript %2 není čitelný.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Špatný hlavní soubor skriptu.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Hlavní soubor %1 pro Python skript %2 není čitelný.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python chyba ve skriptu &quot;%1&quot;.</translation>
</message>
@ -240,7 +240,7 @@ Výstup:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation>Zrušení instalace bez změny systému.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>&amp;Ano</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>&amp;Ne</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>&amp;Zavřít</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>&amp;Hotovo</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation>Instalace dokončena. Zavřete instalátor.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -553,7 +553,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation>MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -613,7 +613,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/>
<translation>Bod připojení je používán. Prosím vyberte jiný.</translation>
</message>
</context>
<context>
@ -928,7 +928,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation>MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -943,7 +943,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="306"/>
<source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/>
<translation>Bod připojení je používán. Prosím vyberte jiný.</translation>
</message>
</context>
<context>
@ -1032,16 +1032,26 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Instalace selhala&lt;/h1&gt;&lt;br/&gt;%1 nebyl instalován na váš počítač.&lt;br/&gt;Hlášení o chybě: %2.</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Dokončit</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Jazyk systému bude nastaven na 1%.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Čísla a data národního prostředí budou nastavena na %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>&amp;Změnit...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nastavit časové pásmo na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1665,7 +1675,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="449"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation type="unfinished"/>
<translation>Kromě šifrovaného kořenového oddílu byl vytvořen i nešifrovaný oddíl zavaděče.&lt;br/&gt;&lt;br/&gt;To by mohl být bezpečnostní problém, protože na nešifrovaném oddílu jsou důležité soubory systému.&lt;br/&gt;Pokud chcete, můžete pokračovat, ale odemykání souborového systému bude probíhat později při startu systému.&lt;br/&gt;Pro zašifrování oddílu zavaděče se vraťte a vytvořte ho vybráním možnosti &lt;strong&gt;Šifrovat&lt;/strong&gt; v okně při vytváření oddílu.</translation>
</message>
</context>
<context>
@ -1837,7 +1847,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
<source>The screen is too small to display the installer.</source>
<translation type="unfinished"/>
<translation>Obrazovka je příliš malá pro zobrazení instalátoru.</translation>
</message>
</context>
<context>
@ -2096,12 +2106,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="119"/>
<source>Cannot disable root account.</source>
<translation type="unfinished"/>
<translation>Nelze zakázat účet root.</translation>
</message>
<message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="120"/>
<source>passwd terminated with error code %1.</source>
<translation type="unfinished"/>
<translation>Příkaz passwd ukončen s chybovým kódem %1.</translation>
</message>
<message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="135"/>
@ -2250,7 +2260,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Vítá vás instalační program Calamares pro %1.&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
@ -2260,7 +2270,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Překladatelský tým Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Vývoj &lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; je podporován &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Kører %1-handling.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Ugyldig arbejdsmappesti</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Arbejdsmappe %1 for python-job %2 er ikke læsbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ugyldig primær skriptfil</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Primær skriptfil %1 for python-job %2 er ikke læsbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python-fejl i job &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Færdig</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Systemsproget vil blive sat til %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Lokalitet for tal og datoer vil blive sat til %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>&amp;Skift...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Sæt tidszone til %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Ausgabe:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Operation %1 wird ausgeführt.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Fehlerhafter Arbeitsverzeichnis-Pfad</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Arbeitsverzeichnis %1 für Python-Job %2 ist nicht lesbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Fehlerhaftes Hauptskript</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Hauptskript-Datei %1 für Python-Job %2 ist nicht lesbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python-Fehler in Job &quot;%1&quot;.</translation>
</message>
@ -240,7 +240,7 @@ Ausgabe:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation>Lösche die Installation ohne das System zu ändern.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>&amp;Ja</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>&amp;Nein</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>&amp;Schließen</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>&amp;Erledigt</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation>Die Installation ist abgeschlossen. Schließe das Installationsprogramm.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -553,7 +553,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation>MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -928,7 +928,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation>MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1032,16 +1032,26 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Installation fehlgeschlagen&lt;/h1&gt;&lt;br/&gt;%1 wurde nicht auf deinem Computer installiert.&lt;br/&gt;Die Fehlermeldung lautet: %2.</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Beenden</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Die Systemsprache wird auf %1 gestellt.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Das Format für Zahlen und Datum wird auf %1 gesetzt.</translation>
</message>
@ -1257,12 +1267,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>&amp;Ändern...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setze Zeitzone auf %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1837,7 +1847,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
<source>The screen is too small to display the installer.</source>
<translation type="unfinished"/>
<translation>Der Bildschirm ist zu klein um das Installationsprogramm anzuzeigen.</translation>
</message>
</context>
<context>
@ -2250,7 +2260,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Willkommen beim Calamares-Installationsprogramm für %1.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
@ -2260,7 +2270,9 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>
&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Danke an: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg und das &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares Übersetzungs-Team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Die Calamares Entwicklung wird gefördert von&lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt; Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Εκτελείται η λειτουργία %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Λανθασμένη διαδρομή καταλόγου εργασίας</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Ο ενεργός κατάλογος %1 για την εργασία python %2 δεν είναι δυνατόν να διαβαστεί.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Λανθασμένο κύριο αρχείο δέσμης ενεργειών</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Η κύρια δέσμη ενεργειών %1 για την εργασία python %2 δεν είναι δυνατόν να διαβαστεί.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Σφάλμα Boost.Python στην εργασία &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Τέλος</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Η τοπική γλώσσα του συστήματος έχει οριστεί σε %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Αλλαγή...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Ορισμός της ζώνης ώρας σε %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Running %1 operation.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Bad working directory path</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Working directory %1 for python job %2 is not readable.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Bad main script file</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Main script file %1 for python job %2 is not readable.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python error in job &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Finish</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation>Installation Complete</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation>The installation of %1 is complete.</translation>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>The system language will be set to %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>The numbers and dates locale will be set to %1.</translation>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</translation>
<translation>&amp;Change...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Set timezone to %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Bad working directory path</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Working directory %1 for python job %2 is not readable.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Bad main script file</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Main script file %1 for python job %2 is not readable.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python error in job &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</translation>
<translation>&amp;Change...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Set timezone to %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -189,32 +189,32 @@ Salida:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Ejecutando %1 operación.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Error en la ruta del directorio de trabajo</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>El directorio de trabajo %1 para el script de python %2 no se puede leer.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Script principal erróneo</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>El script principal %1 del proceso python %2 no es accesible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Error Boost.Python en el proceso &quot;%1&quot;.</translation>
</message>
@ -1039,10 +1039,20 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Finalizar</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1232,12 +1242,12 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>El idioma del sistema se establecerá a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>La localización de números y fechas se establecerá a %1.</translation>
</message>
@ -1258,12 +1268,12 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<translation>&amp;Cambiar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Configurar zona horaria a %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Salida:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Ruta de trabajo errónea</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>No se puede leer la ruta de trabajo %1 de la tarea %2 de python.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Script principal erróneo</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>No se puede leer el script principal %1 de la tarea %2 de python.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Error de Boost.Python en la tarea &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<translation>&amp;Cambiar</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Establecer la zona horaria a %1%2. &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Salida:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Ejecutando operación %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Ruta a la carpeta de trabajo errónea</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>La carpeta de trabajo %1 para la tarea de python %2 no se pudo leer.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Script principal erróneo</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>El script principal %1 del proceso python %2 no es accesible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Error Boost.Python en el proceso &quot;%1&quot;.</translation>
</message>
@ -1040,10 +1040,20 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Terminado</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1233,12 +1243,12 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1259,12 +1269,12 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>&amp;Cambiar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Definir la zona horaria como %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Salida:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>La ruta del directorio de trabajo es incorrecta</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>El directorio de trabajo %1 para el script de python %2 no se puede leer.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Script principal erróneo</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>El script principal %1 del proceso python %2 no es accesible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Error Boost.Python en el proceso &quot;%1&quot;.</translation>
</message>
@ -1037,10 +1037,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1230,12 +1240,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1256,12 +1266,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -186,32 +186,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>%1 eragiketa burutzen.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Direktorio ibilbide ezegokia</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Script fitxategi nagusi okerra</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>%1 script fitxategi nagusia ezin da irakurri python %2 lanerako</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1035,10 +1035,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Bukatu</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1228,12 +1238,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1254,12 +1264,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Aldatu...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Tuloste:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Epäkelpo työskentelyhakemiston polku</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Työkansio %1 pythonin työlle %2 ei ole luettavissa.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Huono pää-skripti tiedosto</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Pääskriptitiedosto %1 pythonin työlle %2 ei ole luettavissa.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python virhe työlle &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation>&amp;Vaihda...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Aseta aikavyöhyke %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Sortie :
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Exécution de l&apos;opération %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Chemin du répertoire de travail invalide</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Le répertoire de travail %1 pour le job python %2 n&apos;est pas accessible en lecture.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Fichier de script principal invalide</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Le fichier de script principal %1 pour la tâche python %2 n&apos;est pas accessible en lecture.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Erreur Boost.Python pour le job &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Terminer</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>La langue du système sera réglée sur %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Les nombres et les dates seront réglés sur %1.</translation>
</message>
@ -1257,12 +1267,12 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<translation>&amp;Modifier...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Configurer le fuseau horaire à %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -189,32 +189,32 @@ Saída:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Excutando a operación %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>A ruta ó directorio de traballo é errónea</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>O directorio de traballo %1 para o traballo de python %2 non é lexible</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ficheiro de script principal erróneo</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>O ficheiro principal de script %1 para a execución de python %2 non é lexible.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python tivo un erro na tarefa &quot;%1&quot;.</translation>
</message>
@ -1039,10 +1039,20 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1232,12 +1242,12 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1258,12 +1268,12 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>מריץ פעולה %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>נתיב תיקיית עבודה לא תקין</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>תיקיית עבודה %1 עבור משימת python %2 לא קריאה.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>קובץ תסריט הרצה ראשי לא תקין</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>קובץ תסריט הרצה ראשי %1 עבור משימת python %2 לא קריא. </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>שגיאת Boost.Python במשימה &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>סיום</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>שפת המערכת תוגדר להיות %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>תבנית של המספרים והתאריכים של המיקום יוגדרו להיות %1.</translation>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;החלף...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>הגדרת אזור זמן ל %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Izlaz:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Izvodim %1 operaciju.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Krivi put do radnog direktorija</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Radni direktorij %1 za python zadatak %2 nije čitljiv.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Kriva glavna datoteka skripte</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Glavna skriptna datoteka %1 za python zadatak %2 nije čitljiva.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python greška u zadatku &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Završi</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Jezik sustava će se postaviti na %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Jezična shema brojeva i datuma će se postaviti na %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>&amp;Promijeni...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Postavi vremesku zonu na %1%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Kimenet:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Futó %1 műveletek.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Rossz munkakönyvtár útvonal</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Munkakönyvtár %1 a python folyamathoz %2 nem olvasható.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Rossz alap script fájl</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Alap script fájl %1 a python folyamathoz %2 nem olvasható.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost. Python hiba ebben a folyamatban &quot;%1&quot;.</translation>
</message>
@ -1039,10 +1039,20 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Befejezés</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1232,12 +1242,12 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>A rendszer területi beállítása %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>A számok és dátumok területi beállítása %1.</translation>
</message>
@ -1258,12 +1268,12 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<translation>&amp;Változtat...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Időzóna beállítása %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Keluaran:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Menjalankan %1 operasi.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Jalur lokasi direktori tidak berjalan baik</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Direktori kerja %1 untuk penugasan python %2 tidak dapat dibaca.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Berkas skrip utama buruk</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Berkas skrip utama %1 untuk penugasan python %2 tidak dapat dibaca.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python mogok dalam penugasan &quot;%1&quot;.</translation>
</message>
@ -240,7 +240,7 @@ Keluaran:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation>Batal pemasangan tanpa mengubah sistem yang ada.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ Pemasangan akan ditutup dan semua perubahan akan hilang.</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>&amp;Ya</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>&amp;Tidak</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>&amp;Tutup</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ Pemasangan akan ditutup dan semua perubahan akan hilang.</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>&amp;Kelar</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation>Pemasangan sudah lengkap. Tutup pemasang.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -555,7 +555,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -930,7 +930,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1034,16 +1034,26 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Pemasangan Gagal&lt;/h1&gt;&lt;br/&gt;%1 tidak bisa dipasang pada komputermu.&lt;br/&gt;Pesan galatnya adalah: %2.</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Selesai</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1233,12 +1243,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Bahasa sistem akan disetel ke %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Nomor dan tanggal lokal akan disetel ke %1.</translation>
</message>
@ -1259,12 +1269,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<translation>&amp;Ubah...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setel zona waktu ke %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1839,7 +1849,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
<source>The screen is too small to display the installer.</source>
<translation type="unfinished"/>
<translation>Layar terlalu kecil untuk menampilkan pemasang.</translation>
</message>
</context>
<context>
@ -2252,7 +2262,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Selamat datang di Calamares pemasang untuk %1.&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
@ -2262,7 +2272,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>%1&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;untuk %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Hak Cipta 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Hak Cipta 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;regu penerjemah Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Pengembangan &lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; disponsori oleh&lt;br/&gt; &lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -188,32 +188,32 @@ Frálag:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Keyri %1 aðgerð.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Röng slóð á vinnumöppu</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Vinnslumappa %1 fyrir python-verkið %2 er ekki lesanleg.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Röng aðal-skriftuskrá</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Aðal-skriftuskrá %1 fyrir python-verkið %2 er ekki lesanleg.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python villa í verkinu &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Ljúka</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Tungumál kerfisins verður sett sem %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>&amp;Breyta...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setja tímabelti sem %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Operazione %1 in esecuzione.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Il percorso della cartella corrente non è corretto</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>La cartella corrente %1 per l&apos;attività di Python %2 non è accessibile.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>File dello script principale non valido</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Il file principale dello script %1 per l&apos;attività di python %2 non è accessibile.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Errore da Boost.Python nell&apos;operazione &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Termina</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>La lingua di sistema sarà impostata a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>I numeri e le date locali saranno impostati a %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<translation>&amp;Cambia...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Imposta il fuso orario a %1%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>python %2 %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>python %2 %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation> &quot;%1&quot; Boost.Python </translation>
</message>
@ -1032,16 +1032,26 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;&lt;/h1&gt;&lt;br/&gt;%1 &lt;br/&gt;: %2.</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1 </translation>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;C...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1837,7 +1847,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
<source>The screen is too small to display the installer.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -2260,7 +2270,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Išvestis:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Vykdoma %1 operacija.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Netinkama darbinio katalogo vieta</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Darbinis %1 python katalogas dėl %2 užduoties yra neskaitomas</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Prastas pagrindinio skripto failas</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Pagrindinis skriptas %1 dėl python %2 užduoties yra neskaitomas</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python klaida darbe &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Pabaiga</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Sistemos kalba bus nustatyta į %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Skaičių ir datų lokalė bus nustatyta į %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>K&amp;eisti...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nustatyti laiko juostą kaip %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Feil filsti til arbeidsmappe</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Arbeidsmappe %1 for python oppgave %2 er ikke lesbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ugyldig hovedskriptfil</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Hovedskriptfil %1 for python oppgave %2 er ikke lesbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python feil i oppgave &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Uitvoer:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Bewerking %1 uitvoeren.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Ongeldig pad voor huidige map </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Werkmap %1 voor python taak %2 onleesbaar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Onjuist hoofdscriptbestand</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Hoofdscriptbestand %1 voor python taak %2 onleesbaar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python fout in taak &quot;%1&quot;.</translation>
</message>
@ -1032,16 +1032,26 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Installatie Mislukt&lt;/h1&gt;&lt;br/&gt;%1 werd niet op de computer geïnstalleerd. &lt;br/&gt;De foutboodschap was: %2</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Beëindigen</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>De taal van het systeem zal worden ingesteld op %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>De getal- en datumnotatie worden ingesteld op %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>&amp;Aanpassen</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Instellen tijdzone naar %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -2260,7 +2270,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;voor %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Met dank aan: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg en het &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares vertaalteam&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;De ontwikkeling van &lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; wordt gesponsord door &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software. </translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -188,32 +188,32 @@ Wyjście:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Wykonuję operację %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Niepoprawna ścieżka katalogu roboczego</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Katalog roboczy %1 dla zadań pythona %2 jest nieosiągalny.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Niepoprawny główny plik skryptu</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Główny plik skryptu %1 dla zadań pythona %2 jest nieczytelny.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Wystąpił błąd Boost.Python w zadaniu &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Koniec</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Język systemu zostanie ustawiony na %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Format liczb i daty zostanie ustawiony na %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>&amp;Zmień...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Ustaw strefę czasową na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Wyjście:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Niepoprawna ścieżka folderu roboczego</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Folder roboczy %1 zadania pythona %2 jest nieosiągalny.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Niepoprawny główny plik skryptu</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Główny plik skryptu %1 zadania pythona %2 jest nieczytelny.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Błąd Boost.Python w zadaniu &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.</translati
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.</translati
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Strefa czasowa %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Saída:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Executando operação %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Caminho de diretório de trabalho ruim</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Diretório de trabalho %1 para a tarefa do python %2 não é legível.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Arquivo de script principal ruim</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Arquivo de script principal %1 para a tarefa do python %2 não é legível.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python erro na tarefa &quot;%1&quot;.</translation>
</message>
@ -240,7 +240,7 @@ Saída:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation>Cancelar instalação sem modificar o sistema.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>&amp;Sim</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>&amp;Não</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>&amp;Fechar</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>Completo</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation>A instalação está completa. Feche o instalador.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -555,7 +555,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -930,7 +930,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1034,16 +1034,26 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;A instalação falhou&lt;/h1&gt;&lt;br/&gt;%1 não foi instalado em seu computador.&lt;br/&gt;A mensagem de erro foi: %2.</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Concluir</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation>Instalação Completa</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation>A instalação do %1 está completa.</translation>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1233,12 +1243,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>O idioma do sistema será definido como %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>O local dos números e datas será definido como %1.</translation>
</message>
@ -1259,12 +1269,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<translation>&amp;Mudar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Definir o fuso horário para %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -2262,7 +2272,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimentos: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Time de tradutores do Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; o desenvolvimento é patrocinado por &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -188,32 +188,32 @@ Saída:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Operação %1 em execução.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Caminho do directório de trabalho errado</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Directório de trabalho %1 para a tarefa python %2 não é legível.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ficheiro de script principal errado</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Ficheiro de script principal %1 para a tarefa python %2 não é legível.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Erro Boost.Python na tarefa &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Finalizar</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>A linguagem do sistema será definida para %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Os números e datas locais serão definidos para %1.</translation>
</message>
@ -1257,12 +1267,12 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>&amp;Alterar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Definir fuso horário para %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Rezultat:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Se rulează operațiunea %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Calea dosarului de lucru este proastă</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Dosarul de lucru %1 pentru sarcina python %2 nu este citibil.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Fișierul script principal este prost</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Fișierul script peincipal %1 pentru sarcina Python %2 nu este citibil.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Eroare Boost.Python în sarcina %1.</translation>
</message>
@ -1038,10 +1038,20 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Termină</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Limba sistemului va fi %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Formatul numerelor și datelor calendaristice va fi %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>S&amp;chimbă</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setează fusul orar la %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Выполняется действие %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Неверный путь к рабочему каталогу</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Рабочий каталог %1 для задачи python %2 недоступен для чтения.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ошибочный главный файл сценария</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Главный файл сценария %1 для задачи python %2 недоступен для чтения.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python ошибка в задаче &quot;%1&quot;.</translation>
</message>
@ -1037,10 +1037,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Завершить</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1230,12 +1240,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Системным языком будет установлен %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Региональным форматом чисел и дат будет установлен %1.</translation>
</message>
@ -1256,12 +1266,12 @@ The installer will quit and all changes will be lost.</source>
<translation>И&amp;зменить...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Установить часовой пояс на %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Výstup:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Spúšťa sa operácia %1.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Nesprávna cesta k pracovnému adresáru</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Pracovný adresár %1 pre úlohu jazyka python %2 nie je možné čítať.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Nesprávny súbor hlavného skriptu</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Súbor hlavného skriptu %1 pre úlohu jazyka python %2 nie je možné čítať.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Chyba knižnice Boost.Python v úlohe %1.</translation>
</message>
@ -1038,10 +1038,20 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Dokončenie</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Jazyk systému bude nastavený na %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Miestne nastavenie čísel a dátumov bude nastavené na %1.</translation>
</message>
@ -1257,12 +1267,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Z&amp;meniť...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nastavenie časovej zóny na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -188,32 +188,32 @@ Izpis:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Nepravilna pot delovne mape</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Ni mogoče brati delovne mape %1 za pythonovo opravilo %2.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Nepravilna datoteka glavnega skripta</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Ni mogoče brati datoteke %1 glavnega skripta za pythonovo opravilo %2.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Napaka Boost.Python v opravilu &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nastavi časovni pas na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Извршавам %1 операцију.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Лоша путања радног директоријума</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Радни директоријум %1 за питонов посао %2 није читљив.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Лош фајл главне скрипте</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Фајл главне скрипте %1 за питонов посао %2 није читљив.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python грешка у послу %1.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Заврши</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Системски језик биће постављен на %1</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Измени...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Povratna poruka:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Neispravna putanja do radne datoteke</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Nemoguće pročitati radnu datoteku %1 za funkciju %2 u Python-u.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Neispravan glavna datoteka za skriptu</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Glavna datoteka za skriptu %1 za Python funkciju %2 se ne može pročitati.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python greška u funkciji %1</translation>
</message>
@ -1038,10 +1038,20 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Postavi vremensku zonu na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Utdata:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>Kör %1-operation</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Arbetskatalogens sökväg är ogiltig</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Arbetskatalog %1 för pythonuppgift %2 är inte läsbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Ogiltig huvudskriptfil</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Huvudskriptfil %1 för pythonuppgift %2 är inte läsbar.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python-fel i uppgift &quot;%&apos;1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ Alla ändringar kommer att gå förlorade.</translation>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Slutför</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>Ändra...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Sätt tidszon till %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation> %1 python %2 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation> %1 python %2 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python &quot;%1&quot;.</translation>
</message>
@ -1038,10 +1038,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;C ...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation>%1 işlemleri yapılıyor.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation>Dizin yolu kötü çalışıyor</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>%2 python işleri için %1 dizinleme çalışırken okunamadı.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation>Sorunlu script</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>%2 python işleri için %1 sorunlu script okunamadı.</translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>Boost.Python hatası &quot;%1&quot;.</translation>
</message>
@ -1041,10 +1041,20 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation>Kurulum Tamam</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1234,12 +1244,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Sistem dili %1 olarak ayarlanacak.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Sayılar ve günler için sistem yereli %1 olarak ayarlanacak.</translation>
</message>
@ -1260,12 +1270,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<translation>&amp;Değiştir...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Bölge ve zaman dilimi %1/%2 olarak ayarlandı.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -182,32 +182,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation type="unfinished"/>
</message>
@ -1031,10 +1031,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1224,12 +1234,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -1250,12 +1260,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

View File

@ -189,32 +189,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation> python %2 %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation> python %2 %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation>%1 Boost.Python </translation>
</message>
@ -1040,10 +1040,20 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1233,12 +1243,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1</translation>
</message>
@ -1259,12 +1269,12 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;C) ...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1%2</translation>

View File

@ -188,32 +188,32 @@ Output:
<context>
<name>Calamares::PythonJob</name>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="252"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
<source>Running %1 operation.</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="267"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
<source>Bad working directory path</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="268"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
<source>Working directory %1 for python job %2 is not readable.</source>
<translation>Python %2 %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="278"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
<source>Bad main script file</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="279"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
<source>Main script file %1 for python job %2 is not readable.</source>
<translation>Python %2 %1 </translation>
</message>
<message>
<location filename="../src/libcalamares/PythonJob.cpp" line="335"/>
<location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
<source>Boost.Python error in job &quot;%1&quot;.</source>
<translation> %1 Boost.Python </translation>
</message>
@ -240,7 +240,7 @@ Output:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>(&amp;Y)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>(&amp;N)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -553,7 +553,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -928,7 +928,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1032,16 +1032,26 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;&lt;/h1&gt;&lt;br/&gt;%1 &lt;br/&gt;%2</translation>
</message>
</context>
<context>
<name>FinishedViewStep</name>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="51"/>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="56"/>
<source>Finish</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="117"/>
<source>Installation Complete</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/finished/FinishedViewStep.cpp" line="118"/>
<source>The installation of %1 is complete.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>FormatPartitionJob</name>
@ -1231,12 +1241,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1</translation>
</message>
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
<translation>...(&amp;C)</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -2260,7 +2270,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares 翻譯團隊&lt;/a&gt;。&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; 開發由 &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software 贊助。</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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ė

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

Some files were not shown because too many files have changed in this diff Show More