Merge branch 'i18n-pythonjob'

main
Adriaan de Groot 7 years ago
commit b3a46c7506

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

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

@ -18,26 +18,50 @@ Name[ast]=Calamares
Icon[ast]=calamares
GenericName[ast]=Instalador del sistema
Comment[ast]=Calamares — Instalador del sistema
Name[he]=קלמארס
Icon[he]=קלמארס
GenericName[he]=אשף התקנה
Comment[he]=קלמארס - אשף התקנה
Name[hr]=Calamares
Icon[hr]=calamares
GenericName[hr]=Instalacija sustava
Comment[hr]=Calamares — Instalacija sustava
Name[ru]=Calamares
Icon[ru]=calamares
GenericName[ru]=Установщик системы
Comment[ru]=Calamares - Установщик системы
Name[sv]=Calamares
Icon[sv]=calamares
GenericName[sv]=Systeminstallerare
Comment[sv]=Calamares — Systeminstallerare
Name[da]=Calamares
Icon[da]=calamares
GenericName[da]=Systeminstallationsprogram
Comment[da]=Calamares — Systeminstallationsprogram
Name[de]=Calamares
Icon[de]=calamares
GenericName[de]=Installation des Betriebssystems
Comment[de]=Calamares - Installation des Betriebssystems
Name[id]=Calamares
Icon[id]=calamares
GenericName[id]=Pemasang
Comment[id]=Calamares — Pemasang Sistem
Name[ca]=Calamares
Icon[ca]=calamares
GenericName[ca]=Instal·lador de sistema
Comment[ca]=Calamares — Instal·lador de sistema
Name[sk]=Calamares
Icon[sk]=calamares
GenericName[sk]=Inštalátor systému
Comment[sk]=Calamares — Inštalátor systému
Name[ja]=Calamares
Icon[ja]=calamares
GenericName[ja]=システムインストーラー
Comment[ja]=Calamares — システムインストーラー
Name[zh_TW]=Calamares
Icon[zh_TW]=calamares
GenericName[zh_TW]=系統安裝程式
Comment[zh_TW]=Calamares ── 系統安裝程式
Name[da]=Calamares
Icon[da]=calamares
GenericName[da]=Systeminstallationsprogram
Comment[da]=Calamares — Systeminstallationsprogram
Name[sv]=Calamares
Icon[sv]=calamares
GenericName[sv]=Systeminstallerare
Comment[sv]=Calamares — Systeminstallerare
Name[ru]=Calamares
Icon[ru]=calamares
GenericName[ru]=Установщик системы
Comment[ru]=Calamares - Установщик системы
Name[lt]=Calamares
Icon[lt]=calamares
GenericName[lt]=Sistemos diegimas į kompiuterį
@ -46,6 +70,10 @@ Name[en_GB]=Calamares
Icon[en_GB]=calamares
GenericName[en_GB]=System Installer
Comment[en_GB]=Calamares — System Installer
Name[es]=Calamares
Icon[es]=calamares
GenericName[es]=Instalador del Sistema
Comment[es]=Calamares — Instalador del Sistema
Name[pl]=Calamares
Icon[pl]=calamares
GenericName[pl]=Instalator systemu
@ -54,6 +82,14 @@ Name[pt_PT]=Calamares
Icon[pt_PT]=calamares
GenericName[pt_PT]=Instalador de Sistema
Comment[pt_PT]=Calamares - Instalador de Sistema
Name[fr]=Calamares
Icon[fr]=calamares
GenericName[fr]=Installateur système
Comment[fr]=Calamares - Installateur système
Name[tr_TR]=Calamares
Icon[tr_TR]=calamares
GenericName[tr_TR]=Sistem Yükleyici
Comment[tr_TR]=Calamares — Sistem Yükleyici
Name[nl]=Calamares
Icon[nl]=calamares
GenericName[nl]=Installatieprogramma

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

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

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;غيّر...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>اضبط المنطقة الزّمنيّة إلى %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,12 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>Afitaráse la llingua&apos;l sistema a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Los númberos y dates afitaránse a %1.</translation>
</message>
@ -1257,12 +1257,12 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<translation>&amp;Cambiar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Afitóse&apos;l fusu horariu a %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1232,12 +1232,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 +1258,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Промени...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Постави часовата зона на %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,12 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>La llengua del sistema s&apos;establirà a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Els números i les dates de la configuració local s&apos;establiran a %1.</translation>
</message>
@ -1257,12 +1257,12 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>&amp;Canvi...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Estableix la zona horària a %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>&amp;Změnit...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nastavit časové pásmo na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>&amp;Skift...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Sæt tidszone til %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -240,7 +240,7 @@ Ausgabe:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation>Lösche die Installation ohne das System zu ändern.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>&amp;Ja</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>&amp;Nein</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>&amp;Schließen</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>&amp;Erledigt</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation>Die Installation ist abgeschlossen. Schließe das Installationsprogramm.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -553,7 +553,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation>MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -928,7 +928,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation>MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1032,7 +1032,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Installation fehlgeschlagen&lt;/h1&gt;&lt;br/&gt;%1 wurde nicht auf deinem Computer installiert.&lt;br/&gt;Die Fehlermeldung lautet: %2.</translation>
</message>
</context>
<context>
@ -1231,12 +1231,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 +1257,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>&amp;Ändern...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setze Zeitzone auf %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1837,7 +1837,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 +2250,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Willkommen beim Calamares-Installationsprogramm für %1.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
@ -2260,7 +2260,9 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>
&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Danke an: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg und das &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares Übersetzungs-Team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Die Calamares Entwicklung wird gefördert von&lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt; Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Αλλαγή...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Ορισμός της ζώνης ώρας σε %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</translation>
<translation>&amp;Change...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Set timezone to %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</translation>
<translation>&amp;Change...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Set timezone to %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1232,12 +1232,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 +1258,12 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<translation>&amp;Cambiar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Configurar zona horaria a %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<translation>&amp;Cambiar</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Establecer la zona horaria a %1%2. &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1233,12 +1233,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 +1259,12 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>&amp;Cambiar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Definir la zona horaria como %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1230,12 +1230,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 +1256,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1228,12 +1228,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 +1254,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Aldatu...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation>&amp;Vaihda...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Aseta aikavyöhyke %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,12 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>La langue du système sera réglée sur %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Les nombres et les dates seront réglés sur %1.</translation>
</message>
@ -1257,12 +1257,12 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<translation>&amp;Modifier...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Configurer le fuseau horaire à %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1232,12 +1232,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 +1258,12 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;החלף...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>הגדרת אזור זמן ל %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>&amp;Promijeni...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Postavi vremesku zonu na %1%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1232,12 +1232,12 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>A rendszer területi beállítása %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>A számok és dátumok területi beállítása %1.</translation>
</message>
@ -1258,12 +1258,12 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<translation>&amp;Változtat...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Időzóna beállítása %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -240,7 +240,7 @@ Keluaran:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation>Batal pemasangan tanpa mengubah sistem yang ada.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ Pemasangan akan ditutup dan semua perubahan akan hilang.</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>&amp;Ya</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>&amp;Tidak</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>&amp;Tutup</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ Pemasangan akan ditutup dan semua perubahan akan hilang.</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>&amp;Kelar</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation>Pemasangan sudah lengkap. Tutup pemasang.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -555,7 +555,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -930,7 +930,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1034,7 +1034,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Pemasangan Gagal&lt;/h1&gt;&lt;br/&gt;%1 tidak bisa dipasang pada komputermu.&lt;br/&gt;Pesan galatnya adalah: %2.</translation>
</message>
</context>
<context>
@ -1233,12 +1233,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 +1259,12 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<translation>&amp;Ubah...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setel zona waktu ke %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1839,7 +1839,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 +2252,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Selamat datang di Calamares pemasang untuk %1.&lt;/h1&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
@ -2262,7 +2262,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>%1&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;untuk %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Hak Cipta 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Hak Cipta 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;regu penerjemah Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Pengembangan &lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; disponsori oleh&lt;br/&gt; &lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

@ -1231,12 +1231,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 +1257,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>&amp;Breyta...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setja tímabelti sem %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,12 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<context>
<name>LocalePage</name>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="236"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
<source>The system language will be set to %1.</source>
<translation>La lingua di sistema sarà impostata a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="239"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>I numeri e le date locali saranno impostati a %1.</translation>
</message>
@ -1257,12 +1257,12 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<translation>&amp;Cambia...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Imposta il fuso orario a %1%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1032,7 +1032,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;&lt;/h1&gt;&lt;br/&gt;%1 &lt;br/&gt;: %2.</translation>
</message>
</context>
<context>
@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;C...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -1837,7 +1837,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 +2260,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>K&amp;eisti...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nustatyti laiko juostą kaip %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1032,7 +1032,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Installatie Mislukt&lt;/h1&gt;&lt;br/&gt;%1 werd niet op de computer geïnstalleerd. &lt;br/&gt;De foutboodschap was: %2</translation>
</message>
</context>
<context>
@ -1231,12 +1231,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 +1257,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>&amp;Aanpassen</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Instellen tijdzone naar %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -2260,7 +2260,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;voor %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Met dank aan: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg en het &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares vertaalteam&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;De ontwikkeling van &lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; wordt gesponsord door &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software. </translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

@ -1231,12 +1231,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 +1257,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>&amp;Zmień...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Ustaw strefę czasową na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ Instalator zakończy działanie i wszystkie zmiany zostaną utracone.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Strefa czasowa %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1233,12 +1233,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 +1259,12 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<translation>&amp;Mudar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Definir o fuso horário para %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>&amp;Alterar...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Definir fuso horário para %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>S&amp;chimbă</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Setează fusul orar la %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1230,12 +1230,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 +1256,12 @@ The installer will quit and all changes will be lost.</source>
<translation>И&amp;зменить...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Установить часовой пояс на %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Z&amp;meniť...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nastavenie časovej zóny na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1231,12 +1231,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 +1257,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Nastavi časovni pas na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Измени...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Postavi vremensku zonu na %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>Ändra...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Sätt tidszon till %1/%2.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;C ...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1234,12 +1234,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 +1260,12 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<translation>&amp;Değiştir...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation>Bölge ve zaman dilimi %1/%2 olarak ayarlandı.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1224,12 +1224,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 +1250,12 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation type="unfinished"/>

@ -1233,12 +1233,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 +1259,12 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;C) ...</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1%2</translation>

@ -240,7 +240,7 @@ Output:
<location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="310"/>
<source>Cancel installation without changing the system.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
@ -257,17 +257,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
<source>&amp;Yes</source>
<translation type="unfinished"/>
<translation>(&amp;Y)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
<source>&amp;No</source>
<translation type="unfinished"/>
<translation>(&amp;N)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="186"/>
<source>&amp;Close</source>
<translation type="unfinished"/>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="238"/>
@ -292,12 +292,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="276"/>
<source>&amp;Done</source>
<translation type="unfinished"/>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="277"/>
<source>The installation is complete. Close the installer.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
@ -553,7 +553,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
@ -928,7 +928,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
<source> MiB</source>
<translation type="unfinished"/>
<translation> MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
@ -1032,7 +1032,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
<source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;&lt;/h1&gt;&lt;br/&gt;%1 &lt;br/&gt;%2</translation>
</message>
</context>
<context>
@ -1231,12 +1231,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 +1257,12 @@ The installer will quit and all changes will be lost.</source>
<translation>...(&amp;C)</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="391"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
<source>Set timezone to %1/%2.&lt;br/&gt;</source>
<translation> %1/%2 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/locale/LocalePage.cpp" line="466"/>
<location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
<source>%1 (%2)</source>
<extracomment>Language (Country)</extracomment>
<translation>%1 (%2)</translation>
@ -2260,7 +2260,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
<source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares 翻譯團隊&lt;/a&gt;。&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; 開發由 &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software 贊助。</translation>
</message>
<message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>

@ -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…
Cancel
Save