Merge branch 'master' of https://github.com/calamares/calamares into development
This commit is contained in:
commit
5df04e5a13
@ -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
|
||||
|
||||
|
@ -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( "" )
|
||||
|
121
CMakeModules/CalamaresAddTranslations.cmake
Normal file
121
CMakeModules/CalamaresAddTranslations.cmake
Normal 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()
|
@ -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
|
||||
|
@ -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
|
||||
|
17
ci/txpush.sh
17
ci/txpush.sh
@ -21,6 +21,12 @@ test -f "CMakeLists.txt" || { echo "! Not at Calamares top-level" ; exit 1 ; }
|
||||
test -f ".tx/config" || { echo "! Not at Calamares top-level" ; exit 1 ; }
|
||||
test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ; }
|
||||
|
||||
if test "x$1" = "x--no-tx" ; then
|
||||
tx() {
|
||||
echo "Skipped tx $*"
|
||||
}
|
||||
fi
|
||||
|
||||
### CREATE TRANSLATIONS
|
||||
#
|
||||
# Use local tools (depending on type of source) to create translation
|
||||
@ -30,7 +36,7 @@ export QT_SELECT=5
|
||||
lupdate src/ -ts -no-obsolete lang/calamares_en.ts
|
||||
|
||||
tx push --source --no-interactive -r calamares.calamares-master
|
||||
tx push --no-interactive -r calamares.fdo
|
||||
tx push --source --no-interactive -r calamares.fdo
|
||||
|
||||
### PYTHON MODULES
|
||||
#
|
||||
@ -47,6 +53,7 @@ tx push --no-interactive -r calamares.fdo
|
||||
# Ubuntu
|
||||
PYGETTEXT=pygettext3
|
||||
|
||||
SHARED_PYTHON=""
|
||||
for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do
|
||||
FILES=$(find "$MODULE_DIR" -name "*.py" -a -type f)
|
||||
if test -n "$FILES" ; then
|
||||
@ -57,6 +64,14 @@ for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d) ; do
|
||||
tx set -r calamares.${MODULE_NAME} --source -l en ${MODULE_DIR}/lang/${MODULE_NAME}.pot
|
||||
tx push --source --no-interactive -r calamares.${MODULE_NAME}
|
||||
fi
|
||||
else
|
||||
SHARED_PYTHON="$SHARED_PYTHON $FILES"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
if test -n "$SHARED_PYTHON" ; then
|
||||
${PYGETTEXT} -p lang -d python $SHARED_PYTHON
|
||||
tx set -r calamares.python --source -l en lang/python.pot
|
||||
tx push --source --no-interactive -r calamares.python
|
||||
fi
|
||||
|
@ -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 "%1".</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 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>&غيّر...</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.<br/></source>
|
||||
<translation>اضبط المنطقة الزّمنيّة إلى %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Fallu Boost.Python nel trabayu «%1».</translation>
|
||||
</message>
|
||||
@ -1038,10 +1038,20 @@ L'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'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'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'instalador colará y perderánse toles camudancies.</translation>
|
||||
<translation>&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.<br/></source>
|
||||
<translation>Afitóse'l fusu horariu a %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python грешка в задача "%1".</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>&Промени...</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.<br/></source>
|
||||
<translation>Постави часовата зона на %1/%2.<br/></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"/>
|
||||
|
@ -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'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'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 "%1".</source>
|
||||
<translation>Error de Boost.Python a la tasca "%1".</translation>
|
||||
</message>
|
||||
@ -1038,10 +1038,20 @@ L'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'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'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'establiran a %1.</translation>
|
||||
</message>
|
||||
@ -1257,12 +1267,12 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
|
||||
<translation>&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.<br/></source>
|
||||
<translation>Estableix la zona horària a %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python chyba ve skriptu "%1".</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>&Yes</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Ano</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Ne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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>&Done</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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 už 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 už 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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>Instalace selhala</h1><br/>%1 nebyl instalován na váš počítač.<br/>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>&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.<br/></source>
|
||||
<translation>Nastavit časové pásmo na %1/%2.<br/></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.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Kromě šifrovaného kořenového oddílu byl vytvořen i nešifrovaný oddíl zavaděče.<br/><br/>To by mohl být bezpečnostní problém, protože na nešifrovaném oddílu jsou důležité soubory systému.<br/>Pokud chcete, můžete pokračovat, ale odemykání souborového systému bude probíhat později při startu systému.<br/>Pro zašifrování oddílu zavaděče se vraťte a vytvořte ho vybráním možnosti <strong>Šifrovat</strong> v okně při vytváření oddílu.</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><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>Vítá vás instalační program Calamares pro %1.</h1></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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Překladatelský tým Calamares</a>.<br/><br/>Vývoj <a href="http://calamares.io/">Calamares</a> je podporován <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python-fejl i job "%1".</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>&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.<br/></source>
|
||||
<translation>Sæt tidszone til %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python-Fehler in Job "%1".</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>&Yes</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Nein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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>&Done</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>Installation fehlgeschlagen</h1><br/>%1 wurde nicht auf deinem Computer installiert.<br/>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>&Ä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.<br/></source>
|
||||
<translation>Setze Zeitzone auf %1/%2.<br/></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><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>
|
||||
|
||||
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Danke an: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg und das <a href="https://www.transifex.com/calamares/calamares/">Calamares Übersetzungs-Team</a>.<br/><br/><a href="http://calamares.io/">Die Calamares Entwicklung wird gefördert von<br/><a href="http://www.blue-systems.com/"> Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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 "%1".</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>&Αλλαγή...</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.<br/></source>
|
||||
<translation>Ορισμός της ζώνης ώρας σε %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python error in job "%1".</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>&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.<br/></source>
|
||||
<translation>Set timezone to %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python error in job "%1".</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>&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.<br/></source>
|
||||
<translation>Set timezone to %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Error Boost.Python en el proceso "%1".</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>&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.<br/></source>
|
||||
<translation>Configurar zona horaria a %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Error de Boost.Python en la tarea "%1".</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>&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.<br/></source>
|
||||
<translation>Establecer la zona horaria a %1%2. <br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Error Boost.Python en el proceso "%1".</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>&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.<br/></source>
|
||||
<translation>Definir la zona horaria como %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Error Boost.Python en el proceso "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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>&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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python virhe työlle "%1".</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>&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.<br/></source>
|
||||
<translation>Aseta aikavyöhyke %1/%2.<br/></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"/>
|
||||
|
@ -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'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'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'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 "%1".</source>
|
||||
<translation>Erreur Boost.Python pour le job "%1".</translation>
|
||||
</message>
|
||||
@ -1038,10 +1038,20 @@ L'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'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'installateur se fermera et les changements seront perdus.</translation>
|
||||
<translation>&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.<br/></source>
|
||||
<translation>Configurer le fuseau horaire à %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python tivo un erro na tarefa "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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>תבנית של המספרים והתאריכים של המיקום יוגדרו להיות %1.</translation>
|
||||
</message>
|
||||
@ -1257,12 +1267,12 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>&החלף...</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.<br/></source>
|
||||
<translation>הגדרת אזור זמן ל %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python greška u zadatku "%1".</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>&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.<br/></source>
|
||||
<translation>Postavi vremesku zonu na %1%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost. Python hiba ebben a folyamatban "%1".</translation>
|
||||
</message>
|
||||
@ -1039,10 +1039,20 @@ Telepítés nem folytatható. <a href="#details">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ó. <a href="#details">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ó. <a href="#details">Részletek...&l
|
||||
<translation>&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.<br/></source>
|
||||
<translation>Időzóna beállítása %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python mogok dalam penugasan "%1".</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>&Yes</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Ya</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Tidak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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>&Done</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>Pemasangan Gagal</h1><br/>%1 tidak bisa dipasang pada komputermu.<br/>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>&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.<br/></source>
|
||||
<translation>Setel zona waktu ke %1/%2.<br/></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><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>Selamat datang di Calamares pemasang untuk %1.</h1></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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>%1<br/><strong>%2<br/>untuk %3</strong><br/><br/>Hak Cipta 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Hak Cipta 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan <a href="https://www.transifex.com/calamares/calamares/">regu penerjemah Calamares</a>.<br/><br/>Pengembangan <a href="http://calamares.io/">Calamares</a> disponsori oleh<br/> <a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python villa í verkinu "%1".</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>&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.<br/></source>
|
||||
<translation>Setja tímabelti sem %1/%2.<br/></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>
|
||||
|
@ -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'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'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 "%1".</source>
|
||||
<translation>Errore da Boost.Python nell'operazione "%1".</translation>
|
||||
</message>
|
||||
@ -1038,10 +1038,20 @@ Il programma d'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'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'installazione sarà terminato e tutte le modifiche andranno
|
||||
<translation>&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.<br/></source>
|
||||
<translation>Imposta il fuso orario a %1%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>ジョブ "%1" での 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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>インストールに失敗しました</h1><br/>%1 はコンピュータにインストールされませんでした。<br/>エラーメッセージ: %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>変更(&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.<br/></source>
|
||||
<translation>タイムゾーンを %1/%2 に設定。<br/></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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python klaida darbe "%1".</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&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.<br/></source>
|
||||
<translation>Nustatyti laiko juostą kaip %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python feil i oppgave "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python fout in taak "%1".</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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>Installatie Mislukt</h1><br/>%1 werd niet op de computer geïnstalleerd. <br/>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>&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.<br/></source>
|
||||
<translation>Instellen tijdzone naar %1/%2.<br/></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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>voor %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Met dank aan: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg en het <a href="https://www.transifex.com/calamares/calamares/">Calamares vertaalteam</a>.<br/><br/>De ontwikkeling van <a href="http://calamares.io/">Calamares</a> wordt gesponsord door <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Wystąpił błąd Boost.Python w zadaniu "%1".</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>&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.<br/></source>
|
||||
<translation>Ustaw strefę czasową na %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Błąd Boost.Python w zadaniu "%1".</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.<br/></source>
|
||||
<translation>Strefa czasowa %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python erro na tarefa "%1".</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>&Yes</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Sim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>&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>&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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>A instalação falhou</h1><br/>%1 não foi instalado em seu computador.<br/>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>&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.<br/></source>
|
||||
<translation>Definir o fuso horário para %1/%2.<br/></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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimentos: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Time de tradutores do Calamares</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> o desenvolvimento é patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Erro Boost.Python na tarefa "%1".</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>&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.<br/></source>
|
||||
<translation>Definir fuso horário para %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</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&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.<br/></source>
|
||||
<translation>Setează fusul orar la %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python ошибка в задаче "%1".</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>И&зменить...</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.<br/></source>
|
||||
<translation>Установить часовой пояс на %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</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&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.<br/></source>
|
||||
<translation>Nastavenie časovej zóny na %1/%2.<br/></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>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Napaka Boost.Python v opravilu "%1".</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.<br/></source>
|
||||
<translation>Nastavi časovni pas na %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</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>&Измени...</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></source>
|
||||
<translation>Postavi vremensku zonu na %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python-fel i uppgift "%'1".</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.<br/></source>
|
||||
<translation>Sätt tidszon till %1/%2.<br/></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"/>
|
||||
|
@ -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 "%1".</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 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>&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.<br/></source>
|
||||
<translation>ตั้งโซนเวลาเป็น %1/%2<br/></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"/>
|
||||
|
@ -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 "%1".</source>
|
||||
<translation>Boost.Python iş hatası "%1".</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>&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.<br/></source>
|
||||
<translation>Bölge ve zaman dilimi %1/%2 olarak ayarlandı.<br/></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>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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.<br/></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"/>
|
||||
|
@ -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 "%1".</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>更改 (&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.<br/></source>
|
||||
<translation>设置时区为 %1/%2。<br/></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>
|
||||
|
@ -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 "%1".</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>&Yes</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>是(&Y)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>否(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
|
||||
<source>&Close</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>關閉(&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>&Done</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>完成(&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><h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>安裝失敗</h1><br/>%1 並未安裝到您的電腦上。<br/>錯誤訊息為:%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>變更...(&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.<br/></source>
|
||||
<translation>設定時區為 %1/%2 。<br/></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><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="http://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>感謝:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="http://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
|
||||
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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ė
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -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
Loading…
Reference in New Issue
Block a user