Release v3.2.61

-----BEGIN PGP SIGNATURE-----
 
 iQGzBAABCAAdFiEESUdADzdGoDiQC7F4Mo10LYgHpDUFAmMGf4UACgkQMo10LYgH
 pDVTdQwAu1DL/yO0gMUFK2caPK2a5UDc8Md7DCCblgt3wNTQHxwNlfFUuf/1YycO
 EQELBDscS+Nqwqp9zNaRYG9jwSTqzKb74WC/X97TgZQp/qr7g5WlyKP4kJ99SkiI
 Q36J1Yb4wK40u96jdQ72K8+meQ2UMmRKNCANfqeXfNYzyd7EYYxqZZ9unaCFBhJA
 zU7mHe6At/ymtV7GVcNf2iZgpzMPWBKnIbL78JDODYdAs/sIflnheSvYo8+zrrd2
 tD/eHwL1pk/1a7qw/oV3NZ1grizxBbw5RG+lRSswWsUQtSL+tihwE/lL7nJv5+J/
 pGuqQwVC3IHYw6VOlkR54NiaugJmn2TDeNnYHoqCkanxFCSiFIMNJMb/vMo+fnMa
 UK5S7C0RXUAhef08fusNYBgxTOseNFOiZCNXs0itgkPmyrfui3nNZOSQbIMREGZM
 zIIOhWQ6Na7OSSqRenFIFpKkzFzU478ggzV7vzqi/XRi7x3QI+e1wml21ujiI7h8
 ukmCIHWa
 =wDuQ
 -----END PGP SIGNATURE-----

Merge tag 'v3.2.61' of https://github.com/calamares/calamares into 3.2.x-stable

Release v3.2.61
This commit is contained in:
Philip Müller 2022-08-25 16:11:42 +02:00
commit 786da4cdf7
145 changed files with 3645 additions and 1720 deletions

View File

@ -10,16 +10,52 @@ website will have to do for older versions.
> Note that the 3.2 series is now in LTS / bug-fix-only mode.
# 3.2.60 (unreleased) #
# 3.2.61 (2022-08-24) #
This is the second community-maintainence release of Calamares 3.2.
It corrects a handful of bugs foud in the stable release. There
are also translation updates.
This release contains contributions from (alphabetically by first name):
- No external contributors yet
- Adriaan de Groot
- Anke Boersma
## Core ##
- No core changes yet
- The "About" and "Debug" buttons in a QWidgets-based panel were no
longer translated. This has been fixed (by re-using translations
of the same buttons from the QML module. #2030 (Thanks Anke)
## Modules ##
- No module changes yet
- *bootloader* Python code slipped in that was incompatible with
the minimum required Python version. #2033 (Thanks Adriaan)
- *locale* fixes a large regression introduced with 3.2.60, where
the location picked for many locales was not the same as in 3.2.59,
and generally peculiar (e.g. picking "English" led to "en_AG" which
is nice if you are in Bermuda, but not expected in the rest of the
world). #2008
- *luksopenswaphookcfg* Remove duplicate options. #1659 (Thanks Anke)
# 3.2.60 (2022-06-19) #
This is the first community-maintainence release of Calamares 3.2.
Somewhat ironically, all the commits in the branch come from
Adriaan de Groot -- the community is working in the 3.3 (*calamares*)
branch.
## Core ##
- No core changes
## Modules ##
- *fstab* now warns when the mount options are empty (which is non-
sensical, and indicates that the configuration is bad).
- *locale* does a better job of preserving Catalan (Valencia)
across modules; previously it dropped the *Valencia*
after the locale module unless you specifically re-selected
`ca@valencia` in the locale module. (Reported by Lliurex)
- *welcome* now has text labels on the special buttons (nominally,
this is part of the core, but the *About* button was always on the
welcome page).
# 3.2.59 (2022-05-29) #

View File

@ -41,7 +41,7 @@
# TODO:3.3: Require CMake 3.12
cmake_minimum_required( VERSION 3.3 FATAL_ERROR )
project( CALAMARES
VERSION 3.2.60
VERSION 3.2.61
LANGUAGES C CXX
)

View File

@ -229,6 +229,10 @@ Name[uk]=Встановити Систему
Icon[uk]=calamares
GenericName[uk]=Встановлювач системи
Comment[uk]=Calamares - Встановлювач системи
Name[uz]=O'rnatish
Icon[uz]=calamares
GenericName[uz]=Sistema o'rnatuvchisi
Comment[uz]=Calamares Sistema o'rnatuvchisi
Name[vi]=Cài đt h thng
Icon[vi]=calamares
GenericName[vi]=B cài đt h thng

74
ci/abicheck.sh Executable file
View File

@ -0,0 +1,74 @@
#! /bin/sh
#
# SPDX-FileCopyrightText: 2021 Adriaan de Groot <groot@kde.org>
# SPDX-License-Identifier: BSD-2-Clause
#
# Compares the ABI of the current working tree with the ABI
# from a base-version. Uses libabigail for the actual comparison.
#
# To use the tool, just run the script. It will build Calamares at
# least once, maybe twice (if it needs the base-version ABI information
# and hasn't cached it).
# The base version can be a tag or git-hash; it will be checked-out
# in a worktree.
#
# Note that the hash here now is 3.2.60, which is sort-of-the
# start of LTS releases. We try to keep ABI compatibility from
# there on out.
BASE_VERSION=b11ee3abc583e571e588fd00afb99d1a528373e6
### Build a tree and cache the ABI info into ci/
#
#
do_build() {
LABEL=$1
SOURCE_DIR=$2
BUILD_DIR=build-abi-$LABEL
rm -rf $BUILD_DIR
mkdir $BUILD_DIR
if ( cd $BUILD_DIR && cmake $SOURCE_DIR -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Og -g -gdwarf" -DCMAKE_C_FLAGS="-Og -g -gdwarf" && make -j12 ) > /dev/null 2>&1
then
ls -1 $BUILD_DIR/libcalamares*.so.*
# Copy the un-versioned files; .so is a symlink to the just-built one
for lib in $BUILD_DIR/libcalamares*.so
do
cp $lib ci/`basename $lib`.$LABEL
done
else
echo "! failed to build $LABEL"
exit 1
fi
}
### Build current tree and get ABI info
#
#
do_build current `pwd -P`
### Build ABI base version
#
# We cache this to save on some build time, if we are chasing a
# single branch from an unchanging base version.
#
if test -f ci/libcalamares.so.$BASE_VERSION
then
# The ABI version is cached, so we're good
:
else
git worktree remove --force tree-abi-$BASE_VERSION
git worktree add tree-abi-$BASE_VERSION $BASE_VERSION > /dev/null 2>&1 || { echo "! could not create worktree for $BASE_VERSION" ; exit 1 ; }
do_build $BASE_VERSION $( cd tree-abi-$BASE_VERSION && pwd -P )
fi
### Compare & Report
#
# abidiff compares the Application Binary Interfaces (ABI) of two
# shared libraries in ELF format. It emits a meaningful report describing
# the differences between the two ABIs.
#
# -l prints only the leaf changes, leaving out explanations of why.
#
abidiff -l ci/libcalamares.so.$BASE_VERSION ci/libcalamares.so.current

View File

@ -120,7 +120,7 @@ tx_sum()
WORKTREE_NAME="$1"
WORKTREE_TAG="$2"
git worktree add $WORKTREE_NAME $WORKTREE_TAG > /dev/null 2>&1 || { echo "! Could not create worktree." ; exit 1 ; }
git worktree add -d $WORKTREE_NAME $WORKTREE_TAG > /dev/null 2>&1 || { echo "! Could not create worktree." ; exit 1 ; }
( cd $WORKTREE_NAME && sh "$CURDIR"/ci/txpush.sh --no-tx ) > /dev/null 2>&1 || { echo "! Could not re-create translations." ; exit 1 ; }
# Remove linenumbers from .ts (XML) and .pot

View File

@ -124,8 +124,8 @@ tx push --source --no-interactive -r calamares.fdo
PYGETTEXT="xgettext --keyword=_n:1,2 -L python"
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)
for MODULE_DIR in $(find src/modules -maxdepth 1 -mindepth 1 -type d | sort) ; do
FILES=$(find "$MODULE_DIR" -name "*.py" -a -type f | sort)
if test -n "$FILES" ; then
MODULE_NAME=$(basename ${MODULE_DIR})
if [ -d ${MODULE_DIR}/lang ]; then

View File

@ -511,12 +511,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 المثبت</translation>
</message>
@ -785,27 +785,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>اضبط طراز لوحة المفتاتيح ليكون %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>اضبط تخطيط لوحة المفاتيح إلى %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3140,7 +3140,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4172,14 +4172,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>التدقيق</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>أظهر معلومات التّنقيح</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -777,27 +777,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>ি %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>ি %1/%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> ি %`1%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>ি %1 ি '</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> ি %1 ি '</translation>
</message>
@ -3101,7 +3101,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4134,14 +4134,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>ি </translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programa de configuración de %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalador de %1</translation>
</message>
@ -777,27 +777,27 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Va afitase'l modelu del tecláu a %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Va afitase la distrubución del tecláu a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>La llingua del sistema va afitase a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>La númberación y data van afitase en %1.</translation>
</message>
@ -3099,7 +3099,7 @@ Salida:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4134,14 +4134,26 @@ Salida:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Amosar la depuración</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Quraşdırıcı proqram</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Quraşdırıcı</translation>
</message>
@ -781,27 +781,27 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Klaviatura modelini %1 olaraq təyin etmək.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Klaviatura qatını %1/%2 olaraq təyin etmək.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Saat quraşağını təyin etmək %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Sistem dili %1 təyin ediləcək.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Yerli say tarix formatı %1 təyin olunacaq.</translation>
</message>
@ -3106,7 +3106,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4141,14 +4141,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Haqqında</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Sazlama</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Calamares haqqında məlumatlar göstərilsin</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Sazlama məlumatlarını göstərmək</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Quraşdırıcı proqram</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Quraşdırıcı</translation>
</message>
@ -781,27 +781,27 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Klaviatura modelini %1 olaraq təyin etmək.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Klaviatura qatını %1/%2 olaraq təyin etmək.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Saat quraşağını təyin etmək %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Sistem dili %1 təyin ediləcək.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Yerli say tarix formatı %1 təyin olunacaq.</translation>
</message>
@ -3106,7 +3106,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4141,14 +4141,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Haqqında</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Sazlama</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Calamares haqqında məlumatlar göstərilsin</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Sazlama məlumatlarını göstərmək</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -505,12 +505,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Праграма ўсталёўкі %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Праграма ўсталёўкі %1</translation>
</message>
@ -779,27 +779,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Вызначыць мадэль клавіятуры %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Вызначыць раскладку клавіятуры %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Вызначыць часавы пояс %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Сістэмнай мовай будзе зроблена %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Рэгіянальным фарматам лічбаў і датаў будзе %1.</translation>
</message>
@ -3121,7 +3121,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4156,14 +4156,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Пра праграму</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Паказаць адладачную інфармацыю</translation>
</message>
</context>
<context>
<name>finishedq</name>

File diff suppressed because it is too large Load Diff

View File

@ -502,12 +502,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -776,27 +776,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>%1- ি </translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>%1/%2 ি ি </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3095,7 +3095,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4127,14 +4127,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>ি </translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programa de configuració %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instal·lador de %1</translation>
</message>
@ -781,27 +781,27 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Establirà el model del teclat a %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Establirà la distribució del teclat a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Estableix la zona horària a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>La llengua del sistema s'establirà a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Els números i les dates de la configuració local s'establiran a %1.</translation>
</message>
@ -3105,7 +3105,7 @@ Sortida:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4140,14 +4140,26 @@ La configuració pot continuar, però algunes característiques podrien estar in
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Quant a</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Depuració</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Mostra informació quant al Calamares.</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Informació de depuració</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programa de configuració %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instal·lador de %1</translation>
</message>
@ -777,27 +777,27 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Estableix el model de teclat en %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Estableix la distribució del teclat a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Estableix el fus horari a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>La llengua del sistema s'establirà en %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Els números i les dates de la configuració local s'establiran en %1.</translation>
</message>
@ -3101,7 +3101,7 @@ Eixida:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4136,14 +4136,26 @@ La configuració pot continuar, però és possible que algunes característiques
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Quant a</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Mostra la informació de depuració</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -511,12 +511,12 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Instalátor %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalátor %1</translation>
</message>
@ -785,27 +785,27 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Nastavit model klávesnice na %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Nastavit rozvržení klávesnice na %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Nastavit časové pásmo na %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Formát zobrazení čísel, data a času bude nastaven dle národního prostředí %1.</translation>
</message>
@ -3127,7 +3127,7 @@ Výstup:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4162,14 +4162,26 @@ Výstup:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>O projektu</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Ladění</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Zobrazit ladící informace</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1-opsætningsprogram</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1-installationsprogram</translation>
</message>
@ -777,27 +777,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Indstil tastaturmodel til %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Indstil tastaturlayout til %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Indstil tidszone til %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Systemets sprog indstilles til %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Lokalitet for tal og datoer indstilles til %1.</translation>
</message>
@ -3101,7 +3101,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4137,14 +4137,26 @@ setting
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Om</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Fejlfinde</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Vis fejlretningsinformation</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -6,18 +6,18 @@
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="17"/>
<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;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; für %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="20"/>
<source>Thanks to &lt;a href="https://calamares.io/team/"&gt;the Calamares team&lt;/a&gt; and the &lt;a href="https://www.transifex.com/calamares/calamares/"&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href="https://calamares.io/"&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href="http://www.blue-systems.com/"&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>Danke an &lt;a href="https://calamares.io/team/"&gt;das Calamares Team&lt;/a&gt; und das &lt;a href="https://www.transifex.com/calamares/calamares/"&gt;Calamares Übersetzer Team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href="https://calamares.io/"&gt;Die Calamares&lt;/a&gt; Entwicklung wird gesponsored von &lt;br/&gt;&lt;a href="http://www.blue-systems.com/"&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="38"/>
<source>Copyright %1-%2 %3 &amp;lt;%4&amp;gt;&lt;br/&gt;</source>
<extracomment>Copyright year-year Name &lt;email-address&gt;</extracomment>
<translation type="unfinished"/>
<translation>Copyright %1-%2 %3 &amp;lt;%4&amp;gt;&lt;br/&gt;</translation>
</message>
</context>
<context>
@ -507,12 +507,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Installationsprogramm</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Installationsprogramm</translation>
</message>
@ -782,27 +782,27 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Setze Tastaturmodell auf %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Setze Tastaturbelegung auf %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Setze Zeitzone auf %1%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Die Systemsprache wird auf %1 eingestellt.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -1454,12 +1454,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="259"/>
<source>Passphrase for existing partition</source>
<translation type="unfinished"/>
<translation>Passwort für existierende Partition</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="260"/>
<source>Partition %1 could not be decrypted with the given passphrase.&lt;br/&gt;&lt;br/&gt;Edit the partition again and give the correct passphrase or delete and create a new encrypted partition.</source>
<translation type="unfinished"/>
<translation>Partition %1 konnte mit diesem Passwort nicht entschlüsselt werden.&lt;br/&gt;&lt;br/&gt;Editieren Sie die Partition erneut und geben Sie das korrekte Passwort an oder löschen Sie diese und erstellen Sie eine neue verschlüsselte Partition.</translation>
</message>
</context>
<context>
@ -2883,17 +2883,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="254"/>
<source>Unsafe partition actions are enabled.</source>
<translation type="unfinished"/>
<translation>Unsichere Partitionierungsaktionen sind aktiviert.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="257"/>
<source>Partitioning is configured to &lt;b&gt;always&lt;/b&gt; fail.</source>
<translation type="unfinished"/>
<translation>Partitionierung ist so eingestellt, dass sie &lt;b&gt;immer&lt;/b&gt; fehlschlägt.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="260"/>
<source>No partitions will be changed.</source>
<translation type="unfinished"/>
<translation>Keine Partitionen werden verändert.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="300"/>
@ -2953,7 +2953,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
<translation>Eine Partitionstabelle vom Typ GPT ist die beste Option für alle Systeme. Dieses Installationsprogramm unterstützt solch ein Setup auch für BIOS-Systeme.&lt;br/&gt;&lt;br/&gt;Um eine GPT-Partition für BIOS-Systeme zu konfigurieren, (wenn nicht bereits geschehen) gehen Sie zurück und setzen Sie die Partitionstabelle auf GPT, als nächstes erstellen Sie eine 8 MB große unformattierte Partition mit der &lt;strong&gt;%2&lt;/strong&gt; Markierung aktiviert.&lt;br/&gt;&lt;br/&gt;Eine unformattierte 8 MB Partition ist nötig, um %1 auf einem BIOS-System mit GPT zu starten.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="626"/>
@ -3106,7 +3106,7 @@ Ausgabe:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4141,14 +4141,26 @@ Ausgabe:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Über</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Beheben von Fehlern</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Informationen über Calamares anzeigen</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Informationen zur Fehlersuche anzeigen</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -502,12 +502,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Εφαρμογή εγκατάστασης του %1</translation>
</message>
@ -776,27 +776,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Ορισμός του μοντέλου πληκτρολογίου σε %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Ορισμός της διάταξης πληκτρολογίου σε %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Η τοπική γλώσσα του συστήματος έχει οριστεί σε %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3095,7 +3095,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4127,14 +4127,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Εμφάνιση πληροφοριών απασφαλμάτωσης</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Setup Program</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Installer</translation>
</message>
@ -781,27 +781,27 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Set keyboard model to %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Set keyboard layout to %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Set timezone to %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3105,7 +3105,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4140,14 +4140,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>About</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Show information about Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Show debug information</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -502,12 +502,12 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Installer</translation>
</message>
@ -776,27 +776,27 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Set keyboard model to %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Set keyboard layout to %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3098,7 +3098,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4130,14 +4130,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Show debug information</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -506,12 +506,12 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Instalilo</translation>
</message>
@ -780,27 +780,27 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3099,7 +3099,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1(%2)</translation>
</message>
@ -4131,14 +4131,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -6,18 +6,18 @@
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="17"/>
<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;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;para %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="20"/>
<source>Thanks to &lt;a href="https://calamares.io/team/"&gt;the Calamares team&lt;/a&gt; and the &lt;a href="https://www.transifex.com/calamares/calamares/"&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href="https://calamares.io/"&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href="http://www.blue-systems.com/"&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>Gracias al &lt;a href="https://calamares.io/team/"&gt;equipo de Calamares&lt;/a&gt; y al &lt;a href="https://www.transifex.com/calamares/calamares/"&gt;equipo de traductores de Calamares&lt;/a&gt;. &lt;br/&gt;&lt;br/&gt;El desarrollo de &lt;a href="https://calamares.io/"&gt;Calamares&lt;/a&gt; está patrocinado por &lt;br/&gt;&lt;a href="http://www.blue-systems.com/"&gt;Blue Systems&lt;/a&gt;- Liberador de Software.</translation>
</message>
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="38"/>
<source>Copyright %1-%2 %3 &amp;lt;%4&amp;gt;&lt;br/&gt;</source>
<extracomment>Copyright year-year Name &lt;email-address&gt;</extracomment>
<translation type="unfinished"/>
<translation>Copyright %1-%2 %3 &amp;lt;%4&amp;gt;&lt;br/&gt;</translation>
</message>
</context>
<context>
@ -509,12 +509,12 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programa de configuración de %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalador de %1</translation>
</message>
@ -783,27 +783,27 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Establecer el modelo de teclado como %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Establecer la disposición de teclado a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Configurar el huso horario a %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>El formato de números y fechas aparecerá en %1.</translation>
</message>
@ -1455,12 +1455,12 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="259"/>
<source>Passphrase for existing partition</source>
<translation type="unfinished"/>
<translation>Frase de contraseña para la partición existente</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="260"/>
<source>Partition %1 could not be decrypted with the given passphrase.&lt;br/&gt;&lt;br/&gt;Edit the partition again and give the correct passphrase or delete and create a new encrypted partition.</source>
<translation type="unfinished"/>
<translation>La partición %1 no se pudo descifrar con la frase de contraseña proporcionada. Edite la partición nuevamente y proporcione la frase de contraseña correcta o elimine y cree una nueva partición cifrada.</translation>
</message>
</context>
<context>
@ -3116,7 +3116,7 @@ Información de salida:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4151,14 +4151,26 @@ Información de salida:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Acerca de</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Depurar</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Mostrar información acerca de Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Ver la información de depuración.</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -505,12 +505,12 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Programa de instalación</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Instalador</translation>
</message>
@ -780,27 +780,27 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Ajustar el modelo de teclado a %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Ajustar teclado a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>El lenguaje del sistema será establecido a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Los números y datos locales serán establecidos a %1.</translation>
</message>
@ -3111,7 +3111,7 @@ Salida
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4144,14 +4144,26 @@ Salida
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Depurar</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Mostrar información de depuración</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -777,27 +777,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3105,7 +3105,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4137,14 +4137,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -502,12 +502,12 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 paigaldaja</translation>
</message>
@ -776,27 +776,27 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Sea klaviatuurimudeliks %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Sea klaviatuuripaigutuseks %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Süsteemikeeleks määratakse %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Arvude ja kuupäevade lokaaliks seatakse %1.</translation>
</message>
@ -3098,7 +3098,7 @@ Väljund:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4130,14 +4130,26 @@ Väljund:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Silu</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Kuva silumisteavet</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -502,12 +502,12 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Instalatzailea</translation>
</message>
@ -776,27 +776,27 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Ezarri teklatu mota %1ra.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Ezarri teklatu diseinua %1%2ra.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>%1 ezarriko da sistemako hizkuntza bezala.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Zenbaki eta daten eskualdea %1-(e)ra ezarri da.</translation>
</message>
@ -3097,7 +3097,7 @@ Irteera:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4129,14 +4129,26 @@ Irteera:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Honi buruz</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Erakutsi arazte informazioa</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 برنامه راهاندازی</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>نصبکنندهٔ %1</translation>
</message>
@ -781,27 +781,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>تنظیم مدل صفحهکلید به %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>تنظیم چینش صفحهکلید به %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>منطقه زمانی را تنظیم کنید 1%</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>زبان سامانه به %1 تنظیم خواهد شد.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>محلی و اعداد و تاریخ ها روی٪ 1 تنظیم می شوند.</translation>
</message>
@ -3100,7 +3100,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4135,14 +4135,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>درباره</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>نمایش اطّلاعات اشکالزدایی</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1-asennusohjelma</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1-asentaja</translation>
</message>
@ -781,27 +781,27 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Aseta näppäimiston malli %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Aseta näppäimiston asetteluksi %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Aseta aikavyöhykkeeksi %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Järjestelmän kielen asetuksena on %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Numerot ja päivämäärät, paikallinen asetus on %1.</translation>
</message>
@ -3106,7 +3106,7 @@ Ulostulo:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4141,14 +4141,26 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.&lt;/
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Tietoa</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Virheiden etsintä</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Näytä virheenkorjaustiedot</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -509,12 +509,12 @@ L'installateur se fermera et les changements seront perdus.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programme de configuration de %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Installateur %1</translation>
</message>
@ -783,27 +783,27 @@ L'installateur se fermera et les changements seront perdus.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Configurer le modèle de clavier à %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Configurer la disposition clavier à %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Configurer timezone sur %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3117,7 +3117,7 @@ Sortie
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4152,14 +4152,26 @@ Sortie
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>À propos</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Débug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Afficher les informations de dépannage</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Program di configurazion di %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Program di instalazion di %1</translation>
</message>
@ -777,27 +777,27 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Stabilî il model di tastiere a %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Stabilî la disposizion di tastiere a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Stabilî il fûs orari a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>La lenghe dal sisteme e vignarà configurade a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>La localizazion dai numars e des datis e vignarà configurade a %1.</translation>
</message>
@ -3101,7 +3101,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4136,14 +4136,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Informazions</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Mostre informazions di debug</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalador de %1</translation>
</message>
@ -777,27 +777,27 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Seleccionado modelo de teclado a %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Seleccionada a disposición do teclado a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>A linguaxe do sistema será establecida a %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>A localización de números e datas será establecida a %1.</translation>
</message>
@ -3099,7 +3099,7 @@ Saída:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4131,14 +4131,26 @@ Saída:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Mostrar informes de depuración</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -511,12 +511,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>תכנית התקנת %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>אשף התקנת %1</translation>
</message>
@ -785,27 +785,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>הגדרת דגם המקלדת בתור %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>הגדרת פריסת לוח המקשים בתור %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>הגדרת אזור הזמן לכדי %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>שפת המערכת תוגדר להיות %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>תבנית של המספרים והתאריכים של המיקום יוגדרו להיות %1.</translation>
</message>
@ -3127,7 +3127,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4162,14 +4162,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>על אודות</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>ניפוי שגיאות</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>הצגת מידע על Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>הצגת מידע ניפוי שגיאות</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -781,27 +781,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> ि %1/%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>ि %1 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> ि ि %1 </translation>
</message>
@ -3105,7 +3105,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4140,14 +4140,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation> </translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation> ि</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -509,12 +509,12 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 instalacijski program</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Instalacijski program</translation>
</message>
@ -783,27 +783,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Postavi model tipkovnice na %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Postavi raspored tipkovnice na %1%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Postavi vremesku zonu na %1%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Regionalne postavke brojeva i datuma će se postaviti na %1.</translation>
</message>
@ -3116,7 +3116,7 @@ Izlaz:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4151,14 +4151,26 @@ Postavljanje se može nastaviti, ali neke će značajke možda biti onemogućene
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>O programu</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Uklanjanje grešaka</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Prikaži informacije o Calamares instalacijskom programu</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Prikaži debug informaciju</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ Minden változtatás elveszik, ha kilépsz a telepítőből.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Program telepítése</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Telepítő</translation>
</message>
@ -777,27 +777,27 @@ Minden változtatás elveszik, ha kilépsz a telepítőből.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Billentyűzet típus beállítása %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Billentyűzet kiosztás beállítása %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3100,7 +3100,7 @@ Kimenet:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4133,14 +4133,26 @@ Calamares hiba %1.</translation>
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Hibakeresés</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Hibakeresési információk mutatása</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -500,12 +500,12 @@ Instalasi akan ditutup dan semua perubahan akan hilang.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Installer %1</translation>
</message>
@ -774,27 +774,27 @@ Instalasi akan ditutup dan semua perubahan akan hilang.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Setel model papan ketik ke %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Setel tata letak papan ketik ke %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Terapkan zona waktu ke %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Nomor dan tanggal lokal akan disetel ke %1.</translation>
</message>
@ -3088,7 +3088,7 @@ Keluaran:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4120,14 +4120,26 @@ Keluaran:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Tampilkan informasi debug</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Configiration de %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Installator de %1</translation>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Pri</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -502,12 +502,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 uppsetningarforrit</translation>
</message>
@ -776,27 +776,27 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3095,7 +3095,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4127,14 +4127,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Birta villuleitarupplýsingar</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -504,12 +504,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Programma d'installazione</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Programma di installazione</translation>
</message>
@ -778,27 +778,27 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Impostare il modello di tastiera a %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Impostare il layout della tastiera a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Imposta fuso orario a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3109,7 +3109,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4141,14 +4141,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Informazioni su</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Mostra le informazioni di debug</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -499,12 +499,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -773,27 +773,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3083,7 +3083,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4115,14 +4115,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -505,12 +505,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -779,27 +779,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> %1/%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1/%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1 </translation>
</message>
@ -3096,7 +3096,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4131,14 +4131,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>About</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Calamares </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation></translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -505,12 +505,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -779,27 +779,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1 .&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> %1/%2 .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1/%2 .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1 .</translation>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4129,14 +4129,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Calamares에 </translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Calamares에 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation> </translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -499,12 +499,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -773,27 +773,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3083,7 +3083,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4115,14 +4115,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -511,12 +511,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 sąrankos programa</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 diegimo programa</translation>
</message>
@ -785,27 +785,27 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Nustatyti klaviatūros modelį kaip %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Nustatyti klaviatūros išdėstymą kaip %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Nustatyti laiko juostą į %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Sistemos kalba bus nustatyta į %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Skaičių ir datų lokalė bus nustatyta į %1.</translation>
</message>
@ -3127,7 +3127,7 @@ Išvestis:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4162,14 +4162,26 @@ Išvestis:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Apie</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Derinti</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Rodyti informaciją apie Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Rodyti derinimo informaciją</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -777,27 +777,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3105,7 +3105,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4137,14 +4137,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -777,27 +777,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1 ി ി.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> ി %1%2 ി ി.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>ി %1 ി .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> &amp; ി ി %1 ി ി.</translation>
</message>
@ -3099,7 +3099,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4131,14 +4131,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>ി</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation> ി ി</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 ि</translation>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation> ि </translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -502,12 +502,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Installasjonsprogram</translation>
</message>
@ -776,27 +776,27 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Sett tastaturmodell til %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Sett tastaturoppsett til %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3095,7 +3095,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4127,14 +4127,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Vis feilrettingsinformasjon</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Voorbereidingsprogramma</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Installatieprogramma</translation>
</message>
@ -781,27 +781,27 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Instellen toetsenbord model naar %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Instellen toetsenbord lay-out naar %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Zet tijdzone naar %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>De getal- en datumnotatie worden ingesteld op %1.</translation>
</message>
@ -3103,7 +3103,7 @@ Uitvoer:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4136,14 +4136,26 @@ De installatie kan niet doorgaan.</translation>
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Over</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Fouten opsporen</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Toon debug informatie</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programa de configuracion %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Installador de %1</translation>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>A prepaus</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Afichar las informacions de desbugatge</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -179,12 +179,12 @@
<message>
<location filename="../src/libcalamares/JobExample.cpp" line="29"/>
<source>Job failed (%1)</source>
<translation type="unfinished"/>
<translation>Zadanie nie powiodło się (%1)</translation>
</message>
<message>
<location filename="../src/libcalamares/JobExample.cpp" line="30"/>
<source>Programmed job failure was explicitly requested.</source>
<translation type="unfinished"/>
<translation>Wyraźnie zażądano zaprogramowanej awarii zadania.</translation>
</message>
</context>
<context>
@ -200,7 +200,7 @@
<message>
<location filename="../src/libcalamares/JobExample.cpp" line="17"/>
<source>Example job (%1)</source>
<translation type="unfinished"/>
<translation>Przykładowe zadanie (%1)</translation>
</message>
</context>
<context>
@ -292,17 +292,17 @@
<message numerus="yes">
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="119"/>
<source>(%n second(s))</source>
<translation type="unfinished">
<numerusform/>
<numerusform/>
<numerusform/>
<numerusform/>
<translation>
<numerusform>(%n sekunda)</numerusform>
<numerusform>(%n sekundy)</numerusform>
<numerusform>(%n sekund)</numerusform>
<numerusform>(%n sekund)</numerusform>
</translation>
</message>
<message>
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="124"/>
<source>System-requirements checking is complete.</source>
<translation type="unfinished"/>
<translation>Sprawdzanie wymagań systemowych zostało zakończone.</translation>
</message>
</context>
<context>
@ -384,7 +384,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="312"/>
<source>The %1 setup program is about to make changes to your disk in order to set up %2.&lt;br/&gt;&lt;strong&gt;You will not be able to undo these changes.&lt;/strong&gt;</source>
<translation type="unfinished"/>
<translation>Program instalacyjny %1 dokona zmian na dysku, aby skonfigurować %2.&lt;br/&gt;&lt;strong&gt;Nie będzie można cofnąć tych zmian.&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="315"/>
@ -394,7 +394,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="318"/>
<source>&amp;Set up now</source>
<translation type="unfinished"/>
<translation>U&amp;staw teraz</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="318"/>
@ -409,7 +409,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="376"/>
<source>&amp;Set up</source>
<translation type="unfinished"/>
<translation>U&amp;staw</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="376"/>
@ -419,7 +419,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="378"/>
<source>Setup is complete. Close the setup program.</source>
<translation type="unfinished"/>
<translation>Konfiguracja jest zakończona. Zamknij program instalacyjny.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="379"/>
@ -429,7 +429,7 @@ Link copied to clipboard</source>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="381"/>
<source>Cancel setup without changing the system.</source>
<translation type="unfinished"/>
<translation>Anuluj konfigurację bez zmiany w systemie.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="382"/>
@ -470,7 +470,8 @@ Link copied to clipboard</source>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="496"/>
<source>Do you really want to cancel the current setup process?
The setup program will quit and all changes will be lost.</source>
<translation type="unfinished"/>
<translation>Czy naprawdę chcesz anulować bieżący proces konfiguracji?
Program instalacyjny zostanie zamknięty, a wszystkie zmiany zostaną utracone.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="498"/>
@ -506,12 +507,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
<translation>%1 Program instalacyjny</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalator %1</translation>
</message>
@ -780,27 +781,27 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Ustaw model klawiatury na %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Ustaw model klawiatury na %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Format liczb i daty zostanie ustawiony na %1.</translation>
</message>
@ -1245,7 +1246,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/partition/gui/CreateVolumeGroupDialog.cpp" line="28"/>
<source>Create Volume Group</source>
<translation type="unfinished"/>
<translation>Utwórz grupę woluminów</translation>
</message>
</context>
<context>
@ -1580,12 +1581,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="75"/>
<source>&lt;h1&gt;All done.&lt;/h1&gt;&lt;br/&gt;%1 has been set up on your computer.&lt;br/&gt;You may now start using your new system.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Wszystko gotowe.&lt;/h1&gt;&lt;br/&gt;%1 został skonfigurowany na twoim komputerze.&lt;br/&gt;Możesz teraz zacząć używać swojego nowego systemu.</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="79"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When this box is checked, your system will restart immediately when you click on &lt;span style="font-style:italic;"&gt;Done&lt;/span&gt; or close the setup program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"/>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Gdy to pole jest zaznaczone, system będzie uruchamiany ponownie natychmiast po kliknięciu na &lt;span style="font-style:italic;"&gt;Ukończone&lt;/span&gt; lub zamknięciu programu instalacyjnego.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="87"/>
@ -1595,12 +1596,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="92"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When this box is checked, your system will restart immediately when you click on &lt;span style="font-style:italic;"&gt;Done&lt;/span&gt; or close the installer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"/>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Gdy to pole jest zaznaczone, system będzie uruchamiany ponownie natychmiast po kliknięciu na &lt;span style="font-style:italic;"&gt;Ukończone&lt;/span&gt; lub zamknięciu programu instalacyjnego.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="105"/>
<source>&lt;h1&gt;Setup Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been set up on your computer.&lt;br/&gt;The error message was: %2.</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;Instalacja nie powiodła się&lt;/h1&gt;&lt;br/&gt;%1 nie został zainstalowany na twoim komputerze.&lt;br/&gt;Komunikat o błędzie: %2.</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="113"/>
@ -1663,12 +1664,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="158"/>
<source>There is not enough drive space. At least %1 GiB is required.</source>
<translation type="unfinished"/>
<translation>Nie ma wystarczającej ilości miejsca na dysku. Wymagane jest przynajmniej %1 GiB.</translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="166"/>
<source>has at least %1 GiB working memory</source>
<translation type="unfinished"/>
<translation>ma przynajmniej %1 GiB pamięci roboczej</translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="168"/>
@ -1703,7 +1704,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="197"/>
<source>The setup program is not running with administrator rights.</source>
<translation type="unfinished"/>
<translation>Program instalacyjny nie jest uruchomiony z prawami administratora.</translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="198"/>
@ -1718,7 +1719,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="210"/>
<source>The screen is too small to display the setup program.</source>
<translation type="unfinished"/>
<translation>Ekran jest zbyt mały, aby wyświetlić program konfiguracyjny.</translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/GeneralRequirements.cpp" line="211"/>
@ -1747,17 +1748,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/oemid/IDJob.cpp" line="40"/>
<source>Could not create directories &lt;code&gt;%1&lt;/code&gt;.</source>
<translation type="unfinished"/>
<translation>Nie można utworzyć katalogów &lt;code&gt;%1&lt;/code&gt;.</translation>
</message>
<message>
<location filename="../src/modules/oemid/IDJob.cpp" line="53"/>
<source>Could not open file &lt;code&gt;%1&lt;/code&gt;.</source>
<translation type="unfinished"/>
<translation>Nie można otworzyć pliku &lt;code&gt;%1&lt;/code&gt;.</translation>
</message>
<message>
<location filename="../src/modules/oemid/IDJob.cpp" line="60"/>
<source>Could not write to file &lt;code&gt;%1&lt;/code&gt;.</source>
<translation type="unfinished"/>
<translation>Nie można zapisać do pliku &lt;code&gt;%1&lt;/code&gt;.</translation>
</message>
</context>
<context>
@ -1962,7 +1963,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/license/LicenseWidget.cpp" line="186"/>
<source>Hide license text</source>
<translation type="unfinished"/>
<translation>Ukryj tekst licencji</translation>
</message>
<message>
<location filename="../src/modules/license/LicenseWidget.cpp" line="186"/>
@ -2210,12 +2211,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/oemid/OEMPage.ui" line="32"/>
<source>Ba&amp;tch:</source>
<translation type="unfinished"/>
<translation>Par&amp;tia:</translation>
</message>
<message>
<location filename="../src/modules/oemid/OEMPage.ui" line="42"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Enter a batch-identifier here. This will be stored in the target system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"/>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wprowadź tutaj identyfikator partii. Zostanie on zapisany w systemie docelowym.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../src/modules/oemid/OEMPage.ui" line="52"/>
@ -2569,7 +2570,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/packagechooser/page_package.ui" line="50"/>
<source>Product Name</source>
<translation type="unfinished"/>
<translation>Nazwa produktu</translation>
</message>
<message>
<location filename="../src/modules/packagechooser/page_package.ui" line="63"/>
@ -2982,7 +2983,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="718"/>
<source>has at least one disk device available.</source>
<translation type="unfinished"/>
<translation>jest dostępne co najmniej jedno urządzenie dyskowe.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="719"/>
@ -3014,7 +3015,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="79"/>
<source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is set up. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source>
<translation type="unfinished"/>
<translation>Proszę wybrać wygląd i styl dla pulpitu KDE Plazma. Możesz również pominąć ten krok i skonfigurować je po zainstalowaniu systemu. Kliknięcie na wybranym wyglądzie i stylu spowoduje wyświetlenie ich podglądu na żywo.</translation>
</message>
<message>
<location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="84"/>
@ -3120,7 +3121,7 @@ Wyjście:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -3177,7 +3178,7 @@ Wyjście:
<message>
<location filename="../src/modules/packagechooser/PackageModel.cpp" line="74"/>
<source>No product</source>
<translation type="unfinished"/>
<translation>Brak produktu</translation>
</message>
<message>
<location filename="../src/modules/packagechooser/PackageModel.cpp" line="82"/>
@ -3928,12 +3929,12 @@ i nie uruchomi się</translation>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="190"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
<translation>&lt;small&gt;Jeśli z tego komputera będzie korzystać więcej niż jedna osoba, po skonfigurowaniu można utworzyć wiele kont.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="196"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
<translation>&lt;small&gt;Jeśli z tego komputera będzie korzystać więcej niż jedna osoba, po instalacji można utworzyć wiele kont.&lt;/small&gt;</translation>
</message>
</context>
<context>
@ -3972,7 +3973,7 @@ i nie uruchomi się</translation>
<message>
<location filename="../src/modules/partition/gui/VolumeGroupBaseDialog.ui" line="18"/>
<source>Create Volume Group</source>
<translation type="unfinished"/>
<translation>Utwórz grupę woluminów</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/VolumeGroupBaseDialog.ui" line="24"/>
@ -4081,7 +4082,7 @@ i nie uruchomi się</translation>
<message>
<location filename="../src/calamares/DebugWindow.cpp" line="319"/>
<source>About %1 setup</source>
<translation type="unfinished"/>
<translation>Informacje o konfiguracji %1 </translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.cpp" line="320"/>
@ -4153,14 +4154,26 @@ i nie uruchomi się</translation>
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>O nas</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Pokaż informacje debugowania</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -509,12 +509,12 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programa de configuração %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalador %1</translation>
</message>
@ -783,27 +783,27 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Definir o modelo de teclado para %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Definir o layout do teclado para %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Definir o fuso horário para %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>A localidade dos números e datas será definida como %1.</translation>
</message>
@ -3116,7 +3116,7 @@ Saída:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4151,14 +4151,26 @@ Saída:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Sobre</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Depuração</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Mostrar informações sobre o Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Exibir informações de depuração</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -451,7 +451,7 @@ Ligação copiada para a área de transferência</translation>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="403"/>
<source>&amp;Done</source>
<translation>&amp;Feito</translation>
<translation>&amp;Concluído</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="422"/>
@ -509,12 +509,12 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Programa de Instalação</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Instalador</translation>
</message>
@ -524,7 +524,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation>A definir a identificação do sistema de ficheiros em %1</translation>
<translation>A definir a identificação do sistema de ficheiros em %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
@ -603,7 +603,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1226"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<translation>Nenhuma partição de sistema EFI foi encontrada neste sistema. Por favor volte atrás e use o particionamento manual para configurar %1.</translation>
<translation>Nenhuma partição de sistema EFI foi encontrada neste sistema. Volte atrás e use o particionamento manual para configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1234"/>
@ -705,7 +705,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="272"/>
<source>Successfully unmounted %1.</source>
<translation>% 1 desmontado com sucesso.</translation>
<translation>%1 desmontado com sucesso.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="279"/>
@ -715,17 +715,17 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="305"/>
<source>Successfully cleared swap %1.</source>
<translation>Swap % 1 limpa com sucesso.</translation>
<translation>Swap %1 limpa com sucesso.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="319"/>
<source>Successfully closed mapper device %1.</source>
<translation>Dispositivo mapeador % 1 fechado com sucesso.</translation>
<translation>Dispositivo mapeador %1 fechado com sucesso.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="332"/>
<source>Successfully disabled volume group %1.</source>
<translation>Grupo de volume % 1 desativado com sucesso.</translation>
<translation>Grupo de volume %1 desativado com sucesso.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="371"/>
@ -783,27 +783,27 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Definir o modelo do teclado para %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Definir esquema do teclado para %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Definir fuso horário para %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>O idioma do sistema será definido para %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -980,7 +980,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="113"/>
<source>Please pick a product from the list. The selected product will be installed.</source>
<translation>Por favor, escolha um produto da lista. O produto selecionado será instalado.</translation>
<translation>Escolha um produto da lista. O produto selecionado será instalado.</translation>
</message>
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="243"/>
@ -1046,7 +1046,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation>Principal</translation>
<translation>Pri&amp;mária</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1106,7 +1106,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="91"/>
<source>Mountpoint already in use. Please select another one.</source>
<translation>Ponto de montagem em uso. Por favor selecione outro.</translation>
<translation>Ponto de montagem em uso. Selecione outro.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
@ -1341,7 +1341,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="80"/>
<source>&lt;br&gt;&lt;br&gt;This partition table type is only advisable on older systems which start from a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment. GPT is recommended in most other cases.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Warning:&lt;/strong&gt; the MBR partition table is an obsolete MS-DOS era standard.&lt;br&gt;Only 4 &lt;em&gt;primary&lt;/em&gt; partitions may be created, and of those 4, one can be an &lt;em&gt;extended&lt;/em&gt; partition, which may in turn contain many &lt;em&gt;logical&lt;/em&gt; partitions.</source>
<translation>&lt;br&gt;&lt;br&gt;Este tipo de tabela de partições é aconselhável apenas em sistemas mais antigos que iniciam a partir de um ambiente de arranque &lt;strong&gt;BIOS&lt;/strong&gt;. GPT é recomendado na maior parte dos outros casos.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Aviso:&lt;/strong&gt; A tabela de partições MBR é um standard obsoleto da era MS-DOS.&lt;br&gt;Apenas 4 partições &lt;em&gt;primárias&lt;/em&gt; podem ser criadas, e dessa 4, apenas uma pode ser partição &lt;em&gt;estendida&lt;/em&gt;, que por sua vez podem ser tornadas em várias partições &lt;em&gt;lógicas&lt;/em&gt;.</translation>
<translation>&lt;br&gt;&lt;br&gt;Este tipo de tabela de partições é aconselhável apenas em sistemas mais antigos que iniciam a partir de um ambiente de arranque &lt;strong&gt;BIOS&lt;/strong&gt;. GPT é recomendado na maior parte dos outros casos.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Aviso:&lt;/strong&gt; A tabela de partições MBR é um padrão obsoleto da era MS-DOS.&lt;br&gt;Apenas 4 partições &lt;em&gt;primárias&lt;/em&gt; podem ser criadas, e dessas 4, apenas uma pode ser partição &lt;em&gt;estendida&lt;/em&gt;, que por sua vez podem ser tornadas em várias partições &lt;em&gt;lógicas&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="151"/>
@ -1494,7 +1494,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<location filename="../src/modules/partition/gui/EncryptWidget.cpp" line="156"/>
<location filename="../src/modules/partition/gui/EncryptWidget.cpp" line="166"/>
<source>Please enter the same passphrase in both boxes.</source>
<translation>Por favor insira a mesma frase-passe em ambas as caixas.</translation>
<translation>Introduza a mesma frase-passe em ambas as caixas.</translation>
</message>
</context>
<context>
@ -1593,7 +1593,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="87"/>
<source>&lt;h1&gt;All done.&lt;/h1&gt;&lt;br/&gt;%1 has been installed on your computer.&lt;br/&gt;You may now restart into your new system, or continue using the %2 Live environment.</source>
<translation>&lt;h1&gt;Tudo feito&lt;/h1&gt;&lt;br/&gt;%1 foi instalado no seu computador.&lt;br/&gt;Pode agora reiniciar para o seu novo sistema, ou continuar a usar o %2 ambiente Live.</translation>
<translation>&lt;h1&gt;Tudo concluído&lt;/h1&gt;&lt;br/&gt;%1 foi instalado no seu computador.&lt;br/&gt;Pode agora reiniciar para o seu novo sistema, ou continuar a usar o %2 ambiente Live.</translation>
</message>
<message>
<location filename="../src/modules/finished/FinishedPage.cpp" line="92"/>
@ -1789,7 +1789,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="47"/>
<source>Please install KDE Konsole and try again!</source>
<translation>Por favor instale a consola KDE e tente novamente!</translation>
<translation>Instale o Konsole do KDE e tente novamente!</translation>
</message>
<message>
<location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="118"/>
@ -2585,7 +2585,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/packagechooser/PackageChooserPage.cpp" line="26"/>
<source>Please pick a product from the list. The selected product will be installed.</source>
<translation>Por favor, escolha um produto da lista. O produto selecionado será instalado.</translation>
<translation>Escolha um produto da lista. O produto selecionado será instalado.</translation>
</message>
</context>
<context>
@ -2875,7 +2875,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="264"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>A tabela de partições em %1 tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, por favor remova uma partição primária e adicione uma partição estendida.</translation>
<translation>A tabela de partições em %1 tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, remova uma partição primária e adicione uma partição estendida.</translation>
</message>
</context>
<context>
@ -3015,7 +3015,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="84"/>
<source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source>
<translation>Por favor escolha a aparência para o Ambiente de Trabalho KDE Plasma. Pode também saltar este passo e configurar a aparência uma vez instalado o sistema. Ao clicar numa seleção de aparência irá ter uma pré-visualização ao vivo dessa aparência.</translation>
<translation>Escolha a aparência para o Ambiente de trabalho KDE Plasma. Pode também saltar este passo e configurar a aparência uma vez instalado o sistema. Ao clicar numa seleção de aparência irá ter uma pré-visualização ao vivo dessa aparência.</translation>
</message>
</context>
<context>
@ -3116,7 +3116,7 @@ Saída de Dados:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -3248,12 +3248,12 @@ Saída de Dados:
<message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="158"/>
<source>%1 cannot be installed on empty space. Please select an existing partition.</source>
<translation>%1 não pode ser instalado no espaço vazio. Por favor selecione uma partição existente.</translation>
<translation>%1 não pode ser instalado no espaço vazio. Selecione uma partição existente.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="168"/>
<source>%1 cannot be installed on an extended partition. Please select an existing primary or logical partition.</source>
<translation>%1 não pode ser instalado numa partição estendida. Por favor selecione uma partição primária ou lógica existente.</translation>
<translation>%1 não pode ser instalado numa partição estendida. Selecione uma partição primária ou lógica existente.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="178"/>
@ -3278,12 +3278,12 @@ Saída de Dados:
<message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="220"/>
<source>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB.</source>
<translation>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;A partição %1 é demasiado pequena para %2. Por favor selecione uma partição com pelo menos %3 GiB de capacidade.</translation>
<translation>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;A partição %1 é demasiado pequena para %2. Selecione uma partição com pelo menos %3 GiB de capacidade.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="242"/>
<source>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<translation>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Uma partição de sistema EFI não pode ser encontrada em nenhum sítio neste sistema. Por favor volte atrás e use o particionamento manual para instalar %1.</translation>
<translation>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Uma partição de sistema EFI não pode ser encontrada em nenhum sítio neste sistema. Volte atrás e use o particionamento manual para instalar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="253"/>
@ -3444,7 +3444,7 @@ Saída de Dados:
<message>
<location filename="../src/modules/welcome/checker/ResultsListWidget.cpp" line="138"/>
<source>For best results, please ensure that this computer:</source>
<translation>Para melhores resultados, por favor certifique-se que este computador:</translation>
<translation>Para melhores resultados, certifique-se que este computador:</translation>
</message>
<message>
<location filename="../src/modules/welcome/checker/ResultsListWidget.cpp" line="139"/>
@ -3877,7 +3877,7 @@ Saída de Dados:
<message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="95"/>
<source>Tracking helps %1 to see how often it is installed, what hardware it is installed on and which applications are used. To see what will be sent, please click the help icon next to each area.</source>
<translation>O rastreio ajuda %1 a ver quão frequentemente ele é instalado, em qual hardware ele é instalado e quais aplicações são utilizadas. Para ver o que será enviado, por favor, clique no ícone de ajuda próximo a cada área.</translation>
<translation>O rastreio ajuda %1 a ver quão frequentemente ele é instalado, em qual hardware ele é instalado e quais aplicações são utilizadas. Para ver o que será enviado, clique no ícone de ajuda próximo a cada área.</translation>
</message>
<message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="100"/>
@ -3892,7 +3892,7 @@ Saída de Dados:
<message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="107"/>
<source>By selecting this you will regularly send information about your &lt;b&gt;user&lt;/b&gt; installation, hardware, applications and application usage patterns, to %1.</source>
<translation>Ao selecionar isto irá enviar periodicamente informações sobre a instalação do seu &lt;b&gt;utilizador&lt;/b&gt;, hardware, aplicações e padrões de utilização das aplicações para %1.</translation>
<translation>Ao selecionar isto irá enviar periodicamente informações acerca da instalação do seu &lt;b&gt;utilizador&lt;/b&gt;, hardware, aplicações e padrões de utilização das aplicações para %1.</translation>
</message>
</context>
<context>
@ -4079,7 +4079,7 @@ Saída de Dados:
<message>
<location filename="../src/calamares/DebugWindow.cpp" line="319"/>
<source>About %1 setup</source>
<translation>Sobre a instalação de %1</translation>
<translation>Acerca da instalação de %1</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.cpp" line="320"/>
@ -4113,7 +4113,7 @@ Saída de Dados:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation>Falha ao criar zpool on</translation>
<translation>Falha ao criar zpool em </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4144,34 +4144,46 @@ Saída de Dados:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation>O resultado foi:</translation>
<translation>O resultado foi: </translation>
</message>
</context>
<context>
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Sobre</translation>
<translation>Acerca</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Depuração</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Mostrar informação acerca do Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Mostrar informação de depuração</translation>
</message>
</context>
<context>
<name>finishedq</name>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="36"/>
<source>Installation Completed</source>
<translation>Instalação Concluída</translation>
<translation>Instalação concluída</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart into your new system, or continue using the Live environment.</source>
<translation>%1 foi instalado no seu computador.&lt;br/&gt;
<translation>%1 foi instalado no computador.&lt;br/&gt;
Pode agora reiniciar no seu novo sistema, ou continuar a utilizar o ambiente Live.</translation>
</message>
<message>

View File

@ -504,12 +504,12 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Program de instalare %1</translation>
</message>
@ -778,27 +778,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Setează modelul tastaturii la %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Setează aranjamentul de tastatură la %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Limba sistemului va fi %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Formatul numerelor și datelor calendaristice va fi %1.</translation>
</message>
@ -3112,7 +3112,7 @@ Output
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4144,14 +4144,26 @@ Output
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Depanare</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Arată informația de depanare</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -510,12 +510,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Программа установки %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Программа установки %1</translation>
</message>
@ -784,27 +784,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Установить модель клавиатуры на %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Установить раскладку клавиатуры на %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Установить часовой пояс на %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Системным языком будет установлен %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Региональным форматом чисел и дат будет установлен %1.</translation>
</message>
@ -3124,7 +3124,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4157,14 +4157,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>О Программе</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Отладка</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Показать отладочную информацию</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -781,27 +781,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> %1/%2 .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1/%2 .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1 .</translation>
</message>
@ -3105,7 +3105,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4140,14 +4140,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation> </translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Inštalačný program distribúcie %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Inštalátor distribúcie %1</translation>
</message>
@ -782,27 +782,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Nastavenie modelu klávesnice na %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Nastavenie rozloženia klávesnice na %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Nastavenie časovej zóny na %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<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/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3123,7 +3123,7 @@ Výstup:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4158,14 +4158,26 @@ Výstup:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>O inštalátore</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Ladiť</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Zobraziť ladiace informácie</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -506,12 +506,12 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Namestilnik</translation>
</message>
@ -780,27 +780,27 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Nastavi model tipkovnice na %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Nastavi razporeditev tipkovnice na %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3117,7 +3117,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4149,14 +4149,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Razhroščevanje</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -6,18 +6,18 @@
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="17"/>
<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;</source>
<translation type="unfinished"/>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; për %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="20"/>
<source>Thanks to &lt;a href="https://calamares.io/team/"&gt;the Calamares team&lt;/a&gt; and the &lt;a href="https://www.transifex.com/calamares/calamares/"&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href="https://calamares.io/"&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href="http://www.blue-systems.com/"&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
<translation type="unfinished"/>
<translation>Falënderime për &lt;a href="https://calamares.io/team/"&gt;ekipin Calamares&lt;/a&gt; dhe &lt;a href="https://www.transifex.com/calamares/calamares/"&gt;ekpin e përkthyesve të Calamares-it&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Zhvillimi i &lt;a href="https://calamares.io/"&gt;Calamares-it&lt;/a&gt; sponsorizohet nga &lt;br/&gt;&lt;a href="http://www.blue-systems.com/"&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message>
<message>
<location filename="../src/libcalamares/CalamaresAbout.cpp" line="38"/>
<source>Copyright %1-%2 %3 &amp;lt;%4&amp;gt;&lt;br/&gt;</source>
<extracomment>Copyright year-year Name &lt;email-address&gt;</extracomment>
<translation type="unfinished"/>
<translation> drejt kopjimi %1-%2 %3 &amp;lt;%4&amp;gt;&lt;br/&gt;</translation>
</message>
</context>
<context>
@ -507,12 +507,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Programi i Rregullimit %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Instalues %1</translation>
</message>
@ -781,27 +781,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Si model tastiere do caktohet %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Si model tastiere do caktohet %1%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Si zonë kohore cakto %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Si gjuhë sistemi do caktohet %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Si vendore për numra dhe data do vihet %1.</translation>
</message>
@ -1453,12 +1453,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="259"/>
<source>Passphrase for existing partition</source>
<translation type="unfinished"/>
<translation>Frazëkalim për pjesë ekzistuese</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="260"/>
<source>Partition %1 could not be decrypted with the given passphrase.&lt;br/&gt;&lt;br/&gt;Edit the partition again and give the correct passphrase or delete and create a new encrypted partition.</source>
<translation type="unfinished"/>
<translation>Pjesa %1 su fshehtëzua dot me frazëkalimin e dhënë.&lt;br/&gt;&lt;br/&gt;Përpunojeni sërish pjesën dhe jepni frazëkalimin e saktë, ose fshijeni dhe krijoni një pjesë re fshehtëzuar.</translation>
</message>
</context>
<context>
@ -3103,7 +3103,7 @@ Përfundim:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4138,13 +4138,25 @@ Përfundim:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Mbi</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
<translation>Diagnostikojeni</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Shfaq hollësi mbi Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Shfaq dhëna diagnostikimi</translation>
</message>
</context>
<context>

View File

@ -504,12 +504,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 инсталер</translation>
</message>
@ -778,27 +778,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Системски језик биће постављен на %1</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3106,7 +3106,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4138,14 +4138,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Уклањање грешака</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -504,12 +504,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Instaler</translation>
</message>
@ -778,27 +778,27 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3106,7 +3106,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4138,14 +4138,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Otklanjanje greški</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -506,12 +506,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Installationsprogram</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1-installationsprogram</translation>
</message>
@ -780,27 +780,27 @@ Alla ändringar kommer att gå förlorade.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Sätt tangenbordsmodell till %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Sätt tangentbordslayout till %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Sätt tidszon till %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Systemspråket kommer ändras till %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Systemspråket för siffror och datum kommer sättas till %1.</translation>
</message>
@ -3105,7 +3105,7 @@ Utdata:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4140,14 +4140,26 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Om</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Avlusning</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Visa information om Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Visa avlusningsinformation</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -777,27 +777,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3096,7 +3096,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4128,14 +4128,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -503,12 +503,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Барномаи танзимкунии %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Насбкунандаи %1</translation>
</message>
@ -777,27 +777,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Намунаи клавиатура ба %1 танзим карда мешавад.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Тарҳбандии клавиатура ба %1 %1/%2 танзим карда мешавад.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Минтақаи вақт ба %1/%2 танзим карда мешавад.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Забони низом ба %1 танзим карда мешавад.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Низоми рақамҳо ва санаҳо ба %1 танзим карда мешавад.</translation>
</message>
@ -3101,7 +3101,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4136,14 +4136,27 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Дар бораи барнома</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Намоиши иттилооти
ислоҳи нуқсонҳо</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -500,12 +500,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation> %1</translation>
</message>
@ -774,27 +774,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1</translation>
</message>
@ -3084,7 +3084,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4116,14 +4116,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation></translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -507,12 +507,12 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek.</translation>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Kurulum Uygulaması</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 Yükleniyor</translation>
</message>
@ -782,27 +782,27 @@ Yükleyiciden çıkınca tüm değişiklikler kaybedilecek.</translation>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>%1 Klavye düzeni olarak seçildi.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Alt klavye türevi olarak %1/%2 seçildi.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>%1/%2 Zaman dilimi ayarla.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Sistem dili %1 olarak ayarlanacak.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<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>
@ -3110,7 +3110,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4145,14 +4145,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Hakkında</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Hata Ayıklama</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Calamares hakkında bilgilendirme göster</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Hata ayıklama bilgisini göster</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -511,12 +511,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>Програма для налаштовування %1</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>Засіб встановлення %1</translation>
</message>
@ -785,27 +785,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Встановити модель клавіатури як %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Встановити розкладку клавіатури як %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Встановити часовий пояс %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Мову %1 буде встановлено як системну.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>%1 буде встановлено як локаль чисел та дат.</translation>
</message>
@ -3128,7 +3128,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4163,14 +4163,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Про програму</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Діагностика</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation>Показати відомості щодо Calamares</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Показати діагностичну інформацію</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -775,27 +775,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4126,14 +4126,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>متعلق</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -499,12 +499,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -773,27 +773,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3083,7 +3083,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4115,14 +4115,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -501,12 +501,12 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 Thiết lập chương trình</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 cài đt hệ điều hành</translation>
</message>
@ -775,27 +775,27 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation>Thiệt lập bàn phím kiểu %1.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation>Thiết lập bố cục bàn phím thành %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation>Thiết lập múi giờ sang %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>Ngôn ngữ hệ thống sẽ đưc đt thành %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>Đnh dạng ngôn ngữ của số ngày tháng sẽ đưc chuyển thành %1.</translation>
</message>
@ -3090,7 +3090,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4125,14 +4125,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation>Giới thiệu</translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation>Hiện thông tin gỡ lỗi</translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -499,12 +499,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -773,27 +773,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3083,7 +3083,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4115,14 +4115,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -506,12 +506,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -780,27 +780,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1/%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation> %1</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation> %1</translation>
</message>
@ -3098,7 +3098,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1%2</translation>
</message>
@ -4133,14 +4133,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation></translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -499,12 +499,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation type="unfinished"/>
</message>
@ -773,27 +773,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation type="unfinished"/>
</message>
@ -3083,7 +3083,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation type="unfinished"/>
</message>
@ -4115,14 +4115,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -505,12 +505,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CalamaresWindow</name>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="392"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="396"/>
<source>%1 Setup Program</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="393"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="397"/>
<source>%1 Installer</source>
<translation>%1 </translation>
</message>
@ -779,27 +779,27 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>Config</name>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="360"/>
<location filename="../src/modules/keyboard/Config.cpp" line="361"/>
<source>Set keyboard model to %1.&lt;br/&gt;</source>
<translation> %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="367"/>
<location filename="../src/modules/keyboard/Config.cpp" line="368"/>
<source>Set keyboard layout to %1/%2.</source>
<translation> %1/%2 </translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="359"/>
<location filename="../src/modules/locale/Config.cpp" line="373"/>
<source>Set timezone to %1/%2.</source>
<translation> %1/%2</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="397"/>
<location filename="../src/modules/locale/Config.cpp" line="411"/>
<source>The system language will be set to %1.</source>
<translation>%1</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="404"/>
<location filename="../src/modules/locale/Config.cpp" line="418"/>
<source>The numbers and dates locale will be set to %1.</source>
<translation>%1</translation>
</message>
@ -3094,7 +3094,7 @@ Output:
<context>
<name>QObject</name>
<message>
<location filename="../src/libcalamares/locale/Translation.cpp" line="145"/>
<location filename="../src/libcalamares/locale/Translation.cpp" line="151"/>
<source>%1 (%2)</source>
<translation>%1 (%2)</translation>
</message>
@ -4129,14 +4129,26 @@ Output:
<name>calamares-sidebar</name>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="89"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="148"/>
<source>About</source>
<translation></translation>
</message>
<message>
<location filename="../src/calamares/calamares-sidebar.qml" line="115"/>
<location filename="../src/calamares/CalamaresWindow.cpp" line="163"/>
<source>Debug</source>
<translation>Debug</translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="149"/>
<source>Show information about Calamares</source>
<translation> Calamares </translation>
</message>
<message>
<location filename="../src/calamares/CalamaresWindow.cpp" line="165"/>
<source>Show debug information</source>
<translation></translation>
</message>
</context>
<context>
<name>finishedq</name>

View File

@ -5,6 +5,7 @@
#
# Translators:
# Georgi Georgiev (Жоро) <g.georgiev.shumen@gmail.com>, 2022
# mkkDr2010, 2022
#
#, fuzzy
msgid ""
@ -13,7 +14,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Georgi Georgiev (Жоро) <g.georgiev.shumen@gmail.com>, 2022\n"
"Last-Translator: mkkDr2010, 2022\n"
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -53,7 +54,7 @@ msgstr ""
#: src/modules/fstab/main.py:400 src/modules/fstab/main.py:428
#: src/modules/localecfg/main.py:140 src/modules/networkcfg/main.py:105
msgid "Configuration Error"
msgstr ""
msgstr "Грешка в конфигурацията"
#: src/modules/mount/main.py:230 src/modules/initcpiocfg/main.py:236
#: src/modules/rawfs/main.py:165 src/modules/initramfscfg/main.py:86

View File

@ -5,7 +5,7 @@
#
# Translators:
# Jason Collins <JasonPCollins@protonmail.com>, 2018
# Karthik Balan, 2021
# Karthik Arasappan, 2021
#
#, fuzzy
msgid ""
@ -14,7 +14,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Karthik Balan, 2021\n"
"Last-Translator: Karthik Arasappan, 2021\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -4,12 +4,12 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# strel, 2017
# Guido Grasso <cuquiman97@gmail.com>, 2018
# Adolfo Jayme-Barrientos, 2019
# Miguel Mayol <mitcoes@gmail.com>, 2020
# Pier Jose Gotta Perez <piegope@protonmail.com>, 2020
# Swyter <Swyterzone@gmail.com>, 2022
# strel, 2022
#
#, fuzzy
msgid ""
@ -18,7 +18,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: strel, 2022\n"
"Last-Translator: Swyter <Swyterzone@gmail.com>, 2022\n"
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -4,9 +4,9 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# guillermo pacheco <guillopacheco@gmail.com>, 2018
# a1a9b52a3f40dff112eca965c254c602_089360e <d1597d94e208cfb976efe0f2ce18d2e5_734602>, 2018
# Erland Huaman <blackadress.01@gmail.com>, 2021
# guillermo pacheco <guillopacheco@gmail.com>, 2022
#
#, fuzzy
msgid ""
@ -15,7 +15,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: guillermo pacheco <guillopacheco@gmail.com>, 2022\n"
"Last-Translator: Erland Huaman <blackadress.01@gmail.com>, 2021\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -6,12 +6,12 @@
# Translators:
# Paul Combal <abonnementspaul@gmail.com>, 2017
# Abdellah B <bahassinea@gmail.com>, 2017
# Aestan <anthony.margerand@protonmail.com>, 2018
# Aurnytoraink <adressetempo@aurny2mail.ddns.net>, 2018
# a270031086f2a0d3514bc0cb507b48f6, 2019
# Seboss666 <sebastien_verdet@seboss666.info>, 2019
# Florian B <florianb3522@gmail.com>, 2019
# Arnaud Ferraris <arnaud.ferraris@gmail.com>, 2019
# Aestan <anthony.margerand@protonmail.com>, 2022
# roxfr <roxfr@outlook.fr>, 2022
#
#, fuzzy

View File

@ -6,9 +6,9 @@
# Translators:
# Pierfrancesco Passerini <p.passerini@gmail.com>, 2019
# Pietro F. Fontana, 2020
# Saverio <saverio.brancaccio@gmail.com>, 2020
# Giuseppe Pignataro <rogepix@gmail.com>, 2021
# Vincenzo Reale <vinx.reale@gmail.com>, 2022
# Saverio <saverio.brancaccio@gmail.com>, 2022
#
#, fuzzy
msgid ""
@ -17,7 +17,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Saverio <saverio.brancaccio@gmail.com>, 2022\n"
"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>, 2022\n"
"Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -4,8 +4,8 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Guilherme Marçal Silva, 2022
# André Marcelo Alvarenga <alvarenga@kde.org>, 2022
# André Marcelo Alvarenga <alvarenga@kde.org>, 2020
# Guilherme MS, 2022
#
#, fuzzy
msgid ""
@ -14,7 +14,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: André Marcelo Alvarenga <alvarenga@kde.org>, 2022\n"
"Last-Translator: Guilherme MS, 2022\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -5,8 +5,8 @@
#
# Translators:
# Nuno Amorim <inovaty@gmail.com>, 2018
# Ricardo Simões <xmcorporation@gmail.com>, 2020
# Hugo Carvalho <hugokarvalho@hotmail.com>, 2022
# Ricardo Simões <xmcorporation@gmail.com>, 2022
#
#, fuzzy
msgid ""
@ -15,7 +15,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-29 16:17+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Ricardo Simões <xmcorporation@gmail.com>, 2022\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>, 2022\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -4,7 +4,7 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# හෙළබස, 2021
# හෙළබස සමූහය, 2021
# Sandaruwan Samaraweera, 2022
#
#, fuzzy

View File

@ -3,26 +3,26 @@
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
# SPDX-License-Identifier: BSD-2-Clause
#
include( CalamaresAddBrandingSubdirectory )
include( CalamaresAddLibrary )
include( CalamaresAddModuleSubdirectory )
include( CalamaresAddPlugin )
include( CalamaresAddTest )
include( CalamaresAddTranslations )
include(CalamaresAddBrandingSubdirectory)
include(CalamaresAddLibrary)
include(CalamaresAddModuleSubdirectory)
include(CalamaresAddPlugin)
include(CalamaresAddTest)
include(CalamaresAddTranslations)
# library
add_subdirectory( libcalamares )
add_subdirectory(libcalamares)
add_subdirectory( libcalamaresui )
add_subdirectory(libcalamaresui)
# all things qml
add_subdirectory( qml/calamares )
add_subdirectory(qml/calamares)
# application
add_subdirectory( calamares )
add_subdirectory(calamares)
# plugins
add_subdirectory( modules )
add_subdirectory(modules)
# branding components
add_subdirectory( branding )
add_subdirectory(branding)

View File

@ -4,27 +4,25 @@
# SPDX-License-Identifier: BSD-2-Clause
#
set( calamaresSources
set(calamaresSources
main.cpp
CalamaresApplication.cpp
CalamaresWindow.cpp
DebugWindow.cpp
VariantModel.cpp
progresstree/ProgressTreeDelegate.cpp
progresstree/ProgressTreeView.cpp
)
if( NOT WITH_KF5DBus )
set( kdsagSources
if(NOT WITH_KF5DBus)
set(kdsagSources
${CMAKE_SOURCE_DIR}/3rdparty/kdsingleapplicationguard/kdsingleapplicationguard.cpp
${CMAKE_SOURCE_DIR}/3rdparty/kdsingleapplicationguard/kdsharedmemorylocker.cpp
${CMAKE_SOURCE_DIR}/3rdparty/kdsingleapplicationguard/kdtoolsglobal.cpp
${CMAKE_SOURCE_DIR}/3rdparty/kdsingleapplicationguard/kdlockedsharedmemorypointer.cpp
)
mark_thirdparty_code( ${kdsagSources} )
list( APPEND calamaresSources ${kdsagSources} )
list(APPEND calamaresSources ${kdsagSources})
endif()
include_directories(
@ -42,22 +40,22 @@ include_directories(
# The calamares-i18n.cxx file -- full path in CALAMARES_TRANSLATIONS_SOURCE --
# is created as a target in the lang/ directory. This is compiled to a
# library (it's just the result of a QRC compile).
add_executable( calamares_bin ${calamaresSources} calamares.qrc )
target_include_directories( calamares_bin PRIVATE ${CMAKE_SOURCE_DIR} )
set_target_properties(calamares_bin
PROPERTIES
ENABLE_EXPORTS TRUE
RUNTIME_OUTPUT_NAME calamares
add_executable(calamares_bin ${calamaresSources} calamares.qrc)
target_include_directories(calamares_bin PRIVATE ${CMAKE_SOURCE_DIR})
set_target_properties(
calamares_bin
PROPERTIES ENABLE_EXPORTS TRUE RUNTIME_OUTPUT_NAME calamares
)
calamares_automoc( calamares_bin )
calamares_autouic( calamares_bin )
calamares_autorcc( calamares_bin )
if( kdsagSources )
set_source_files_properties( ${kdsagSources} PROPERTIES AUTOMOC OFF )
if(kdsagSources)
set_source_files_properties(${kdsagSources} PROPERTIES AUTOMOC OFF)
endif()
target_link_libraries( calamares_bin
target_link_libraries(
calamares_bin
PRIVATE
calamares
calamaresui
@ -66,21 +64,25 @@ target_link_libraries( calamares_bin
Qt5::Widgets
KF5::CoreAddons
)
if( WITH_KF5Crash )
target_link_libraries( calamares_bin PRIVATE KF5::Crash )
target_compile_definitions( calamares_bin PRIVATE WITH_KF5Crash )
if(WITH_KF5Crash)
target_link_libraries(calamares_bin PRIVATE KF5::Crash)
target_compile_definitions(calamares_bin PRIVATE WITH_KF5Crash)
endif()
if( WITH_KF5DBus )
target_link_libraries( calamares_bin PRIVATE KF5::DBusAddons )
target_compile_definitions( calamares_bin PRIVATE WITH_KF5DBus )
if(WITH_KF5DBus)
target_link_libraries(calamares_bin PRIVATE KF5::DBusAddons)
target_compile_definitions(calamares_bin PRIVATE WITH_KF5DBus)
endif()
install( TARGETS calamares_bin
BUNDLE DESTINATION .
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
install(
TARGETS calamares_bin
BUNDLE
DESTINATION .
RUNTIME
DESTINATION ${CMAKE_INSTALL_BINDIR}
)
install( FILES ${CMAKE_SOURCE_DIR}/data/images/squid.svg
install(
FILES ${CMAKE_SOURCE_DIR}/data/images/squid.svg
RENAME calamares.svg
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps
)
@ -88,11 +90,14 @@ install( FILES ${CMAKE_SOURCE_DIR}/data/images/squid.svg
### TESTS
#
#
if( BUILD_TESTING )
if(BUILD_TESTING)
# Don't install, these are just for enable_testing
add_executable( loadmodule testmain.cpp )
target_link_libraries( loadmodule PRIVATE Qt5::Core Qt5::Widgets calamares calamaresui )
add_executable(loadmodule testmain.cpp)
target_link_libraries(
loadmodule
PRIVATE Qt5::Core Qt5::Widgets calamares calamaresui
)
add_executable( test_conf test_conf.cpp )
target_link_libraries( test_conf PUBLIC yamlcpp::yamlcpp Qt5::Core )
add_executable(test_conf test_conf.cpp)
target_link_libraries(test_conf PUBLIC yamlcpp::yamlcpp Qt5::Core)
endif()

View File

@ -145,8 +145,8 @@ getWidgetSidebar( Calamares::DebugWindowManager* debug,
CALAMARES_RETRANSLATE_FOR(
aboutDialog,
aboutDialog->setText(
QCoreApplication::translate( CalamaresWindow::staticMetaObject.className(), "About" ) );
aboutDialog->setToolTip( QCoreApplication::translate( CalamaresWindow::staticMetaObject.className(),
QCoreApplication::translate( "calamares-sidebar", "About" ) );
aboutDialog->setToolTip( QCoreApplication::translate( "calamares-sidebar",
"Show information about Calamares" ) ); );
extraButtons->addWidget( aboutDialog );
aboutDialog->setFlat( true );
@ -161,9 +161,9 @@ getWidgetSidebar( Calamares::DebugWindowManager* debug,
CalamaresUtils::Bugs, CalamaresUtils::Original, 2 * QSize( defaultFontHeight, defaultFontHeight ) ) );
CALAMARES_RETRANSLATE_FOR( debugWindowBtn,
debugWindowBtn->setText( QCoreApplication::translate(
CalamaresWindow::staticMetaObject.className(), "Debug" ) );
"calamares-sidebar", "Debug" ) );
debugWindowBtn->setToolTip( QCoreApplication::translate(
CalamaresWindow::staticMetaObject.className(), "Show debug information" ) ); );
"calamares-sidebar", "Show debug information" ) ); );
extraButtons->addWidget( debugWindowBtn );
debugWindowBtn->setFlat( true );
debugWindowBtn->setCheckable( true );

View File

@ -10,20 +10,26 @@
# (non-GUI) jobs.
#
add_definitions( -DDLLEXPORT_PRO )
include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} )
add_definitions(-DDLLEXPORT_PRO)
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/CalamaresConfig.h.in
${CMAKE_CURRENT_BINARY_DIR}/CalamaresConfig.h )
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/CalamaresVersion.h.in
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersion.h )
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/CalamaresVersionX.h.in
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersionX.h )
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/CalamaresConfig.h.in
${CMAKE_CURRENT_BINARY_DIR}/CalamaresConfig.h
)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/CalamaresVersion.h.in
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersion.h
)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/CalamaresVersionX.h.in
${CMAKE_CURRENT_BINARY_DIR}/CalamaresVersionX.h
)
set( OPTIONAL_PRIVATE_LIBRARIES "" )
set( OPTIONAL_PUBLIC_LIBRARIES "" )
set(OPTIONAL_PRIVATE_LIBRARIES "")
set(OPTIONAL_PUBLIC_LIBRARIES "")
set( libSources
set(libSources
CalamaresAbout.cpp
CppJob.cpp
GlobalStorage.cpp
@ -32,13 +38,11 @@ set( libSources
JobQueue.cpp
ProcessJob.cpp
Settings.cpp
# GeoIP services
geoip/Interface.cpp
geoip/GeoIPFixed.cpp
geoip/GeoIPJSON.cpp
geoip/Handler.cpp
# Locale-data service
locale/Global.cpp
locale/Lookup.cpp
@ -47,7 +51,6 @@ set( libSources
locale/TranslatableString.cpp
locale/Translation.cpp
locale/TranslationsModel.cpp
# Modules
modulesystem/Config.cpp
modulesystem/Descriptor.cpp
@ -56,19 +59,15 @@ set( libSources
modulesystem/Preset.cpp
modulesystem/RequirementsChecker.cpp
modulesystem/RequirementsModel.cpp
# Network service
network/Manager.cpp
# Packages service
packages/Globals.cpp
# Partition service
partition/Global.cpp
partition/Mount.cpp
partition/PartitionSize.cpp
partition/Sync.cpp
# Utility service
utils/CalamaresUtilsSystem.cpp
utils/CommandList.cpp
@ -88,20 +87,16 @@ set( libSources
### OPTIONAL Automount support (requires dbus)
#
#
if( Qt5DBus_FOUND)
list( APPEND libSources partition/AutoMount.cpp )
list( APPEND OPTIONAL_PRIVATE_LIBRARIES Qt5::DBus )
if(Qt5DBus_FOUND)
list(APPEND libSources partition/AutoMount.cpp)
list(APPEND OPTIONAL_PRIVATE_LIBRARIES Qt5::DBus)
endif()
### OPTIONAL Python support
#
#
if( WITH_PYTHON )
list( APPEND libSources
PythonHelper.cpp
PythonJob.cpp
PythonJobApi.cpp
)
if(WITH_PYTHON)
list(APPEND libSources PythonHelper.cpp PythonJob.cpp PythonJobApi.cpp)
include_directories(${PYTHON_INCLUDE_DIRS})
link_directories(${PYTHON_LIBRARIES})
@ -109,7 +104,9 @@ if( WITH_PYTHON )
include_directories(${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
list( APPEND OPTIONAL_PRIVATE_LIBRARIES
list(
APPEND
OPTIONAL_PRIVATE_LIBRARIES
${PYTHON_LIBRARIES}
${Boost_LIBRARIES}
)
@ -119,48 +116,52 @@ endif()
#
#
find_package(Qt5 COMPONENTS Xml)
if( Qt5Xml_FOUND )
list( APPEND libSources geoip/GeoIPXML.cpp )
list( APPEND OPTIONAL_PUBLIC_LIBRARIES Qt5::Network Qt5::Xml )
if(Qt5Xml_FOUND)
list(APPEND libSources geoip/GeoIPXML.cpp)
list(APPEND OPTIONAL_PUBLIC_LIBRARIES Qt5::Network Qt5::Xml)
endif()
### OPTIONAL KPMcore support
#
#
include( KPMcoreHelper )
include(KPMcoreHelper)
if ( KPMcore_FOUND )
find_package( Qt5 REQUIRED DBus ) # Needed for KPMCore
find_package( KF5 REQUIRED I18n WidgetsAddons ) # Needed for KPMCore
if(KPMcore_FOUND)
find_package(Qt5 REQUIRED DBus) # Needed for KPMCore
find_package(KF5 REQUIRED I18n WidgetsAddons) # Needed for KPMCore
foreach ( d ${KPMcore_API_DEFINITIONS} )
add_definitions( -D${d} )
foreach(d ${KPMcore_API_DEFINITIONS})
add_definitions(-D${d})
endforeach()
include_directories( ${KPMCORE_INCLUDE_DIR} )
list( APPEND libSources
include_directories(${KPMCORE_INCLUDE_DIR})
list(
APPEND
libSources
partition/FileSystem.cpp
partition/KPMManager.cpp
partition/PartitionIterator.cpp
partition/PartitionQuery.cpp
)
list( APPEND OPTIONAL_PRIVATE_LIBRARIES kpmcore )
list(APPEND OPTIONAL_PRIVATE_LIBRARIES kpmcore)
endif()
### LIBRARY
#
#
add_library( calamares SHARED ${libSources} )
set_target_properties( calamares
add_library(calamares SHARED ${libSources})
set_target_properties(
calamares
PROPERTIES
VERSION ${CALAMARES_VERSION_SHORT}
SOVERSION ${CALAMARES_VERSION_SHORT}
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_INSTALL_FULL_INCLUDEDIR}/libcalamares
INTERFACE_INCLUDE_DIRECTORIES
${CMAKE_INSTALL_FULL_INCLUDEDIR}/libcalamares
)
calamares_automoc( calamares )
target_link_libraries( calamares
LINK_PRIVATE
${OPTIONAL_PRIVATE_LIBRARIES}
target_link_libraries(
calamares
LINK_PRIVATE ${OPTIONAL_PRIVATE_LIBRARIES}
LINK_PUBLIC
yamlcpp::yamlcpp
Qt5::Core
@ -173,22 +174,29 @@ add_library(Calamares::calamares ALIAS calamares)
### Installation
#
#
install( TARGETS calamares
install(
TARGETS calamares
EXPORT Calamares
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME
DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY
DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE
DESTINATION ${CMAKE_INSTALL_LIBDIR}
)
# Make symlink lib/calamares/libcalamares.so to lib/libcalamares.so.VERSION so
# lib/calamares can be used as module path for the Python interpreter.
install( CODE "
install(
CODE
"
file( MAKE_DIRECTORY \"\$ENV{DESTDIR}/${CMAKE_INSTALL_FULL_LIBDIR}/calamares\" )
execute_process( COMMAND \"${CMAKE_COMMAND}\" -E create_symlink ../libcalamares.so.${CALAMARES_VERSION_SHORT} libcalamares.so WORKING_DIRECTORY \"\$ENV{DESTDIR}/${CMAKE_INSTALL_FULL_LIBDIR}/calamares\" )
")
"
)
# Install header files
file( GLOB rootHeaders "*.h" )
file(GLOB rootHeaders "*.h")
install(
FILES
${CMAKE_CURRENT_BINARY_DIR}/CalamaresConfig.h
@ -197,12 +205,11 @@ install(
DESTINATION include/libcalamares
)
# Install each subdir-worth of header files
foreach( subdir geoip locale modulesystem network partition utils )
file( GLOB subdir_headers "${subdir}/*.h" )
install( FILES ${subdir_headers} DESTINATION include/libcalamares/${subdir} )
foreach(subdir geoip locale modulesystem network partition utils)
file(GLOB subdir_headers "${subdir}/*.h")
install(FILES ${subdir_headers} DESTINATION include/libcalamares/${subdir})
endforeach()
### TESTING
#
#
@ -219,44 +226,70 @@ calamares_add_test(
${geoip_src}
)
function ( calamares_qrc_translations basename )
set( NAME ${ARGV0} )
set( options "" )
set( oneValueArgs SUBDIRECTORY OUTPUT_VARIABLE )
set( multiValueArgs LANGUAGES )
cmake_parse_arguments( _qrt "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )
function(calamares_qrc_translations basename)
set(NAME ${ARGV0})
set(options "")
set(oneValueArgs SUBDIRECTORY OUTPUT_VARIABLE)
set(multiValueArgs LANGUAGES)
cmake_parse_arguments(
_qrt
"${options}"
"${oneValueArgs}"
"${multiValueArgs}"
${ARGN}
)
if( NOT _qrt_OUTPUT_VARIABLE )
set( _qrt_OUTPUT_VARIABLE "qrc_translations_${basename}" )
if(NOT _qrt_OUTPUT_VARIABLE)
set(_qrt_OUTPUT_VARIABLE "qrc_translations_${basename}")
endif()
set( translations_qrc_infile ${CMAKE_CURRENT_BINARY_DIR}/${basename}.qrc )
set( translations_qrc_outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${basename}.cxx )
set(translations_qrc_infile ${CMAKE_CURRENT_BINARY_DIR}/${basename}.qrc)
set(translations_qrc_outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${basename}.cxx)
# Must use this variable name because of the @ substitution
set( calamares_i18n_qrc_content "" )
set( calamares_i18n_ts_filelist "" )
foreach( lang ${_qrt_LANGUAGES} )
string( APPEND calamares_i18n_qrc_content "<file>${basename}_${lang}.qm</file>" )
list( APPEND calamares_i18n_ts_filelist "${CMAKE_CURRENT_SOURCE_DIR}/${_qrt_SUBDIRECTORY}/${basename}_${lang}.ts" )
set(calamares_i18n_qrc_content "")
set(calamares_i18n_ts_filelist "")
foreach(lang ${_qrt_LANGUAGES})
string(
APPEND
calamares_i18n_qrc_content
"<file>${basename}_${lang}.qm</file>"
)
list(
APPEND
calamares_i18n_ts_filelist
"${CMAKE_CURRENT_SOURCE_DIR}/${_qrt_SUBDIRECTORY}/${basename}_${lang}.ts"
)
endforeach()
configure_file( ${CMAKE_SOURCE_DIR}/lang/calamares_i18n.qrc.in ${translations_qrc_infile} @ONLY )
configure_file(
${CMAKE_SOURCE_DIR}/lang/calamares_i18n.qrc.in
${translations_qrc_infile}
@ONLY
)
qt5_add_translation(QM_FILES ${calamares_i18n_ts_filelist})
# Run the resource compiler (rcc_options should already be set)
add_custom_command(
OUTPUT ${translations_qrc_outfile}
COMMAND "${Qt5Core_RCC_EXECUTABLE}"
ARGS ${rcc_options} --format-version 1 -name ${basename} -o ${translations_qrc_outfile} ${translations_qrc_infile}
ARGS
${rcc_options}
--format-version
1
-name
${basename}
-o
${translations_qrc_outfile}
${translations_qrc_infile}
MAIN_DEPENDENCY ${translations_qrc_infile}
DEPENDS ${QM_FILES}
)
set( ${_qrt_OUTPUT_VARIABLE} ${translations_qrc_outfile} PARENT_SCOPE )
set(${_qrt_OUTPUT_VARIABLE} ${translations_qrc_outfile} PARENT_SCOPE)
endfunction()
calamares_qrc_translations( localetest OUTPUT_VARIABLE localetest_qrc SUBDIRECTORY testdata LANGUAGES nl )
calamares_qrc_translations(localetest OUTPUT_VARIABLE localetest_qrc SUBDIRECTORY testdata LANGUAGES nl)
calamares_add_test(
libcalamareslocaletest
SOURCES
@ -291,7 +324,7 @@ calamares_add_test(
${OPTIONAL_PRIVATE_LIBRARIES}
)
if( KPMcore_FOUND )
if(KPMcore_FOUND)
calamares_add_test(
libcalamarespartitionkpmtest
SOURCES
@ -314,14 +347,18 @@ calamares_add_test(
utils/TestPaths.cpp
)
# This is not an actual test, it's a test / demo application
# for experimenting with GeoIP.
add_executable( test_geoip geoip/test_geoip.cpp ${geoip_src} )
target_link_libraries( test_geoip Calamares::calamares Qt5::Network yamlcpp::yamlcpp )
add_executable(test_geoip geoip/test_geoip.cpp ${geoip_src})
target_link_libraries(
test_geoip
Calamares::calamares
Qt5::Network
yamlcpp::yamlcpp
)
calamares_automoc( test_geoip )
if ( Qt5DBus_FOUND )
add_executable( test_automount partition/calautomount.cpp )
target_link_libraries( test_automount Calamares::calamares Qt5::DBus )
if(Qt5DBus_FOUND)
add_executable(test_automount partition/calautomount.cpp)
target_link_libraries(test_automount Calamares::calamares Qt5::DBus)
endif()

View File

@ -8,24 +8,25 @@
# view modules, view steps, widgets, and branding.
# The UI libs use the non-UI library
include_directories( ${CMAKE_SOURCE_DIR}/src/libcalamares ${CMAKE_BINARY_DIR}/src/libcalamares ${CMAKE_SOURCE_DIR} )
include_directories(
${CMAKE_SOURCE_DIR}/src/libcalamares
${CMAKE_BINARY_DIR}/src/libcalamares
${CMAKE_SOURCE_DIR}
)
set( calamaresui_SOURCES
set(calamaresui_SOURCES
modulesystem/CppJobModule.cpp
modulesystem/ModuleFactory.cpp
modulesystem/ModuleManager.cpp
modulesystem/ProcessJobModule.cpp
modulesystem/ViewModule.cpp
utils/CalamaresUtilsGui.cpp
utils/ImageRegistry.cpp
utils/Paste.cpp
viewpages/BlankViewStep.cpp
viewpages/ExecutionViewStep.cpp
viewpages/Slideshow.cpp
viewpages/ViewStep.cpp
widgets/ClickableLabel.cpp
widgets/ErrorDialog.cpp
widgets/FixedAspectRatioLabel.cpp
@ -34,7 +35,6 @@ set( calamaresui_SOURCES
widgets/TranslationFix.cpp
widgets/WaitingWidget.cpp
${CMAKE_SOURCE_DIR}/3rdparty/waitingspinnerwidget.cpp
Branding.cpp
ViewManager.cpp
)
@ -44,14 +44,14 @@ mark_thirdparty_code(
${CMAKE_SOURCE_DIR}/3rdparty/waitingspinnerwidget.cpp
)
if( WITH_PYTHON )
list( APPEND calamaresui_SOURCES
modulesystem/PythonJobModule.cpp
)
if(WITH_PYTHON)
list(APPEND calamaresui_SOURCES modulesystem/PythonJobModule.cpp)
endif()
if( WITH_PYTHONQT )
list( APPEND calamaresui_SOURCES
if(WITH_PYTHONQT)
list(
APPEND
calamaresui_SOURCES
modulesystem/PythonQtViewModule.cpp
utils/PythonQtUtils.cpp
viewpages/PythonQtJob.cpp
@ -61,14 +61,11 @@ if( WITH_PYTHONQT )
)
endif()
if( WITH_QML )
list( APPEND calamaresui_SOURCES
utils/Qml.cpp
viewpages/QmlViewStep.cpp
)
if(WITH_QML)
list(APPEND calamaresui_SOURCES utils/Qml.cpp viewpages/QmlViewStep.cpp)
endif()
calamares_add_library( calamaresui
calamares_add_library(calamaresui
SOURCES ${calamaresui_SOURCES}
EXPORT_MACRO UIDLLEXPORT_PRO
LINK_LIBRARIES
@ -79,22 +76,27 @@ calamares_add_library( calamaresui
utils/ErrorDialog/ErrorDialog.ui
VERSION ${CALAMARES_VERSION_SHORT}
)
target_link_libraries( calamaresui PRIVATE yamlcpp::yamlcpp )
if( KF5CoreAddons_FOUND AND KF5CoreAddons_VERSION VERSION_GREATER_EQUAL 5.58 )
target_compile_definitions( calamaresui PRIVATE WITH_KOSRelease )
target_link_libraries(calamaresui PRIVATE yamlcpp::yamlcpp)
if(KF5CoreAddons_FOUND AND KF5CoreAddons_VERSION VERSION_GREATER_EQUAL 5.58)
target_compile_definitions(calamaresui PRIVATE WITH_KOSRelease)
endif()
if( WITH_PYTHONQT )
if(WITH_PYTHONQT)
# *_DIRS because we also use extensions
target_include_directories( calamaresui PRIVATE ${PYTHON_INCLUDE_DIRS} ${PYTHONQT_INCLUDE_DIRS} )
target_link_libraries( calamaresui PRIVATE ${PYTHON_LIBRARIES} ${PYTHONQT_LIBRARIES} )
target_include_directories(
calamaresui
PRIVATE ${PYTHON_INCLUDE_DIRS} ${PYTHONQT_INCLUDE_DIRS}
)
target_link_libraries(
calamaresui
PRIVATE ${PYTHON_LIBRARIES} ${PYTHONQT_LIBRARIES}
)
endif()
if( WITH_QML )
target_link_libraries( calamaresui PUBLIC Qt5::QuickWidgets )
if(WITH_QML)
target_link_libraries(calamaresui PUBLIC Qt5::QuickWidgets)
endif()
add_library(Calamares::calamaresui ALIAS calamaresui)
### Installation
#
#
@ -103,17 +105,12 @@ add_library(Calamares::calamaresui ALIAS calamaresui)
# where libcalamares and libcalamaresui live in different branches,
# we're going to glom it all together in the installed headers location.
install(
FILES
Branding.h
ViewManager.h
DESTINATION include/libcalamares
)
install(FILES Branding.h ViewManager.h DESTINATION include/libcalamares)
# Install each subdir-worth of header files
foreach( subdir modulesystem utils viewpages widgets )
file( GLOB subdir_headers "${subdir}/*.h" )
install( FILES ${subdir_headers} DESTINATION include/libcalamares/${subdir} )
foreach(subdir modulesystem utils viewpages widgets)
file(GLOB subdir_headers "${subdir}/*.h")
install(FILES ${subdir_headers} DESTINATION include/libcalamares/${subdir})
endforeach()
calamares_add_test(

View File

@ -8,7 +8,7 @@
# individual modules can also decide they must be skipped (e.g. OS-specific
# modules, or ones with unmet dependencies). Collect the skipped modules
# in this list.
set( LIST_SKIPPED_MODULES "" )
set(LIST_SKIPPED_MODULES "")
include_directories(
${CMAKE_SOURCE_DIR}/src/libcalamares
@ -16,29 +16,40 @@ include_directories(
${CMAKE_SOURCE_DIR}/src/libcalamaresui
)
string( REPLACE " " ";" SKIP_LIST "${SKIP_MODULES}" )
string(REPLACE " " ";" SKIP_LIST "${SKIP_MODULES}")
file( GLOB SUBDIRECTORIES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*" )
list( SORT SUBDIRECTORIES )
file(GLOB SUBDIRECTORIES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*")
list(SORT SUBDIRECTORIES)
foreach( SUBDIRECTORY ${SUBDIRECTORIES} )
foreach(SUBDIRECTORY ${SUBDIRECTORIES})
calamares_add_module_subdirectory( ${SUBDIRECTORY} LIST_SKIPPED_MODULES )
endforeach()
# TODO:3.3: Use FindPython3
if ( BUILD_TESTING AND BUILD_SCHEMA_TESTING AND PYTHONINTERP_FOUND AND PYTHON_EXECUTABLE )
if(
BUILD_TESTING
AND BUILD_SCHEMA_TESTING
AND PYTHONINTERP_FOUND
AND PYTHON_EXECUTABLE
)
# The tests for each config file are independent of whether the
# module is enabled or not: the config file should match its schema
# regardless.
foreach( SUBDIRECTORY ${SUBDIRECTORIES} )
set( _schema_file "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/${SUBDIRECTORY}.schema.yaml" )
set( _conf_file "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/${SUBDIRECTORY}.conf" )
if ( EXISTS "${_schema_file}" AND EXISTS "${_conf_file}" )
foreach(SUBDIRECTORY ${SUBDIRECTORIES})
set(_schema_file
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/${SUBDIRECTORY}.schema.yaml"
)
set(_conf_file
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/${SUBDIRECTORY}.conf"
)
if(EXISTS "${_schema_file}" AND EXISTS "${_conf_file}")
add_test(
NAME validate-${SUBDIRECTORY}
COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_SOURCE_DIR}/ci/configvalidator.py" "${_schema_file}" "${_conf_file}"
COMMAND
${PYTHON_EXECUTABLE}
"${CMAKE_SOURCE_DIR}/ci/configvalidator.py"
"${_schema_file}" "${_conf_file}"
)
endif()
endforeach()
endif()

View File

@ -454,7 +454,7 @@ def efi_boot_next():
"""
boot_mgr = libcalamares.job.configuration["efiBootMgr"]
boot_entry = None
efi_bootvars = subprocess.check_output([boot_mgr], text=True)
efi_bootvars = subprocess.check_output([boot_mgr], universal_newlines=True)
for line in efi_bootvars.split('\n'):
if not line:
continue

View File

@ -3,7 +3,7 @@
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
# SPDX-License-Identifier: BSD-2-Clause
#
calamares_add_plugin( contextualprocess
calamares_add_plugin(contextualprocess
TYPE job
EXPORT_MACRO PLUGINDLLEXPORT_PRO
SOURCES

View File

@ -17,6 +17,14 @@ try:
except FileNotFoundError as e:
pass
try:
import toml
except ImportError:
# This is a failure of the test-environment.
import sys
print("Can't find module toml.", file=sys.stderr)
sys.exit(0)
# Specific DM test
d = main.DMgreetd("/tmp")
d.set_autologin("d", True, default_desktop_environment)

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