diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4c10b68d6..113a491a1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -203,7 +203,8 @@ endif()
# (sr@latin in particular) may need special handling in CalamaresUtils.cpp.
#
# TODO: drop the es_ES translation from Transifex
-# TODO: import Esperanto once it has some translated strings
+# TODO: move eo (Esperanto) to _ok once Qt can actually create a
+# locale for it.
#
# NOTE: when updating the list from Transifex, copy these four lines
# and prefix each variable name with "p", so that the automatic
@@ -212,7 +213,7 @@ set( _tx_complete da pt_PT ro tr_TR zh_TW zh_CN pt_BR fr hr ca lt id cs_CZ )
set( _tx_good sq es pl ja sk it_IT hu ru he de nl bg uk )
set( _tx_ok ast is ar sv el es_MX gl en_GB th fi_FI hi eu sr nb
sl sr@latin mr es_PR kk kn et )
-set( _tx_bad uz eo lo ur gu fr_CH fa )
+set( _tx_bad uz lo ur gu fr_CH fa eo )
# check translation update
set( prev_tx ${p_tx_complete} ${p_tx_good} ${p_tx_ok} ${p_tx_bad} )
@@ -260,7 +261,7 @@ list( SORT CALAMARES_TRANSLATION_LANGUAGES )
set( CALAMARES_VERSION_MAJOR 3 )
set( CALAMARES_VERSION_MINOR 2 )
set( CALAMARES_VERSION_PATCH 0 )
-set( CALAMARES_VERSION_RC 5 )
+set( CALAMARES_VERSION_RC 0 )
set( CALAMARES_VERSION ${CALAMARES_VERSION_MAJOR}.${CALAMARES_VERSION_MINOR}.${CALAMARES_VERSION_PATCH} )
set( CALAMARES_VERSION_SHORT "${CALAMARES_VERSION}" )
diff --git a/CMakeModules/GNUInstallDirs.cmake b/CMakeModules/GNUInstallDirs.cmake
deleted file mode 100644
index a114dcb2e..000000000
--- a/CMakeModules/GNUInstallDirs.cmake
+++ /dev/null
@@ -1,182 +0,0 @@
-# - Define GNU standard installation directories
-# Provides install directory variables as defined for GNU software:
-# http://www.gnu.org/prep/standards/html_node/Directory-Variables.html
-# Inclusion of this module defines the following variables:
-# CMAKE_INSTALL_
- destination for files of a given type
-# CMAKE_INSTALL_FULL_ - corresponding absolute path
-# where is one of:
-# BINDIR - user executables (bin)
-# SBINDIR - system admin executables (sbin)
-# LIBEXECDIR - program executables (libexec)
-# SYSCONFDIR - read-only single-machine data (etc)
-# SHAREDSTATEDIR - modifiable architecture-independent data (com)
-# LOCALSTATEDIR - modifiable single-machine data (var)
-# LIBDIR - object code libraries (lib or lib64)
-# INCLUDEDIR - C header files (include)
-# OLDINCLUDEDIR - C header files for non-gcc (/usr/include)
-# DATAROOTDIR - read-only architecture-independent data root (share)
-# DATADIR - read-only architecture-independent data (DATAROOTDIR)
-# INFODIR - info documentation (DATAROOTDIR/info)
-# LOCALEDIR - locale-dependent data (DATAROOTDIR/locale)
-# MANDIR - man documentation (DATAROOTDIR/man)
-# DOCDIR - documentation root (DATAROOTDIR/doc/PROJECT_NAME)
-# Each CMAKE_INSTALL_ value may be passed to the DESTINATION options of
-# install() commands for the corresponding file type. If the includer does
-# not define a value the above-shown default will be used and the value will
-# appear in the cache for editing by the user.
-# Each CMAKE_INSTALL_FULL_ value contains an absolute path constructed
-# from the corresponding destination by prepending (if necessary) the value
-# of CMAKE_INSTALL_PREFIX.
-
-#=============================================================================
-# Copyright 2011 Nikita Krupen'ko
-# Copyright 2011 Kitware, Inc.
-#
-# Distributed under the OSI-approved BSD License (the "License");
-# see accompanying file Copyright.txt for details.
-#
-# This software is distributed WITHOUT ANY WARRANTY; without even the
-# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the License for more information.
-#=============================================================================
-# (To distribute this file outside of CMake, substitute the full
-# License text for the above reference.)
-
-# Installation directories
-#
-if(NOT DEFINED CMAKE_INSTALL_BINDIR)
- set(CMAKE_INSTALL_BINDIR "bin" CACHE PATH "user executables (bin)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_SBINDIR)
- set(CMAKE_INSTALL_SBINDIR "sbin" CACHE PATH "system admin executables (sbin)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_LIBEXECDIR)
- set(CMAKE_INSTALL_LIBEXECDIR "libexec" CACHE PATH "program executables (libexec)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_SYSCONFDIR)
- set(CMAKE_INSTALL_SYSCONFDIR "etc" CACHE PATH "read-only single-machine data (etc)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_SHAREDSTATEDIR)
- set(CMAKE_INSTALL_SHAREDSTATEDIR "com" CACHE PATH "modifiable architecture-independent data (com)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_LOCALSTATEDIR)
- set(CMAKE_INSTALL_LOCALSTATEDIR "var" CACHE PATH "modifiable single-machine data (var)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_LIBDIR)
- set(_LIBDIR_DEFAULT "lib")
- # Override this default 'lib' with 'lib64' iff:
- # - we are on Linux system but NOT cross-compiling
- # - we are NOT on debian
- # - we are on a 64 bits system
- # reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf
- # Note that the future of multi-arch handling may be even
- # more complicated than that: http://wiki.debian.org/Multiarch
- if(CMAKE_SYSTEM_NAME MATCHES "Linux"
- AND NOT CMAKE_CROSSCOMPILING
- AND NOT EXISTS "/etc/debian_version")
- if(NOT DEFINED CMAKE_SIZEOF_VOID_P)
- message(AUTHOR_WARNING
- "Unable to determine default CMAKE_INSTALL_LIBDIR directory because no target architecture is known. "
- "Please enable at least one language before including GNUInstallDirs.")
- else()
- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
- set(_LIBDIR_DEFAULT "lib64")
- endif()
- endif()
- endif()
- set(CMAKE_INSTALL_LIBDIR "${_LIBDIR_DEFAULT}" CACHE PATH "object code libraries (${_LIBDIR_DEFAULT})")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
- set(CMAKE_INSTALL_INCLUDEDIR "include" CACHE PATH "C header files (include)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_OLDINCLUDEDIR)
- set(CMAKE_INSTALL_OLDINCLUDEDIR "/usr/include" CACHE PATH "C header files for non-gcc (/usr/include)")
-endif()
-
-if(NOT DEFINED CMAKE_INSTALL_DATAROOTDIR)
- set(CMAKE_INSTALL_DATAROOTDIR "share" CACHE PATH "read-only architecture-independent data root (share)")
-endif()
-
-#-----------------------------------------------------------------------------
-# Values whose defaults are relative to DATAROOTDIR. Store empty values in
-# the cache and store the defaults in local variables if the cache values are
-# not set explicitly. This auto-updates the defaults as DATAROOTDIR changes.
-
-if(NOT CMAKE_INSTALL_DATADIR)
- set(CMAKE_INSTALL_DATADIR "" CACHE PATH "read-only architecture-independent data (DATAROOTDIR)")
- set(CMAKE_INSTALL_DATADIR "${CMAKE_INSTALL_DATAROOTDIR}")
-endif()
-
-if(NOT CMAKE_INSTALL_INFODIR)
- set(CMAKE_INSTALL_INFODIR "" CACHE PATH "info documentation (DATAROOTDIR/info)")
- set(CMAKE_INSTALL_INFODIR "${CMAKE_INSTALL_DATAROOTDIR}/info")
-endif()
-
-if(NOT CMAKE_INSTALL_LOCALEDIR)
- set(CMAKE_INSTALL_LOCALEDIR "" CACHE PATH "locale-dependent data (DATAROOTDIR/locale)")
- set(CMAKE_INSTALL_LOCALEDIR "${CMAKE_INSTALL_DATAROOTDIR}/locale")
-endif()
-
-if(NOT CMAKE_INSTALL_MANDIR)
- set(CMAKE_INSTALL_MANDIR "" CACHE PATH "man documentation (DATAROOTDIR/man)")
- set(CMAKE_INSTALL_MANDIR "${CMAKE_INSTALL_DATAROOTDIR}/man")
-endif()
-
-if(NOT CMAKE_INSTALL_DOCDIR)
- set(CMAKE_INSTALL_DOCDIR "" CACHE PATH "documentation root (DATAROOTDIR/doc/PROJECT_NAME)")
- set(CMAKE_INSTALL_DOCDIR "${CMAKE_INSTALL_DATAROOTDIR}/doc/${PROJECT_NAME}")
-endif()
-
-#-----------------------------------------------------------------------------
-
-mark_as_advanced(
- CMAKE_INSTALL_BINDIR
- CMAKE_INSTALL_SBINDIR
- CMAKE_INSTALL_LIBEXECDIR
- CMAKE_INSTALL_SYSCONFDIR
- CMAKE_INSTALL_SHAREDSTATEDIR
- CMAKE_INSTALL_LOCALSTATEDIR
- CMAKE_INSTALL_LIBDIR
- CMAKE_INSTALL_INCLUDEDIR
- CMAKE_INSTALL_OLDINCLUDEDIR
- CMAKE_INSTALL_DATAROOTDIR
- CMAKE_INSTALL_DATADIR
- CMAKE_INSTALL_INFODIR
- CMAKE_INSTALL_LOCALEDIR
- CMAKE_INSTALL_MANDIR
- CMAKE_INSTALL_DOCDIR
- )
-
-# Result directories
-#
-foreach(dir
- BINDIR
- SBINDIR
- LIBEXECDIR
- SYSCONFDIR
- SHAREDSTATEDIR
- LOCALSTATEDIR
- LIBDIR
- INCLUDEDIR
- OLDINCLUDEDIR
- DATAROOTDIR
- DATADIR
- INFODIR
- LOCALEDIR
- MANDIR
- DOCDIR
- )
- if(NOT IS_ABSOLUTE ${CMAKE_INSTALL_${dir}})
- set(CMAKE_INSTALL_FULL_${dir} "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_${dir}}")
- else()
- set(CMAKE_INSTALL_FULL_${dir} "${CMAKE_INSTALL_${dir}}")
- endif()
-endforeach()
diff --git a/calamares.desktop b/calamares.desktop
index dc3e17eaf..6fa758604 100644
--- a/calamares.desktop
+++ b/calamares.desktop
@@ -42,6 +42,10 @@ Icon[es]=calamares
GenericName[es]=Instalador del Sistema
Comment[es]=Calamares — Instalador del Sistema
Name[es]=Instalar Sistema
+Icon[et]=calamares
+GenericName[et]=Süsteemi installija
+Comment[et]=Calamares — Süsteemi installija
+Name[et]=Installi süsteem
Name[eu]=Sistema instalatu
Name[es_PR]=Instalar el sistema
Icon[fr]=calamares
@@ -144,12 +148,15 @@ Icon[ast]=calamares
GenericName[ast]=Instalador del sistema
Comment[ast]=Calamares — Instalador del sistema
Name[ast]=Instalar sistema
+Icon[eo]=calamares
+GenericName[eo]=Sistema Instalilo
+Comment[eo]=Calamares — Sistema Instalilo
+Name[eo]=Instali Sistemo
Name[es_MX]=Instalar el Sistema
Icon[pt_PT]=calamares
GenericName[pt_PT]=Instalador de Sistema
Comment[pt_PT]=Calamares - Instalador de Sistema
Name[pt_PT]=Instalar Sistema
-Name[es_ES]=Instalar el sistema
Icon[tr_TR]=calamares
GenericName[tr_TR]=Sistem Yükleyici
Comment[tr_TR]=Calamares — Sistem Yükleyici
diff --git a/calamares.desktop.in b/calamares.desktop.in
new file mode 100644
index 000000000..0c4041bcb
--- /dev/null
+++ b/calamares.desktop.in
@@ -0,0 +1,15 @@
+[Desktop Entry]
+Type=Application
+Version=1.0
+Name=Install System
+GenericName=System Installer
+Keywords=calamares;system;installer
+TryExec=calamares
+Exec=pkexec /usr/bin/calamares
+Comment=Calamares — System Installer
+Icon=calamares
+Terminal=false
+StartupNotify=true
+Categories=Qt;System;
+X-AppStream-Ignore=true
+
diff --git a/ci/txpull.sh b/ci/txpull.sh
index 92986fdfc..4206739dd 100755
--- a/ci/txpull.sh
+++ b/ci/txpull.sh
@@ -29,6 +29,25 @@ test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ;
export QT_SELECT=5
tx pull --force --source --all
+### CLEANUP TRANSLATIONS
+#
+# Some languages have been deprecated. They may still exist in Transifex,
+# so clean them up after pulling.
+#
+drop_language() {
+ rm -rf lang/python/"$1" src/modules/dummypythonqt/lang/"$1" lang/calamares_"$1".ts
+ grep -v "\\[$1]" calamares.desktop > calamares.desktop.new
+ mv calamares.desktop.new calamares.desktop
+}
+
+drop_language es_ES
+drop_language pl_PL
+
+# Also fix the .desktop file, which has some fields removed by Transifex.
+#
+{ cat calamares.desktop.in ; grep "\\[[a-zA-Z_@]*]=" calamares.desktop ; } > calamares.desktop.new
+mv calamares.desktop.new calamares.desktop
+
### COMMIT TRANSLATIONS
#
# Produce multiple commits (for the various parts of the i18n
diff --git a/lang/calamares_ar.ts b/lang/calamares_ar.ts
index 56d1767cc..bb68d29b5 100644
--- a/lang/calamares_ar.ts
+++ b/lang/calamares_ar.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
الح&جم:
-
+ تشفير
-
+ منطقيّ
-
+ أساسيّ
-
+ GPT
-
+
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
الشّارات:
-
+
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
ثبّت م&حمّل الإقلاع على:
-
+ أمتأكّد من إنشاء جدول تقسيم جديد على %1؟
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ 1% الدعم
diff --git a/lang/calamares_ast.ts b/lang/calamares_ast.ts
index 793ca4e4a..fb89c2a95 100644
--- a/lang/calamares_ast.ts
+++ b/lang/calamares_ast.ts
@@ -477,13 +477,13 @@ L'instalador colará y perderánse toles camudancies.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ L'instalador colará y perderánse toles camudancies.
Tama&ñu:
-
+ &Cifrar
-
+ Llóxica
-
+ Primaria
-
+ GPT
-
+ Puntu de montaxe yá n'usu. Esbilla otru, por favor.
@@ -858,7 +858,7 @@ L'instalador colará y perderánse toles camudancies.
Banderes:
-
+ Puntu de montaxe yá n'usu. Esbilla otru, por favor.
@@ -1682,10 +1682,20 @@ L'instalador colará y perderánse toles camudancies.
&Instalar xestor d'arranque en:
-
+ ¿De xuru que quies crear una tabla particiones nueva en %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ Sofitu %1
diff --git a/lang/calamares_bg.ts b/lang/calamares_bg.ts
index 61c557d17..f3b4e2258 100644
--- a/lang/calamares_bg.ts
+++ b/lang/calamares_bg.ts
@@ -478,13 +478,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -549,27 +549,27 @@ The installer will quit and all changes will be lost.
Раз&мер:
-
+ En%crypt
-
+ Логическа
-
+ Главна
-
+ GPT
-
+ Точката за монтиране вече се използва. Моля изберете друга.
@@ -859,7 +859,7 @@ The installer will quit and all changes will be lost.
Флагове:
-
+ Точката за монтиране вече се използва. Моля изберете друга.
@@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost.
Инсталирай &устройството за начално зареждане върху:
-
+ Сигурни ли сте че искате да създадете нова таблица на дяловете върху %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2569,7 +2579,7 @@ Output:
-
+ %1 поддръжка
diff --git a/lang/calamares_ca.ts b/lang/calamares_ca.ts
index 2eb963145..84bc809bb 100644
--- a/lang/calamares_ca.ts
+++ b/lang/calamares_ca.ts
@@ -477,14 +477,14 @@ L'instal·lador es tancarà i tots els canvis es perdran.
CommandList
-
+ No s'ha pogut executar l'ordre.
-
-
- No hi ha punt de muntatge d'arrel definit; per tant, no es pot executar l'ordre a l'entorn de destinació.
+
+
+
@@ -548,27 +548,27 @@ L'instal·lador es tancarà i tots els canvis es perdran.
Mi&da:
-
+ &Xifra
-
+ Lògica
-
+ Primària
-
+ GPT
-
+ El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.
@@ -858,7 +858,7 @@ L'instal·lador es tancarà i tots els canvis es perdran.
Indicadors:
-
+ El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.
@@ -1395,7 +1395,7 @@ L'instal·lador es tancarà i tots els canvis es perdran.
- No es poden obtenir números aleatoris del dispositiu RNG.
+ No es poden obtenir nombres aleatoris del dispositiu RNG.
@@ -1682,10 +1682,20 @@ L'instal·lador es tancarà i tots els canvis es perdran.
&Instal·la el gestor d'arrencada a:
-
+ Esteu segurs que voleu crear una nova taula de particions a %1?
+
+
+
+ No es pot crear la partició nova
+
+
+
+
+
+ PartitionViewStep
@@ -2107,17 +2117,17 @@ Sortida:
- Assigna el nom de l'equip %1
+ Estableix el nom d'amfitrió %1
- Establir el nom de l'hoste <strong>%1</strong>.
+ Estableix el nom d'amfitrió <strong>%1</strong>.
- Establint el nom de l'hoste %1.
+ Establint el nom d'amfitrió %1.
@@ -2129,7 +2139,7 @@ Sortida:
- No s'ha pogut escriure el nom de l'equip al sistema de destinació
+ No es pot escriure el nom d'amfitrió al sistema de destinació
@@ -2270,7 +2280,7 @@ Sortida:
- No es pot inhabilitar el compte d'arrel.
+ No es pot inhabilitar el compte de root.
@@ -2280,7 +2290,7 @@ Sortida:
- No s'ha pogut assignar la contrasenya de l'usuari %1.
+ No es pot establir la contrasenya per a l'usuari %1.
@@ -2491,7 +2501,7 @@ Sortida:
- El nom d'usuari és massa curt.
+ El nom d'amfitrió és massa curt.
@@ -2501,7 +2511,7 @@ Sortida:
- El nom d'amfitrió conté caràcters no vàlids. Només s'hi admeten lletres, números i guions.
+ El nom d'amfitrió conté caràcters no vàlids. Només s'admeten lletres, números i guions.
@@ -2553,12 +2563,12 @@ Sortida:
- <h1>Benvinguts a l'instal·lador %1.</h1>
+ <h1>Benvingut a l'instal·lador de %1.</h1>
- <h1>Us donem la benvinguda a l'instal·lador Calamares per a %1.</h1>
+ <h1>Benvingut a l'instal·lador Calamares per a %1.</h1>
@@ -2571,7 +2581,7 @@ Sortida:
<h1>%1</h1><br/><strong>%2<br/>per a %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017, Adriaan de Groot <groot@kde.org><br/>Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i l'<a href="https://www.transifex.com/calamares/calamares/">Equip de traducció del Calamares</a>.<br/><br/><a href="http://calamares.io/">El desenvolupament </a> del Calamares està patrocinat per <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 suport
@@ -2581,7 +2591,7 @@ Sortida:
- Benvinguts
+ Benvingut
\ No newline at end of file
diff --git a/lang/calamares_cs_CZ.ts b/lang/calamares_cs_CZ.ts
index 323d89cc6..a506e76d9 100644
--- a/lang/calamares_cs_CZ.ts
+++ b/lang/calamares_cs_CZ.ts
@@ -477,14 +477,14 @@ Instalační program bude ukončen a všechny změny ztraceny.
CommandList
-
+ Nedaří se spustit příkaz.
-
-
- Nebyl určen žádný přípojný bod pro kořenový oddíl, takže příkaz nemohl být spuštěn v cílovém prostředí.
+
+
+
@@ -548,27 +548,27 @@ Instalační program bude ukončen a všechny změny ztraceny.
&Velikost:
-
+ Š&ifrovat
-
+ Logický
-
+ Primární
-
+ GPT
-
+ Tento přípojný bod už je používán – vyberte jiný.
@@ -858,7 +858,7 @@ Instalační program bude ukončen a všechny změny ztraceny.
Příznaky:
-
+ Tento přípojný bod je už používán – vyberte jiný.
@@ -1682,10 +1682,20 @@ Instalační program bude ukončen a všechny změny ztraceny.
Nainstalovat &zavaděč na:
-
+ Opravdu chcete na %1 vytvořit novou tabulku oddílů?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Výstup:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a <a href="https://www.transifex.com/calamares/calamares/">tým překledatelů Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> vývoj je sponzorován <br/><a href="http://www.blue-systems.com/">Blue Systems</a> – Liberating Software.
-
+ %1 podpora
diff --git a/lang/calamares_da.ts b/lang/calamares_da.ts
index 348496a32..070463376 100644
--- a/lang/calamares_da.ts
+++ b/lang/calamares_da.ts
@@ -477,14 +477,14 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.
CommandList
-
+ Kunne ikke køre kommando.
-
-
- Der er ikke defineret nogen rootMountPoint, så kommandoen kan ikke køre i målmiljøet.
+
+
+
@@ -548,27 +548,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.&Størrelse:
-
+ Kryp&tér
-
+ Logisk
-
+ Primær
-
+ GPT
-
+ Monteringspunktet er allerede i brug. Vælg venligst et andet.
@@ -858,7 +858,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Flag:
-
+ Monteringspunktet er allerede i brug. Vælg venligst et andet.
@@ -1682,10 +1682,20 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Installér boot&loader på:
-
+ Er du sikker på, at du vil oprette en ny partitionstabel på %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Output:
<h1>%1</h1><br/><strong>%2<br/>til %3</strong><br/><br/>Ophavsret 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Ophavsret 2017 Adriaan de Groot <groot@kde.org><br/>Tak til: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg og <a href="https://www.transifex.com/calamares/calamares/">Calamares oversætterteam</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> udvikling er sponsoreret af <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 support
diff --git a/lang/calamares_de.ts b/lang/calamares_de.ts
index f480b9904..63de0898d 100644
--- a/lang/calamares_de.ts
+++ b/lang/calamares_de.ts
@@ -477,13 +477,13 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
Grö&sse:
-
+ Verschlüsseln
-
+ Logisch
-
+ Primär
-
+ GPT
-
+ Dieser Einhängepunkt wird schon benuztzt. Bitte wählen Sie einen anderen.
@@ -858,7 +858,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
Markierungen:
-
+ Der Einhängepunkt wird schon benutzt. Bitte wählen Sie einen anderen.
@@ -1682,10 +1682,20 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
Installiere Boot&loader auf:
-
+ Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ Unterstützung für %1
diff --git a/lang/calamares_el.ts b/lang/calamares_el.ts
index c41b018c8..9fd438391 100644
--- a/lang/calamares_el.ts
+++ b/lang/calamares_el.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
&Μέγεθος:
-
+
-
+ Λογική
-
+ Πρωτεύουσα
-
+ GPT
-
+
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
Σημαίες:
-
+
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
Εγκατάσταση προγράμματος ε&κκίνησης στο:
-
+ Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %1;
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ Υποστήριξη %1
diff --git a/lang/calamares_en.ts b/lang/calamares_en.ts
index ece6efc5b..62a4b46c4 100644
--- a/lang/calamares_en.ts
+++ b/lang/calamares_en.ts
@@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.
CommandList
-
+ Could not run command.
-
-
- No rootMountPoint is defined, so command cannot be run in the target environment.
+
+
+ The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
Si&ze:
-
+ En&crypt
-
+ Logical
-
+ Primary
-
+ GPT
-
+ Mountpoint already in use. Please select another one.
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
Flags:
-
+ Mountpoint already in use. Please select another one.
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
Install boot &loader on:
-
+ Are you sure you want to create a new partition table on %1?
+
+
+
+ Can not create new partition
+
+
+
+
+ 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.
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Output:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 support
diff --git a/lang/calamares_en_GB.ts b/lang/calamares_en_GB.ts
index 804626b78..9698dd084 100644
--- a/lang/calamares_en_GB.ts
+++ b/lang/calamares_en_GB.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
Si&ze:
-
+
-
+ Logical
-
+ Primary
-
+ GPT
-
+
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
Flags:
-
+
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
-
+ Are you sure you want to create a new partition table on %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ %1 support
diff --git a/lang/calamares_eo.ts b/lang/calamares_eo.ts
new file mode 100644
index 000000000..f057b5aca
--- /dev/null
+++ b/lang/calamares_eo.ts
@@ -0,0 +1,2594 @@
+
+
+ BootInfoWidget
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BootLoaderModel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %1(%2)
+
+
+
+ Calamares::DebugWindow
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Iloj
+
+
+
+
+
+
+
+
+ Calamares::ExecutionViewStep
+
+
+
+ Instali
+
+
+
+ Calamares::JobThread
+
+
+
+ Finita
+
+
+
+ Calamares::ProcessJob
+
+
+
+
+
+
+
+
+
+
+
+
+ Calamares::PythonJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Calamares::ViewManager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Nuligi
+
+
+
+
+
+ Nuligi instalado sen ŝanĝante la sistemo.
+
+
+
+
+ &Instali
+
+
+
+
+ Nuligi instalado?
+
+
+
+
+ Ĉu vi vere volas nuligi la instalan procedon?
+La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.
+
+
+
+
+ &Jes
+
+
+
+
+ &Ne
+
+
+
+
+ &Fermi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Instali nun
+
+
+
+
+
+
+
+
+
+ &Finita
+
+
+
+
+
+
+
+
+
+ Eraro
+
+
+
+
+
+
+
+
+ CalamaresPython::Helper
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CalamaresWindow
+
+
+
+ %1 Instalilo
+
+
+
+
+
+
+
+
+ CheckerWidget
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ChoicePage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ClearMountsJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ClearTempMountsJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CommandList
+
+
+
+
+
+
+
+
+
+
+
+
+ ContextualProcessJob
+
+
+
+
+
+
+
+ CreatePartitionDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CreatePartitionJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CreatePartitionTableDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CreatePartitionTableJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CreateUserJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DeletePartitionJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DeviceInfoWidget
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DeviceModel
+
+
+
+
+
+
+
+ DracutLuksCfgJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DummyCppJob
+
+
+
+
+
+
+
+ EditExistingPartitionDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ EncryptWidget
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ FillGlobalStorageJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ FinishedPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ FinishedViewStep
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ FormatPartitionJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ InteractiveTerminalPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ InteractiveTerminalViewStep
+
+
+
+
+
+
+
+ KeyboardPage
+
+
+
+
+
+
+
+
+
+
+
+
+ KeyboardViewStep
+
+
+
+
+
+
+
+ LCLocaleDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Nuligi
+
+
+
+
+
+
+
+
+ LicensePage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %1 is an untranslatable product name, example: Creative Audigy driver
+
+
+
+
+
+ %1 is usually a vendor name, example: Nvidia graphics driver
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ LicenseViewStep
+
+
+
+
+
+
+
+ LocalePage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Language (Country)
+ %1(%2)
+
+
+
+ LocaleViewStep
+
+
+
+
+
+
+
+
+
+
+
+
+ NetInstallPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ NetInstallViewStep
+
+
+
+
+
+
+
+ PWQ
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Page_Keyboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Page_UserSetup
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PartitionLabelsView
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PartitionModel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PartitionPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PlasmaLnfJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PlasmaLnfPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PlasmaLnfViewStep
+
+
+
+
+
+
+
+ ProcessResult
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QObject
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ReplaceWidget
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RequirementsChecker
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ResizePartitionJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ScanningDialog
+
+
+
+
+
+
+
+
+
+
+
+
+ SetHostNameJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SetKeyboardLayoutJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SetPartFlagsJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SetPasswordJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SetTimezoneJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ShellProcessJob
+
+
+
+
+
+
+
+ SlideCounter
+
+
+
+ slide counter, %1 of %2 (numeric)
+
+
+
+
+ SummaryPage
+
+
+
+
+
+
+
+ SummaryViewStep
+
+
+
+
+
+
+
+ TrackingInstallJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TrackingMachineNeonJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TrackingPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TrackingViewStep
+
+
+
+
+
+
+
+ UsersPage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UsersViewStep
+
+
+
+
+
+
+
+ WelcomePage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WelcomeViewStep
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lang/calamares_es.ts b/lang/calamares_es.ts
index 3b7c17604..909c5e4ca 100644
--- a/lang/calamares_es.ts
+++ b/lang/calamares_es.ts
@@ -478,14 +478,14 @@ Saldrá del instalador y se perderán todos los cambios.
CommandList
-
+ No se pudo ejecutar el comando.
-
-
- No se ha definido ningún rootMountPoint (punto de montaje de root), así que el comando no se puede ejecutar en el entorno objetivo.
+
+
+
@@ -549,27 +549,27 @@ Saldrá del instalador y se perderán todos los cambios.
&Tamaño:
-
+ &Cifrar
-
+ Lógica
-
+ Primaria
-
+ GPT
-
+ Punto de montaje ya en uso. Por favor, seleccione otro.
@@ -859,7 +859,7 @@ Saldrá del instalador y se perderán todos los cambios.
Banderas:
-
+ Punto de montaje ya en uso. Por favor, seleccione otro.
@@ -1683,10 +1683,20 @@ Saldrá del instalador y se perderán todos los cambios.
Instalar gestor de arranque en:
-
+ ¿Está seguro de querer crear una nueva tabla de particiones en %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2572,7 +2582,7 @@ Salida:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Agradecimientos: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg y al <a href="https://www.transifex.com/calamares/calamares/">equipo de traductores de Calamares</a>.<br/><br/> El desarrollo <a href="https://calamares.io/">Calamares</a> está patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberando Software.
-
+ %1 ayuda
diff --git a/lang/calamares_es_MX.ts b/lang/calamares_es_MX.ts
index 35e4d7c5e..ea1fff2c5 100644
--- a/lang/calamares_es_MX.ts
+++ b/lang/calamares_es_MX.ts
@@ -480,13 +480,13 @@ El instalador terminará y se perderán todos los cambios.
CommandList
-
+
-
-
+
+
@@ -551,27 +551,27 @@ El instalador terminará y se perderán todos los cambios.
&Tamaño:
-
+
-
+ Lógica
-
+ Primaria
-
+ GPT
-
+
@@ -861,7 +861,7 @@ El instalador terminará y se perderán todos los cambios.
Banderas:
-
+
@@ -1685,10 +1685,20 @@ El instalador terminará y se perderán todos los cambios.
-
+ ¿Está seguro de querer crear una nueva tabla de particiones en %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2572,7 +2582,7 @@ Output:
-
+ %1 Soporte
diff --git a/lang/calamares_es_PR.ts b/lang/calamares_es_PR.ts
index c87c58b43..1208d9a82 100644
--- a/lang/calamares_es_PR.ts
+++ b/lang/calamares_es_PR.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_et.ts b/lang/calamares_et.ts
index 680065815..6fb5a0625 100644
--- a/lang/calamares_et.ts
+++ b/lang/calamares_et.ts
@@ -4,17 +4,17 @@
-
+ Selle süsteemi <strong>käivituskeskkond</strong>.<br><br>Vanemad x86 süsteemid toetavad ainult <strong>BIOS</strong>i.<br>Modernsed süsteemid tavaliselt kasutavad <strong>EFI</strong>t, aga võib ka kasutada BIOSi, kui käivitatakse ühilduvusrežiimis.
-
+ See süsteem käivitati <strong>EFI</strong> käivituskeskkonnas.<br><br>Et seadistada käivitust EFI keskkonnast, peab see installija paigaldama käivituslaaduri rakenduse, näiteks <strong>GRUB</strong> või <strong>systemd-boot</strong> sinu <strong>EFI süsteemipartitsioonile</strong>. See on automaatne, välja arvatud juhul, kui valid käsitsi partitsioneerimise, sel juhul pead sa selle valima või ise looma.
-
+ See süsteem käivitati <strong>BIOS</strong> käivituskeskkonnas.<br><br>Et seadistada käivitust BIOS keskkonnast, peab see installija paigaldama käivituslaaduri, näiteks <strong>GRUB</strong>, kas mõne partitsiooni algusse või <strong>Master Boot Record</strong>'i paritsioonitabeli alguse lähedale (eelistatud). See on automaatne, välja arvatud juhul, kui valid käsitsi partitsioneerimise, sel juhul pead sa selle ise seadistama.
@@ -22,27 +22,27 @@
-
+ %1 Master Boot Record
-
+ Käivituspartitsioon
-
+ Süsteemipartitsioon
-
+ Ära installi käivituslaadurit
-
+ %1 (%2)
@@ -50,48 +50,48 @@
-
+ Form
-
+ GlobalStorage
-
+ JobQueue
-
+ Moodulid
-
+ Tüüp:
-
+ puudub
-
+ Liides:
-
+ Tööriistad
-
+ Silumisteave
@@ -99,7 +99,7 @@
-
+ Installi
@@ -115,12 +115,12 @@
-
+ Käivita käsklus %1 %2
-
+ Käivitan käsklust %1 %2
@@ -128,32 +128,32 @@
-
+ Käivitan %1 tegevust.
-
+ Halb töökausta tee
-
+ Töökaust %1 python tööle %2 pole loetav.
-
+ Halb põhiskripti fail
-
+ Põhiskripti fail %1 python tööle %2 pole loetav.
-
+ Boost.Python viga töös "%1".
@@ -161,86 +161,87 @@
-
+ &Tagasi
-
+ &Edasi
-
+ &Tühista
-
+ Tühista installimine ilma süsteemi muutmata.
-
+ &Installi
-
+ Tühista installimine?
-
+ Kas sa tõesti soovid tühistada praeguse installiprotsessi?
+Installija sulgub ja kõik muutused kaovad.
-
+ &Jah
-
+ &Ei
-
+ &Sulge
-
+ Jätka seadistusega?
-
+ %1 installija on tegemas muudatusi sinu kettale, et installida %2.<br/><strong>Sa ei saa neid muudatusi tagasi võtta.</strong>
-
+ &Installi kohe
-
+ Mine &tagasi
-
+ &Valmis
-
+ Installimine on lõpetatud. Sulge installija.
@@ -250,7 +251,7 @@ The installer will quit and all changes will be lost.
-
+ Installimine ebaõnnestus
@@ -258,22 +259,22 @@ The installer will quit and all changes will be lost.
-
+ Tundmatu veateade
-
+ mittetöödeldav Python'i viga
-
+ mittetöödeldav Python'i traceback
-
+ Kättesaamatu Python'i viga.
@@ -281,12 +282,12 @@ The installer will quit and all changes will be lost.
-
+ %1 installija
-
+ Kuva silumisteavet
@@ -294,27 +295,27 @@ The installer will quit and all changes will be lost.
-
+ See arvuti ei rahulda %1 installimiseks vajalikke minimaaltingimusi.<br/>Installimine ei saa jätkuda. <a href="#details">Detailid...</a>
-
+ See arvuti ei rahulda mõnda %1 installimiseks soovitatud tingimust.<br/>Installimine võib jätkuda, ent mõned funktsioonid võivad olla keelatud.
-
+ See programm küsib sult mõned küsimused ja seadistab %2 sinu arvutisse.
-
+ Parimate tulemuste jaoks palun veendu, et see arvuti:
-
+ Süsteeminõudmised
@@ -322,32 +323,32 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Pärast:
-
+ <strong>Käsitsi partitsioneerimine</strong><br/>Sa võid ise partitsioone luua või nende suurust muuta.
-
+ Käivituslaaduri asukoht:
-
+ %1 vähendatakse suuruseni %2MB ja %4 jaoks luuakse uus %3MB partitsioon.
-
+ Vali mäluseade:
@@ -355,42 +356,42 @@ The installer will quit and all changes will be lost.
-
+ Hetkel:
-
+ Taaskasuta %1 %2 kodupartitsioonina.
-
+ <strong>Vali vähendatav partitsioon, seejärel sikuta alumist riba suuruse muutmiseks</strong>
-
+ <strong>Vali partitsioon, kuhu installida</strong>
-
+ EFI süsteemipartitsiooni ei leitud sellest süsteemist. Palun mine tagasi ja kasuta käsitsi partitsioonimist, et seadistada %1.
-
+ EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks.
-
+ EFI süsteemipartitsioon:
-
+ Sellel mäluseadmel ei paista olevat operatsioonisüsteemi peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.
@@ -398,12 +399,12 @@ The installer will quit and all changes will be lost.
-
+ <strong>Tühjenda ketas</strong><br/>See <font color="red">kustutab</font> kõik valitud mäluseadmel olevad andmed.
-
+ Sellel mäluseadmel on peal %1. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.
@@ -411,7 +412,7 @@ The installer will quit and all changes will be lost.
-
+ <strong>Installi kõrvale</strong><br/>Installija vähendab partitsiooni, et teha ruumi operatsioonisüsteemile %1.
@@ -419,17 +420,17 @@ The installer will quit and all changes will be lost.
-
+ <strong>Asenda partitsioon</strong><br/>Asendab partitsiooni operatsioonisüsteemiga %1.
-
+ Sellel mäluseadmel on juba operatsioonisüsteem peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.
-
+ Sellel mäluseadmel on mitu operatsioonisüsteemi peal. Mida soovid teha?<br/>Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.
@@ -437,17 +438,17 @@ The installer will quit and all changes will be lost.
-
+ Tühjenda monteeringud partitsioneerimistegevustes %1 juures
-
+ Tühjendan monteeringud partitsioneerimistegevustes %1 juures.
-
+ Kõik monteeringud tühjendatud %1 jaoks
@@ -455,34 +456,34 @@ The installer will quit and all changes will be lost.
-
+ Tühjenda kõik ajutised monteeringud.
-
+ Tühjendan kõik ajutised monteeringud.
-
+ Ajutiste monteeringute nimekirja ei saa hankida.
-
+ Kõik ajutised monteeringud tühjendatud.CommandList
-
+
-
+ Käsku ei saanud käivitada.
-
-
+
+
@@ -491,7 +492,7 @@ The installer will quit and all changes will be lost.
-
+ Kontekstipõhiste protsesside töö
@@ -504,42 +505,42 @@ The installer will quit and all changes will be lost.
-
+ MiB
-
+ Partitsiooni tüüp:
-
+ %Peamine
-
+ %Laiendatud
-
+ %Failisüsteem:
-
+ LVM LV nimi
-
+ Sildid:
-
+ &Monteerimispunkt:
@@ -547,29 +548,29 @@ The installer will quit and all changes will be lost.
Suurus:
-
+
-
+ &Krüpti
-
+ Loogiline köide
-
+ Peamine
-
+ GPT
-
+
-
+ Monteerimispunkt on juba kasutusel. Palun vali mõni teine.
@@ -577,22 +578,22 @@ The installer will quit and all changes will be lost.
-
+ Loo uus %2MB partitsioon kettal %4 (%3) failisüsteemiga %1.
-
+ Loo uus <strong>%2MB</strong> partitsioon kettale <strong>%4</strong> (%3) failisüsteemiga <strong>%1</strong>.
-
+ Loon uut %1 partitsiooni kettal %2.
-
+ Installija ei suutnud luua partitsiooni kettale "%1".
@@ -600,27 +601,27 @@ The installer will quit and all changes will be lost.
-
+ Loo partitsioonitabel
-
+ Uue partitsioonitabeli loomine kustutab kettalt kõik olemasolevad andmed.
-
+ Millist partitsioonitabelit soovid luua?
-
+ Master Boot Record (MBR)
-
+ GUID partitsioonitabel (GPT)
@@ -628,22 +629,22 @@ The installer will quit and all changes will be lost.
-
+ Loo uus %1 partitsioonitabel kohta %2.
-
+ Loo uus <strong>%1</strong> partitsioonitabel kohta <strong>%2</strong> (%3).
-
+ Loon uut %1 partitsioonitabelit kohta %2.
-
+ Installija ei suutnud luua partitsioonitabelit kettale %1.
@@ -651,67 +652,67 @@ The installer will quit and all changes will be lost.
-
+ Loo kasutaja %1
-
+ Loo kasutaja <strong>%1</strong>.
-
+ Loon kasutajat %1.
-
+ Sudoja tee ei ole kirjutatav.
-
+ Sudoja faili ei saa kirjutamiseks luua.
-
+ Sudoja faili ei saa chmod-ida.
-
+ Grupifaili ei saa lugemiseks avada.
-
+ Kasutajat %1 ei saa luua.
-
+ useradd peatatud veakoodiga %1.
-
+ Kasutajat %1 ei saa lisada gruppidesse: %2.
-
+ usermod peatatud veakoodiga %1.
-
+ Kasutajale %1 ei saa kodukausta omandust määrata.
-
+ chown peatatud veakoodiga %1.
@@ -719,22 +720,22 @@ The installer will quit and all changes will be lost.
-
+ Kustuta partitsioon %1.
-
+ Kustuta partitsioon <strong>%1</strong>.
-
+ Kustutan partitsiooni %1.
-
+ Installija ei suutnud kustutada partitsiooni %1.
@@ -742,32 +743,32 @@ The installer will quit and all changes will be lost.
-
+ <strong>Partitsioonitabeli</strong> tüüp valitud mäluseadmel.<br><br>Ainuke viis partitsioonitabelit muuta on see kustutada ja nullist taasluua, mis hävitab kõik andmed mäluseadmel.<br>See installija säilitab praeguse partitsioonitabeli, v.a juhul kui sa ise valid vastupidist.<br>Kui pole kindel, eelista modernsetel süsteemidel GPT-d.
-
+ Sellel seadmel on <strong>%1</strong> partitsioonitabel.
-
+ See on <strong>loop</strong>-seade.<br><br>See on pseudo-seade ilma partitsioonitabelita, mis muudab faili ligipääsetavaks plokiseadmena. Seda tüüpi seadistus sisaldab tavaliselt ainult ühte failisüsteemi.
-
+ See installija <strong>ei suuda tuvastada partitsioonitabelit</strong>valitud mäluseadmel.<br><br>Seadmel kas pole partitsioonitabelit, see on korrumpeerunud või on tundmatut tüüpi.<br>See installija võib sulle luua uue partitsioonitabeli, kas automaatselt või läbi käsitsi partitsioneerimise lehe.
-
+ <br><br>See on soovitatav partitsioonitabeli tüüp modernsetele süsteemidele, mis käivitatakse <strong>EFI</strong>käivituskeskkonnast.
-
+ <br><br>See partitsioonitabel on soovitatav ainult vanemates süsteemides, mis käivitavad <strong>BIOS</strong>-i käivituskeskkonnast. GPT on soovitatav enamus teistel juhtudel.<br><br><strong>Hoiatus:</strong> MBR partitsioonitabel on vananenud MS-DOS aja standard.<br>aVõimalik on luua inult 4 <em>põhilist</em> partitsiooni ja nendest üks võib olla <em>laiendatud</em> partitsioon, mis omakorda sisaldab mitmeid <em>loogilisi</em> partitsioone.
@@ -775,7 +776,7 @@ The installer will quit and all changes will be lost.
-
+ %1 - %2 (%3)
@@ -783,17 +784,17 @@ The installer will quit and all changes will be lost.
-
+ Kirjuta Dracut'ile LUKS konfiguratsioon kohta %1
-
+ Lõpeta Dracut'ile LUKS konfigruatsiooni kirjutamine: "/" partitsioon pole krüptitud
-
+ %1 avamine ebaõnnestus
@@ -801,7 +802,7 @@ The installer will quit and all changes will be lost.
-
+ Testiv C++ töö
@@ -809,32 +810,32 @@ The installer will quit and all changes will be lost.
-
+ Muuda olemasolevat partitsiooni
-
+ Sisu:
-
+ &Säilita
-
+ Vorminda
-
+ Hoiatus: Partitsiooni vormindamine tühjendab kõik olemasolevad andmed.
-
+ &Monteerimispunkt:
@@ -844,22 +845,22 @@ The installer will quit and all changes will be lost.
-
+ MiB
-
+ %Failisüsteem:
-
+ Sildid:
-
+
-
+ Monteerimispunkt on juba kasutusel. Palun vali mõni teine.
@@ -867,27 +868,27 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Krüpti süsteem
-
+ Salaväljend
-
+ Kinnita salaväljendit
-
+ Palun sisesta sama salaväljend mõlemisse kasti.
@@ -895,37 +896,37 @@ The installer will quit and all changes will be lost.
-
+ Sea partitsiooni teave
-
+ Installi %1 <strong>uude</strong> %2 süsteemipartitsiooni.
-
+ Seadista <strong>uus</strong> %2 partitsioon monteerimiskohaga <strong>%1</strong>.
-
+ Installi %2 %3 süsteemipartitsioonile <strong>%1</strong>.
-
+ Seadista %3 partitsioon <strong>%1</strong> monteerimiskohaga <strong>%2</strong>
-
+ Installi käivituslaadur kohta <strong>%1</strong>.
-
+ Seadistan monteerimispunkte.
@@ -933,27 +934,27 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ <html><head/><body><p>Kui see märkeruut on täidetud, taaskäivitab su süsteem automaatselt, kui vajutad <span style=" font-style:italic;">Valmis</span> või sulged installija.</p></body></html>
-
+ &Taaskäivita nüüd
-
+ <h1>Kõik on valmis.</h1><br/>%1 on installitud sinu arvutisse.<br/>Sa võid nüüd taaskäivitada oma uude süsteemi või jätkata %2 live-keskkonna kasutamist.
-
+ <h1>Installimine ebaõnnestus</h1><br/>%1 ei installitud sinu arvutisse.<br/>Veateade oli: %2.
@@ -961,17 +962,17 @@ The installer will quit and all changes will be lost.
-
+ Valmis
-
+ Installimine lõpetatud
-
+ %1 installimine on lõpetatud.
@@ -979,22 +980,22 @@ The installer will quit and all changes will be lost.
-
+ Vorminda partitsioon %1 (failisüsteem: %2, suurus: %3 MB) kohas %4.
-
+ Vorminda <strong>%3MB</strong> partitsioon <strong>%1</strong>failisüsteemiga <strong>%2</strong>.
-
+ Vormindan partitsiooni %1 failisüsteemiga %2.
-
+ Installija ei suutnud vormindada partitsiooni %1 kettal "%2".
@@ -1002,17 +1003,17 @@ The installer will quit and all changes will be lost.
-
+ Konsole pole installitud
-
+ Palun installi KDE Konsole ja proovi uuesti!
-
+ Käivitan skripti: <code>%1</code>
@@ -1020,7 +1021,7 @@ The installer will quit and all changes will be lost.
-
+ Skript
@@ -1028,12 +1029,12 @@ The installer will quit and all changes will be lost.
-
+ Sea klaviatuurimudeliks %1.<br/>
-
+ Sea klaviatuuripaigutuseks %1/%2.
@@ -1041,7 +1042,7 @@ The installer will quit and all changes will be lost.
-
+ Klaviatuur
@@ -1049,22 +1050,22 @@ The installer will quit and all changes will be lost.
-
+ Süsteemilokaali valik
-
+ Süsteemilokaali valik mõjutab keelt ja märgistikku teatud käsurea kasutajaliideste elementidel.<br/>Praegune valik on <strong>%1</strong>.
-
+ &Tühista
-
+ &OK
@@ -1072,69 +1073,69 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Ma nõustun alljärgevate tingimustega.
-
+ <h1>Litsensileping</h1>See seadistusprotseduur installib omandiõigusega tarkvara, mis vastab litsensitingimustele.
-
+ Palun loe läbi allolevad lõppkasutaja litsensilepingud (EULAd).<br/>Kui sa tingimustega ei nõustu, ei saa seadistusprotseduur jätkata.
-
+ <h1>Litsensileping</h1>See seadistusprotseduur võib installida omandiõigusega tarkvara, mis vastab litsensitingimustele, et pakkuda lisafunktsioone ja täiendada kasutajakogemust.
-
+ Palun loe läbi allolevad lõppkasutaja litsensilepingud (EULAd).<br/>Kui sa tingimustega ei nõustu, ei installita omandiõigusega tarkvara ning selle asemel kasutatakse avatud lähtekoodiga alternatiive.%1 is an untranslatable product name, example: Creative Audigy driver
-
+ <strong>%1 draiver</strong><br/>autorilt %2%1 is usually a vendor name, example: Nvidia graphics driver
-
+ <strong>%1 graafikadraiver</strong><br/><font color="Grey">autorilt %2</font>
-
+ <strong>%1 brauseriplugin</strong><br/><font color="Grey">autorilt %2</font>
-
+ <strong>%1 koodek</strong><br/><font color="Grey">autorilt %2</font>
-
+ <strong>%1 pakett</strong><br/><font color="Grey">autorilt %2</font>
-
+ <strong>%1</strong><br/><font color="Grey">autorilt %2</font>
-
+ <a href="%1">vaata litsensitingimusi</a>
@@ -1142,7 +1143,7 @@ The installer will quit and all changes will be lost.
-
+ Litsents
@@ -1150,39 +1151,39 @@ The installer will quit and all changes will be lost.
-
+ Süsteemikeeleks määratakse %1.
-
+ Arvude ja kuupäevade lokaaliks seatakse %1.
-
+ Regioon:
-
+ Tsoon:
-
+ &Muuda...
-
+ Määra ajatsooniks %1/%2.<br/>Language (Country)
-
+ %1 (%2)
@@ -1190,7 +1191,7 @@ The installer will quit and all changes will be lost.
-
+ Laadin asukohaandmeid...
@@ -1203,22 +1204,22 @@ The installer will quit and all changes will be lost.
-
+ Nimi
-
+ Kirjeldus
-
+ Võrguinstall. (Keelatud: paketinimistute saamine ebaõnnestus, kontrolli oma võrguühendust)
-
+ Võrguinstall. (Keelatud: vastu võetud sobimatud grupiandmed)
@@ -1226,7 +1227,7 @@ The installer will quit and all changes will be lost.
-
+ Paketivalik
@@ -1234,242 +1235,242 @@ The installer will quit and all changes will be lost.
-
+ Parool on liiga lühike
-
+ Parool on liiga pikk
-
+ Parool on liiga nõrk
-
+ Mälu eraldamise viga valikut "%1" määrates
-
+ Mälu eraldamise viga
-
+ Parool on sama mis enne
-
+ Parool on palindroom
-
+ Parool erineb ainult suurtähtede poolest
-
+ Parool on eelmisega liiga sarnane
-
+ Parool sisaldab mingil kujul kasutajanime
-
+ Parool sisaldab mingil kujul sõnu kasutaja pärisnimest
-
+ Parool sisaldab mingil kujul sobimatuid sõnu
-
+ Parool sisaldab vähem kui %1 numbrit
-
+ Parool sisaldab liiga vähe numbreid
-
+ Parool sisaldab vähem kui %1 suurtähte
-
+ Parool sisaldab liiga vähe suurtähti
-
+ Parool sisaldab vähem kui %1 väiketähte
-
+ Parool sisaldab liiga vähe väiketähti
-
+ Parool sisaldab vähem kui %1 mitte-tähestikulist märki
-
+ Parool sisaldab liiga vähe mitte-tähestikulisi märke
-
+ Parool on lühem kui %1 tähemärki
-
+ Parool on liiga lühike
-
+ Parool on lihtsalt pööratud eelmine parool
-
+ Parool sisaldab vähem kui %1 tähemärgiklassi
-
+ Parool ei sisalda piisavalt tähemärgiklasse
-
+ Parool sisaldab järjest rohkem kui %1 sama tähemärki
-
+ Parool sisaldab järjest liiga palju sama tähemärki
-
+ Parool sisaldab järjest samast klassist rohkem kui %1 tähemärki
-
+ Parool sisaldab järjest liiga palju samast klassist tähemärke
-
+ Parool sisaldab monotoonset jada, mis on pikem kui %1 tähemärki
-
+ Parool sisaldab liiga pikka monotoonsete tähemärkide jada
-
+ Parooli ei sisestatud
-
+ RNG seadmest ei saanud hankida juhuslikke numbreid
-
+ Parooligenereerimine ebaõnnestus - nõutud entroopia on seadete jaoks liiga vähe
-
+ Parool põrub sõnastikukontrolli - %1
-
+ Parool põrub sõnastikukontrolli
-
+ Tundmatu valik - %1
-
+ Tundmatu valik
-
+ Halb täisarvuline väärtus valikul - %1
-
+ Halb täisarvuväärtus
-
+ Valik %1 pole täisarvu tüüpi
-
+ Valik ei ole täisarvu tüüpi
-
+ Valik %1 ei ole string-tüüpi
-
+ Valik ei ole string-tüüpi
-
+ Konfiguratsioonifaili avamine ebaõnnestus
-
+ Konfiguratsioonifail on rikutud
-
+ Saatuslik viga
-
+ Tundmatu viga
@@ -1477,17 +1478,17 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Klaviatuurimudel:
-
+ Kirjuta siia, et testida oma klaviatuuri
@@ -1495,69 +1496,69 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Mis on su nimi?
-
+ Mis nime soovid sisselogimiseks kasutada?
-
+ font-weight: normal
-
+ <small>Kui rohkem kui üks inimene kasutab seda arvutit, saad sa määrata mitu kontot peale installi.</small>
-
+ Vali parool, et hoida oma konto turvalisena.
-
+ <small>Sisesta sama parool kaks korda, et kontrollida kirjavigade puudumist. Hea parool sisaldab segu tähtedest, numbritest ja kirjavahemärkidest, peaks olema vähemalt kaheksa märki pikk ja seda peaks muutma regulaarselt.</small>
-
+ Mis on selle arvuti nimi?
-
+ <small>Seda nime kasutatakse, kui teed arvuti võrgus teistele nähtavaks.</small>
-
+ Logi automaatselt sisse ilma parooli küsimata.
-
+ Kasuta sama parooli administraatorikontole.
-
+ Vali administraatori kontole parool.
-
+ <small>Sisesta sama parooli kaks korda, et kontrollida kirjavigade puudumist.</small>
@@ -1565,42 +1566,42 @@ The installer will quit and all changes will be lost.
-
+ Juur
-
+ Kodu
-
+ Käivitus
-
+ EFI süsteem
-
+ Swap
-
+ Uus partitsioon %1 jaoks
-
+ Uus partitsioon
-
+ %1 %2
@@ -1609,33 +1610,33 @@ The installer will quit and all changes will be lost.
-
+ Tühi ruum
-
+ Uus partitsioon
-
+ Nimi
-
+ Failisüsteem
-
+ Monteerimispunkt
-
+ Suurus
@@ -1643,46 +1644,56 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Mäluseade:
-
+ &Ennista kõik muutused
-
+ Uus partitsioonitabel
-
+ &Loo
-
+ &Muuda
-
+ &Kustuta
+ Installi käivituslaadur kohta:
+
+
+
+
+ Kas soovid kindlasti luua uut partitsioonitabelit kettale %1?
+
+
+
+
-
-
+
+
@@ -1691,97 +1702,97 @@ The installer will quit and all changes will be lost.
-
+ Hangin süsteemiteavet...
-
+ Partitsioonid
-
+ Installi %1 praeguse operatsioonisüsteemi <strong>kõrvale</strong>
-
+ <strong>Tühjenda</strong> ketas ja installi %1.
-
+ <strong>Asenda</strong> partitsioon operatsioonisüsteemiga %1.
-
+ <strong>Käsitsi</strong> partitsioneerimine.
-
+ Installi %1 teise operatsioonisüsteemi <strong>kõrvale</strong> kettal <strong>%2</strong> (%3).
-
+ <strong>Tühjenda</strong> ketas <strong>%2</strong> (%3) ja installi %1.
-
+ <strong>Asenda</strong> partitsioon kettal <strong>%2</strong> (%3) operatsioonisüsteemiga %1.
-
+ <strong>Käsitsi</strong> partitsioneerimine kettal <strong>%1</strong> (%2).
-
+ Ketas <strong>%1</strong> (%2).
-
+ Hetkel:
-
+ Pärast:
-
+ EFI süsteemipartitsiooni pole seadistatud
-
+ %1 käivitamiseks on vajalik EFI süsteemipartitsioon.<br/><br/>Et seadistada EFI süsteemipartitsiooni, mine tagasi ja vali või loo FAT32 failisüsteem sildiga <strong>esp</strong> ja monteerimispunktiga <strong>%2</strong>.<br/><br/>Sa võid jätkata ilma EFI süsteemipartitsiooni seadistamata aga su süsteem ei pruugi käivituda.
-
+ EFI süsteemipartitsiooni silt pole määratud
-
+ %1 käivitamiseks on vajalik EFI süsteemipartitsioon.<br/><br/>Partitsioon seadistati monteerimispunktiga <strong>%2</strong> aga sellel ei määratud <strong>esp</strong> silti.<br/>Sildi määramiseks mine tagasi ja muuda partitsiooni.<br/><br/>Sa võid jätkata ilma silti seadistamata aga su süsteem ei pruugi käivituda.
-
+ Käivituspartitsioon pole krüptitud
-
+ Eraldi käivituspartitsioon seadistati koos krüptitud juurpartitsiooniga, aga käivituspartitsioon ise ei ole krüptitud.<br/><br/>Selle seadistusega kaasnevad turvaprobleemid, sest tähtsad süsteemifailid hoitakse krüptimata partitsioonil.<br/>Sa võid soovi korral jätkata, aga failisüsteemi lukust lahti tegemine toimub hiljem süsteemi käivitusel.<br/>Et krüpteerida käivituspartisiooni, mine tagasi ja taasloo see, valides <strong>Krüpteeri</strong> partitsiooni loomise aknas.
@@ -1789,13 +1800,13 @@ The installer will quit and all changes will be lost.
-
+ Plasma välimuse-ja-tunnetuse töö
-
+ KDE Plasma välimuse-ja-tunnetuse paketti ei saanud valida
@@ -1803,17 +1814,17 @@ The installer will quit and all changes will be lost.
-
+ Form
-
+ Kohatäitja
-
+ Palun vali KDE Plasma Desktop'ile välimus-ja-tunnetus. Sa võid selle sammu ka vahele jätta ja seadistada välimust-ja-tunnetust siis, kui süsteem on installitud. Välimuse-ja-tunnetuse valikule klõpsates näed selle reaalajas eelvaadet.
@@ -1821,7 +1832,7 @@ The installer will quit and all changes will be lost.
-
+ Välimus-ja-tunnetus
@@ -1830,64 +1841,67 @@ The installer will quit and all changes will be lost.
-
+
+Käsul polnud väljundit.
-
+
+Väljund:
+
-
+ Väline käsk jooksis kokku.
-
+ Käsk <i>%1</i> jooksis kokku.
-
+ Välise käsu käivitamine ebaõnnestus.
-
+ Käsu <i>%1</i> käivitamine ebaõnnestus.
-
+ Käsu käivitamisel esines sisemine viga.
-
+ Protsessi töö kutsel olid halvad parameetrid.
-
+ Väline käsk ei suutnud lõpetada.
-
+ Käsk <i>%1</i> ei suutnud lõpetada %2 sekundi jooksul.
-
+ Väline käsk lõpetas vigadega.
-
+ Käsk <i>%1</i> lõpetas sulgemiskoodiga %2.
@@ -1895,38 +1909,38 @@ Output:
-
+ Vaikimisi klaviatuurimudel
-
+ Vaikimisi
-
+ tundmatu
-
+ laiendatud
-
+ vormindamata
-
+ swap
-
+ Partitsioneerimata ruum või tundmatu partitsioonitabel
@@ -1934,74 +1948,74 @@ Output:
-
+ Form
-
+ Vali, kuhu soovid %1 installida.<br/><font color="red">Hoiatus: </font>see kustutab valitud partitsioonilt kõik failid.
-
+ Valitud üksus ei paista olevat sobiv partitsioon.
-
+ %1 ei saa installida tühjale kohale. Palun vali olemasolev partitsioon.
-
+ %1 ei saa installida laiendatud partitsioonile. Palun vali olemasolev põhiline või loogiline partitsioon.
-
+ %1 ei saa installida sellele partitsioonidel.
-
+ Andmepartitsioon (%1)
-
+ Tundmatu süsteemipartitsioon (%1)
-
+ %1 süsteemipartitsioon (%2)
-
+ <strong>%4</strong><br/><br/>Partitsioon %1 on liiga väike %2 jaoks. Palun vali partitsioon suurusega vähemalt %3 GiB.
-
+ <strong>%2</strong><br/><br/>Sellest süsteemist ei leitud EFI süsteemipartitsiooni. Palun mine tagasi ja kasuta käsitsi partitsioneerimist, et seadistada %1.
-
+ <strong>%3</strong><br/><br/>%1 installitakse partitsioonile %2.<br/><font color="red">Hoiatus: </font>kõik andmed partitsioonil %2 kaovad.
-
+ EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks.
-
+ EFI süsteemipartitsioon:
@@ -2009,57 +2023,57 @@ Output:
-
+ Hangin süsteemiteavet...
-
+ omab vähemalt %1 GB vaba kettaruumi
-
+ Pole piisavalt kettaruumi. Vähemalt %1 GB on nõutud.
-
+ omab vähemalt %1 GB töötamismälu
-
+ Süsteemil pole piisavalt töötamismälu. Vähemalt %1 GB on nõutud.
-
+ on ühendatud vooluallikasse
-
+ Süsteem pole ühendatud vooluallikasse.
-
+ on ühendatud Internetti
-
+ Süsteem pole ühendatud Internetti.
-
+ Installija ei tööta administraatoriõigustega.
-
+ Ekraan on liiga väike installija kuvamiseks.
@@ -2067,22 +2081,22 @@ Output:
-
+ Muuda partitsiooni %1 suurust.
-
+ Muuda <strong>%2MB</strong> partitsiooni <strong>%1</strong>suuruseks <strong>%3MB</strong>.
-
+ Muudan %2MB partitsiooni %1 suuruseks %3MB
-
+ Installijal ebaõnnestus partitsiooni %1 suuruse muutmine kettal "%2".
@@ -2090,12 +2104,12 @@ Output:
-
+ Skaneerin mäluseadmeid...
-
+ Partitsioneerimine
@@ -2103,29 +2117,29 @@ Output:
-
+ Määra hostinimi %1
-
+ Määra hostinimi <strong>%1</strong>.
-
+ Määran hostinime %1.
-
+ Sisemine viga
-
+ Hostinime ei saa sihtsüsteemile kirjutada
@@ -2133,29 +2147,29 @@ Output:
-
+ Klaviatuurimudeliks on seatud %1, paigutuseks %2-%3
-
+ Klaviatuurikonfiguratsiooni kirjutamine virtuaalkonsooli ebaõnnestus.
-
+ Kohta %1 kirjutamine ebaõnnestus
-
+ Klaviatuurikonsooli kirjutamine X11-le ebaõnnestus.
-
+ Klaviatuurikonfiguratsiooni kirjutamine olemasolevale /etc/default kaustateele ebaõnnestus.
@@ -2163,82 +2177,82 @@ Output:
-
+ Määratud sildid partitsioonil %1:
-
+ Sildid määratud %1MB %2 partitsioonile.
-
+ Määra sildid uuele partitsioonile.
-
+ Tühjenda sildid partitsioonil <strong>%1</strong>.
-
+ Tühjenda sildid %1MB <strong>%2</strong> partitsioonilt.
-
+ Tühjenda sildid uuel partitsioonil
-
+ Määra partitsioonile <strong>%1</strong> silt <strong>%2</strong>.
-
+ Määra %1MB <strong>%2</strong> partitsiooni sildiks <strong>%3</strong>.
-
+ Määra uuele partitsioonile silt <strong>%1</strong>.
-
+ Eemaldan sildid partitsioonilt <strong>%1</strong>.
-
+ Eemaldan sildid %1MB <strong>%2</strong> partitsioonilt.
-
+ Eemaldan uuelt partitsioonilt sildid.
-
+ Määran sildid <strong>%1</strong> partitsioonile <strong>%1</strong>.
-
+ Määran sildid <strong>%3</strong> %1MB <strong>%2</strong> partitsioonile.
-
+ Määran sildid <strong>%1</strong> uuele partitsioonile.
-
+ Installija ei suutnud silte määrata partitsioonile %1.
@@ -2246,42 +2260,42 @@ Output:
-
+ Määra kasutajale %1 parool
-
+ Määran kasutajale %1 parooli.
-
+ Halb sihtsüsteemi tee.
-
+ rootMountPoint on %1
-
+ Juurkasutajat ei saa keelata.
-
+ passwd peatatud veakoodiga %1.
-
+ Kasutajale %1 ei saa parooli määrata.
-
+ usermod peatatud veateatega %1.
@@ -2289,37 +2303,37 @@ Output:
-
+ Määra ajatsooniks %1/%2
-
+ Valitud ajatsooni teele ei saa ligi.
-
+ Halb tee: %1
-
+ Ajatsooni ei saa määrata.
-
+ Lingi loomine ebaõnnestus, siht: %1; lingi nimi: %2
-
+ Ajatsooni ei saa määrata,
-
+ /etc/timezone ei saa kirjutamiseks avada
@@ -2327,7 +2341,7 @@ Output:
-
+ Kesta protsesside töö
@@ -2336,7 +2350,7 @@ Output:
slide counter, %1 of %2 (numeric)
-
+ %L1 / %L2
@@ -2344,7 +2358,7 @@ Output:
-
+ See on ülevaade sellest mis juhtub, kui alustad installiprotseduuri.
@@ -2360,22 +2374,22 @@ Output:
-
+ Installimise tagasiside
-
+ Saadan installimise tagasisidet.
-
+ Installi jälitamisel esines sisemine viga.
-
+ HTTP taotlusel esines ajalõpp.
@@ -2383,28 +2397,28 @@ Output:
-
+ Seadme tagasiside
-
+ Seadistan seadme tagasisidet.
-
+ Masina tagasiside konfiguratsioonis esines viga.
-
+ Masina tagasisidet ei suudetud korralikult konfigureerida, skripti viga %1.
-
+ Masina tagasisidet ei suudetud korralikult konfigureerida, Calamares'e viga %1.
@@ -2412,56 +2426,56 @@ Output:
-
+ Form
-
+ Kohatäitja
-
+ <html><head/><body><p>Seda valides <span style=" font-weight:600;">ei saada sa üldse</span> teavet oma installi kohta.</p></body></html>
-
+ TextLabel
-
+ ...
-
+ <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Klõpsa siia, et saada rohkem teavet kasutaja tagasiside kohta</span></a></p></body></html>
-
+ Installijälitamine aitab %1-l näha, mitu kasutajat neil on, mis riistvarale nad %1 installivad ja (märkides kaks alumist valikut) saada pidevat teavet eelistatud rakenduste kohta. Et näha, mis infot saadetakse, palun klõpsa abiikooni iga ala kõrval.
-
+ Seda valides saadad sa teavet oma installi ja riistvara kohta. See teave <b>saadetakse ainult korra</b>peale installi lõppu.
-
+ Seda valides saadad sa %1-le <b>perioodiliselt</b> infot oma installi, riistvara ja rakenduste kohta.
-
+ Seda valides saadad sa %1-le <b>regulaarselt</b> infot oma installi, riistvara, rakenduste ja kasutusharjumuste kohta.
@@ -2469,7 +2483,7 @@ Output:
-
+ Tagasiside
@@ -2477,33 +2491,33 @@ Output:
-
+ Sinu kasutajanimi on liiga pikk.
-
+ Sinu kasutajanimi sisaldab sobimatuid tähemärke. Lubatud on ainult väiketähed ja numbrid.
-
+ Sinu hostinimi on liiga lühike.
-
+ Sinu hostinimi on liiga pikk.
-
+ Sinu hostinimi sisaldab sobimatuid tähemärke. Ainult tähed, numbrid ja sidekriipsud on lubatud.
-
+ Sinu paroolid ei ühti!
@@ -2511,7 +2525,7 @@ Output:
-
+ Kasutajad
@@ -2519,57 +2533,57 @@ Output:
-
+ Form
-
+ &Keel:
-
+ &Väljalaskemärkmed
-
+ &Teadaolevad vead
-
+ &Tugi
-
+ &Teave
-
+ <h1>Tere tulemast %1 installijasse.</h1>
-
+ <h1>Tere tulemast Calamares'i installijasse %1 jaoks.</h1>
-
+ Teave %1 installija kohta
-
+ <h1>%1</h1><br/><strong>%2<br/>%3 jaoks</strong><br/><br/>Autoriõigus 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Autoriõigus 2017 Adriaan de Groot <groot@kde.org><br/>Täname: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ja <a href="https://www.transifex.com/calamares/calamares/">Calamares'i tõlkijate meeskonda</a>.<br/><br/><a href="https://calamares.io/">Calamares'i</a> arendust toetab <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+
-
+ %1 tugi
@@ -2577,7 +2591,7 @@ Output:
-
+ Tervist
\ No newline at end of file
diff --git a/lang/calamares_eu.ts b/lang/calamares_eu.ts
index 1939fd091..b904080dc 100644
--- a/lang/calamares_eu.ts
+++ b/lang/calamares_eu.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
Ta&maina:
-
+
-
+ Logikoa
-
+ Primarioa
-
+ GPT
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+ %1 euskarria
diff --git a/lang/calamares_fa.ts b/lang/calamares_fa.ts
index 30dfc46b1..bf4a89baf 100644
--- a/lang/calamares_fa.ts
+++ b/lang/calamares_fa.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_fi_FI.ts b/lang/calamares_fi_FI.ts
index d7f1b8067..b4356ffd3 100644
--- a/lang/calamares_fi_FI.ts
+++ b/lang/calamares_fi_FI.ts
@@ -477,13 +477,13 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.
K&oko:
-
+
-
+ Looginen
-
+ Ensisijainen
-
+ GPT
-
+
@@ -858,7 +858,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.
Liput:
-
+
@@ -1682,10 +1682,20 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.
-
+ Oletko varma, että haluat luoda uuden osion %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+
diff --git a/lang/calamares_fr.ts b/lang/calamares_fr.ts
index 26390c939..dbc00a823 100644
--- a/lang/calamares_fr.ts
+++ b/lang/calamares_fr.ts
@@ -477,14 +477,14 @@ L'installateur se fermera et les changements seront perdus.
CommandList
-
+ La commande n'a pas pu être exécutée.
-
-
- Aucun point de montage racine n'est défini, la commande n'a pas pu être exécutée dans l'environnement cible.
+
+
+
@@ -548,27 +548,27 @@ L'installateur se fermera et les changements seront perdus.
Ta&ille :
-
+ Chi&ffrer
-
+ Logique
-
+ Primaire
-
+ GPT
-
+ Le point de montage est déjà utilisé. Merci d'en sélectionner un autre.
@@ -858,7 +858,7 @@ L'installateur se fermera et les changements seront perdus.
Drapeaux:
-
+ Le point de montage est déjà utilisé. Merci d'en sélectionner un autre.
@@ -1682,10 +1682,20 @@ L'installateur se fermera et les changements seront perdus.
Installer le chargeur de démarrage sur:
-
+ Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %1 ?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2572,7 +2582,7 @@ Sortie
<h1>%1</h1><br/><strong>%2<br/> pour %3</strong><br/><br/> Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/> Copyright 2017 Adriaan de Groot <groot@kde.org><br/> Merci à : Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg et <a href="https://www.transifex.com/calamares/calamares/">l'équipe de traducteurs de Calamares</a>.<br/><br/> Le développement de <a href="https://calamares.io/">Calamares</a> est sponsorisé par <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ Support de %1
diff --git a/lang/calamares_fr_CH.ts b/lang/calamares_fr_CH.ts
index 8df7f0675..7ec7a710e 100644
--- a/lang/calamares_fr_CH.ts
+++ b/lang/calamares_fr_CH.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_gl.ts b/lang/calamares_gl.ts
index baf14fb42..28cb9a787 100644
--- a/lang/calamares_gl.ts
+++ b/lang/calamares_gl.ts
@@ -478,13 +478,13 @@ O instalador pecharase e perderanse todos os cambios.
CommandList
-
+
-
-
+
+
@@ -549,27 +549,27 @@ O instalador pecharase e perderanse todos os cambios.
&Tamaño:
-
+ Encriptar
-
+ Lóxica
-
+ Primaria
-
+ GPT
-
+ Punto de montaxe xa en uso. Faga o favor de escoller outro
@@ -859,7 +859,7 @@ O instalador pecharase e perderanse todos os cambios.
Bandeiras:
-
+ Punto de montaxe xa en uso. Faga o favor de escoller outro.
@@ -1683,10 +1683,20 @@ O instalador pecharase e perderanse todos os cambios.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2569,7 +2579,7 @@ Output:
-
+ %1 axuda
diff --git a/lang/calamares_gu.ts b/lang/calamares_gu.ts
index 0b1da0b3e..e53370b9e 100644
--- a/lang/calamares_gu.ts
+++ b/lang/calamares_gu.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_he.ts b/lang/calamares_he.ts
index 88422ec29..ef788f793 100644
--- a/lang/calamares_he.ts
+++ b/lang/calamares_he.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
גו&דל:
-
+ ה&צפן
-
+ לוגי
-
+ ראשי
-
+ GPT
-
+ נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
סימונים:
-
+ נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
התקן &מנהל אתחול מערכת על:
-
+ האם אתה בטוח שברצונך ליצור טבלת מחיצות חדשה על %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ תמיכה ב - %1
diff --git a/lang/calamares_hi.ts b/lang/calamares_hi.ts
index 02238b665..71e7ce3e8 100644
--- a/lang/calamares_hi.ts
+++ b/lang/calamares_hi.ts
@@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.
CommandList
-
+ कमांड run नहीं की जा सकी।
-
-
- कोई rootMountPoint परिभाषित नहीं है, इसलिए कमांड को लक्ष्य वातावरण में run नहीं किया जा सकता है।
+
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
-
+ En&crypt
-
+
-
+ मुख्य
-
+ GPT
-
+
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
Flags:
-
+
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, रोहन गर्ग व <a href="https://www.transifex.com/calamares/calamares/">Calamares अनुवादक टीम</a> का धन्यवाद।<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 सहायता
diff --git a/lang/calamares_hr.ts b/lang/calamares_hr.ts
index 93fed2798..7d70ee86f 100644
--- a/lang/calamares_hr.ts
+++ b/lang/calamares_hr.ts
@@ -477,14 +477,14 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.
CommandList
-
+ Ne mogu pokrenuti naredbu.
-
-
- Nije definirana root točka montiranja tako da se naredba ne može izvršiti na ciljanoj okolini.
+
+
+
@@ -548,27 +548,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ve&ličina:
-
+ Ši&friraj
-
+ Logično
-
+ Primarno
-
+ GPT
-
+ Točka montiranja se već koristi. Odaberite drugu.
@@ -858,7 +858,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Oznake:
-
+ Točka montiranja se već koristi. Odaberite drugu.
@@ -1682,10 +1682,20 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Instaliraj boot &učitavač na:
-
+ Jeste li sigurni da želite stvoriti novu particijsku tablicu na %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Izlaz:
<h1>%1</h1><br/><strong>%2<br/>za %3</strong><br/><br/>Autorska prava 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Autorska prava 2017 Adriaan de Groot <groot@kde.org><br/>Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">Calamares timu za prevođenje</a>.<br/><br/><a href="https://calamares.io/">Calamares sponzorira <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 podrška
diff --git a/lang/calamares_hu.ts b/lang/calamares_hu.ts
index 3652a5eec..c5d3aeb76 100644
--- a/lang/calamares_hu.ts
+++ b/lang/calamares_hu.ts
@@ -478,13 +478,13 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
CommandList
-
+ A parancsot nem lehet futtatni.
-
-
+
+
@@ -549,27 +549,27 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
Mé&ret:
-
+ Titkosítás
-
+ Logikai
-
+ Elsődleges
-
+ GPT
-
+ A csatolási pont már használatban van. Kérlek, válassz másikat.
@@ -859,7 +859,7 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
Zászlók:
-
+ A csatolási pont már használatban van. Kérlek, válassz másikat.
@@ -1683,10 +1683,20 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
&Rendszerbetöltő telepítése ide:
-
+ Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %1 ?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2570,7 +2580,7 @@ Calamares hiba %1.
-
+ %1 támogatás
diff --git a/lang/calamares_id.ts b/lang/calamares_id.ts
index 0babc5db5..0c5816d82 100644
--- a/lang/calamares_id.ts
+++ b/lang/calamares_id.ts
@@ -479,14 +479,14 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.
CommandList
-
+ Tidak dapat menjalankan perintah
-
-
- rootMountPoint tidak didefiniskan, sehingga perintah tidak dapat dijalankan dalam lingkungan environment
+
+
+
@@ -550,27 +550,27 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Uku&ran:
-
+ Enkripsi
-
+ Logikal
-
+ Utama
-
+ GPT
-
+ Titik-kait sudah digunakan. Silakan pilih yang lainnya.
@@ -860,7 +860,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Bendera:
-
+ Titik-kait sudah digunakan. Silakan pilih yang lainnya.
@@ -1684,10 +1684,20 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Pasang boot %loader pada:
-
+ Apakah Anda yakin ingin membuat tabel partisi baru pada %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2573,7 +2583,7 @@ Keluaran:
<h1>%1</h1><br/><strong>%2<br/>untuk %3</strong><br/><br/> Hak Cipta 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Hak Cipta 2017 Adriaan de Groot <groot@kde.org><br/> Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan <a href="https://www.transifex.com/calamares/calamares/"> tim penerjemah Calamares </a>. <br/><br/><a href="https://calamares.io/">Pengembangan Calamares</a>disponsori oleh <br/><a href="http://www.blue-systems.com/">Blue Systems</a>- Liberating Software.
-
+ Dukungan %1
diff --git a/lang/calamares_is.ts b/lang/calamares_is.ts
index 1960feb74..cec03d0c2 100644
--- a/lang/calamares_is.ts
+++ b/lang/calamares_is.ts
@@ -477,13 +477,13 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.
St&ærð:
-
+ &Dulrita
-
+ Rökleg
-
+ Aðal
-
+ GPT
-
+ Tengipunktur er þegar í notkun. Veldu einhvern annan.
@@ -858,7 +858,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.
Flögg:
-
+ Tengipunktur er þegar í notkun. Veldu einhvern annan.
@@ -1682,10 +1682,20 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.
Setja upp ræsistjóran á:
-
+ Ertu viss um að þú viljir búa til nýja disksneið á %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ %1 stuðningur
diff --git a/lang/calamares_it_IT.ts b/lang/calamares_it_IT.ts
index 78e1743e8..e691e62b6 100644
--- a/lang/calamares_it_IT.ts
+++ b/lang/calamares_it_IT.ts
@@ -477,14 +477,14 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
CommandList
-
+ Impossibile eseguire il comando.
-
-
- Non è stato definito alcun rootMountPoint, quindi il comando non può essere eseguito nell'ambiente di destinazione.
+
+
+
@@ -548,27 +548,27 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
&Dimensione:
-
+ Cr&iptare
-
+ Logica
-
+ Primaria
-
+ GPT
-
+ Il punto di mount è già in uso. Sceglierne un altro.
@@ -858,7 +858,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
Flag:
-
+ Il punto di mount è già in uso. Sceglierne un altro.
@@ -1682,10 +1682,20 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
Installare il boot &loader su:
-
+ Si è sicuri di voler creare una nuova tabella delle partizioni su %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2570,7 +2580,7 @@ Output:
-
+ supporto %1
diff --git a/lang/calamares_ja.ts b/lang/calamares_ja.ts
index b06c45c41..589d66db2 100644
--- a/lang/calamares_ja.ts
+++ b/lang/calamares_ja.ts
@@ -184,7 +184,7 @@
-
+ インストール(&I)
@@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.
CommandList
-
+ コマンドを実行できませんでした。
-
-
- rootMountPoint が定義されていません、それでターゲットとする環境でコマンドが起動しません。
+
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
サイズ(&Z)
-
+ 暗号化(&C)
-
+ 論理
-
+ プライマリ
-
+ GPT
-
+ マウントポイントは既に使用されています。他を選択してください。
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
フラグ:
-
+ マウントポイントは既に使用されています。他を選択してください。
@@ -1381,12 +1381,12 @@ The installer will quit and all changes will be lost.
-
+ パスワードに %1 文字以上の単調な文字列が含まれています
-
+ パスワードに限度を超えた単調な文字列が含まれています
@@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost.
ブートローダーインストール先 (&L):
-
+ %1 上で新しいパーティションテーブルを作成します。よろしいですか?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -1815,7 +1825,7 @@ The installer will quit and all changes will be lost.
-
+ KDE Plasma デスクトップの外観を選んでください。この作業はスキップでき、インストール後に外観を設定することができます。外観を選択し、クリックすることにより外観のプレビューが表示されます。
@@ -2341,7 +2351,7 @@ Output:
slide counter, %1 of %2 (numeric)
-
+ %L1 / %L2
@@ -2572,7 +2582,7 @@ Output:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 サポート
diff --git a/lang/calamares_kk.ts b/lang/calamares_kk.ts
index e3105d100..b63a348ae 100644
--- a/lang/calamares_kk.ts
+++ b/lang/calamares_kk.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+ %1 қолдауы
diff --git a/lang/calamares_kn.ts b/lang/calamares_kn.ts
index 90340bc67..e67824b9c 100644
--- a/lang/calamares_kn.ts
+++ b/lang/calamares_kn.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_lo.ts b/lang/calamares_lo.ts
index 84f5157a1..ba18f4e33 100644
--- a/lang/calamares_lo.ts
+++ b/lang/calamares_lo.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_lt.ts b/lang/calamares_lt.ts
index 0b0939d43..280248bd5 100644
--- a/lang/calamares_lt.ts
+++ b/lang/calamares_lt.ts
@@ -477,14 +477,14 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.
CommandList
-
+ Nepavyko paleisti komandos.
-
-
- Nėra apibrėžta šaknies prijungimo vieta, taigi komanda negali būti įvykdyta paskirties aplinkoje.
+
+
+ Komanda yra vykdoma serverio aplinkoje ir turi žinoti šaknies kelią, tačiau nėra apibrėžtas joks rootMountPoint.
@@ -548,27 +548,27 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.
D&ydis:
-
+ Užši&fruoti
-
+ Loginė
-
+ Pagrindinė
-
+ GPT
-
+ Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.
@@ -858,7 +858,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.
Vėliavėlės:
-
+ Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.
@@ -1682,10 +1682,20 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.
Įdiegti pa&leidyklę skaidinyje:
-
+ Ar tikrai %1 norite sukurti naują skaidinių lentelę?
+
+
+
+ Nepavyksta sukurti naują skaidinį
+
+
+
+
+ Skaidinių lentelėje ties %1 jau yra %2 pirminiai skaidiniai ir daugiau nebegali būti pridėta. Pašalinkite vieną pirminį skaidinį ir vietoj jo, pridėkite išplėstą skaidinį.
+ PartitionViewStep
@@ -2265,7 +2275,7 @@ Išvestis:
- šaknies prijungimo vieta yra %1
+ rootMountPoint yra %1
@@ -2571,7 +2581,7 @@ Išvestis:
<h1>%1</h1><br/><strong>%2<br/>sistemai %3</strong><br/><br/>Autorių teisės 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Autorių teisės 2017 Adriaan de Groot <groot@kde.org><br/>Dėkojame: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ir <a href="https://www.transifex.com/calamares/calamares/">Calamares vertėjų komandai</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> kūrimą remia <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Išlaisvinanti programinė įranga.
-
+ %1 palaikymas
diff --git a/lang/calamares_mr.ts b/lang/calamares_mr.ts
index 4b9d431af..21d468067 100644
--- a/lang/calamares_mr.ts
+++ b/lang/calamares_mr.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+ तार्किक
-
+ प्राथमिक
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+ %1 पाठबळ
diff --git a/lang/calamares_nb.ts b/lang/calamares_nb.ts
index d9d38cd26..6dfebb4ff 100644
--- a/lang/calamares_nb.ts
+++ b/lang/calamares_nb.ts
@@ -477,13 +477,13 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.St&ørrelse:
-
+
-
+ Logisk
-
+ Primær
-
+ GPT
-
+
@@ -858,7 +858,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.
-
+
@@ -1682,10 +1682,20 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+
diff --git a/lang/calamares_nl.ts b/lang/calamares_nl.ts
index c3ec57b23..090ca9d9e 100644
--- a/lang/calamares_nl.ts
+++ b/lang/calamares_nl.ts
@@ -477,13 +477,13 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
&Grootte:
-
+ &Versleutelen
-
+ Logisch
-
+ Primair
-
+ GPT
-
+ Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.
@@ -858,7 +858,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
Vlaggen:
-
+ Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.
@@ -1682,10 +1682,20 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
Installeer boot&loader op:
-
+ Weet u zeker dat u een nieuwe partitie tabel wil maken op %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ %1 ondersteuning
diff --git a/lang/calamares_pl.ts b/lang/calamares_pl.ts
index df078f2ef..a0473e590 100644
--- a/lang/calamares_pl.ts
+++ b/lang/calamares_pl.ts
@@ -477,14 +477,14 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.
CommandList
-
+ Nie można wykonać polecenia.
-
-
- Nie określono rootMountPoint, więc polecenie nie może zostać wykonane w docelowym środowisku.
+
+
+ Polecenie uruchomione jest w środowisku hosta i musi znać ścieżkę katalogu głównego, jednakże nie został określony punkt montowania katalogu głównego (root).
@@ -548,27 +548,27 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Ro&zmiar:
-
+ Zaszy%fruj
-
+ Logiczna
-
+ Podstawowa
-
+ GPT
-
+ Punkt montowania jest już używany. Proszę wybrać inny.
@@ -858,7 +858,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Flagi:
-
+ Punkt montowania jest już używany. Proszę wybrać inny.
@@ -1465,7 +1465,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.
- Krytyczne niepowodzenie
+ Błąd krytyczny
@@ -1682,10 +1682,20 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Zainsta&luj program rozruchowy na:
-
+ Czy na pewno chcesz utworzyć nową tablicę partycji na %1?
+
+
+
+ Nie można utworzyć nowej partycji
+
+
+
+
+ Tablica partycji na %1 ma już %2 podstawowych partycji i więcej nie może już być dodanych. Prosimy o usunięcie jednej partycji systemowej i dodanie zamiast niej partycji rozszerzonej.
+ PartitionViewStep
@@ -1814,7 +1824,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.
-
+ Wybierz wygląd i styl pulpitu Plazmy KDE. Możesz również pominąć ten krok i skonfigurować wygląd po zainstalowaniu systemu. Kliknięcie przycisku wyboru wyglądu i stylu daje podgląd na żywo tego wyglądu i stylu.
@@ -2387,28 +2397,28 @@ Wyjście:
-
+ Maszynowa informacja zwrotna
-
+ Konfiguracja machine feedback
-
+ Błąd w konfiguracji maszynowej informacji zwrotnej.
-
+ Nie można poprawnie skonfigurować maszynowej informacji zwrotnej, błąd skryptu %1.
-
+ Nie można poprawnie skonfigurować maszynowej informacji zwrotnej, błąd Calamares %1.
@@ -2571,7 +2581,7 @@ Wyjście:
<h1>%1</h1><br/><strong>%2<br/>dla %3</strong><br/><br/>Prawa autorskie 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Prawa autorskie 2017 Adriaan de Groot <groot@kde.org><br/>Podziękowania dla: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">zespołu tłumaczy Calamares</a>.<br/><br/><a href="https://calamares.io/">Projekt Calamares</a> jest sponsorowany przez <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ Wsparcie %1
diff --git a/lang/calamares_pt_BR.ts b/lang/calamares_pt_BR.ts
index c73d4d958..daaf821c8 100644
--- a/lang/calamares_pt_BR.ts
+++ b/lang/calamares_pt_BR.ts
@@ -479,14 +479,14 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.
CommandList
-
+ Não foi possível executar o comando.
-
-
- O comando não pode ser executado no ambiente de destino porque o rootMontPoint não foi definido.
+
+
+ O comando é executado no ambiente do hospedeiro e precisa saber o caminho root, mas nenhum rootMountPoint foi definido.
@@ -550,27 +550,27 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.&Tamanho:
-
+ &Criptografar
-
+ Lógica
-
+ Primária
-
+ GPT
-
+ Ponto de montagem já em uso. Por favor, selecione outro.
@@ -860,7 +860,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Marcadores:
-
+ Ponto de montagem já em uso. Por favor, selecione outro.
@@ -1684,10 +1684,20 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.Insta&lar o gerenciador de inicialização em:
-
+ Você tem certeza de que deseja criar uma nova tabela de partições em %1?
+
+
+
+ Não foi possível criar uma nova partição
+
+
+
+
+ A tabela de partições %1 já tem %2 partições primárias, e nenhuma a mais pode ser adicionada. Por favor, remova uma partição primária e adicione uma partição estendida no lugar.
+ PartitionViewStep
@@ -2573,7 +2583,7 @@ Saída:
<h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e às <a href="https://www.transifex.com/calamares/calamares/">equipes de tradução do Calamares</a>.<br/><br/>O desenvolvimento do <a href="https://calamares.io/">Calamares</a> tem apoio de <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 suporte
diff --git a/lang/calamares_pt_PT.ts b/lang/calamares_pt_PT.ts
index f43c1e8db..270bc6b25 100644
--- a/lang/calamares_pt_PT.ts
+++ b/lang/calamares_pt_PT.ts
@@ -477,14 +477,14 @@ O instalador será encerrado e todas as alterações serão perdidas.
CommandList
-
+ Não foi possível correr o comando.
-
-
- Não está definido o Ponto de Montagem root, portanto o comando não pode ser corrido no ambiente alvo.
+
+
+ O comando corre no ambiente do host e precisa de conhecer o caminho root, mas nenhum Ponto de Montagem root está definido.
@@ -548,27 +548,27 @@ O instalador será encerrado e todas as alterações serão perdidas.Ta&manho:
-
+ En&criptar
-
+ Lógica
-
+ Primária
-
+ GPT
-
+ Ponto de montagem já em uso. Por favor selecione outro.
@@ -858,7 +858,7 @@ O instalador será encerrado e todas as alterações serão perdidas.Flags:
-
+ Ponto de montagem já em uso. Por favor selecione outro.
@@ -1682,10 +1682,20 @@ O instalador será encerrado e todas as alterações serão perdidas.Instalar &carregador de arranque em:
-
+ Tem certeza de que deseja criar uma nova tabela de partições em %1?
+
+
+
+ Não é possível criar nova partição
+
+
+
+
+ A tabela de partições em %1 já 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.
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Saída de Dados:
<h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Direitos de cópia 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Direitos de cópia 2017 Adriaan de Groot <groot@kde.org><br/>Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e à <a href="https://www.transifex.com/calamares/calamares/">equipa de tradutores do Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> desenvolvimento patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 suporte
diff --git a/lang/calamares_ro.ts b/lang/calamares_ro.ts
index 8087ad98e..f23907288 100644
--- a/lang/calamares_ro.ts
+++ b/lang/calamares_ro.ts
@@ -477,14 +477,14 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.
CommandList
-
+ Nu s-a putut executa comanda.
-
-
- Nu este definit niciun rootMountPoint, așadar comanda nu a putut fi executată în mediul dorit.
+
+
+
@@ -548,27 +548,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Mă&rime:
-
+ &Criptează
-
+ Logică
-
+ Primară
-
+ GPT
-
+ Punct de montare existent. Vă rugăm alegeţi altul.
@@ -858,7 +858,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Flags:
-
+ Punct de montare existent. Vă rugăm alegeţi altul.
@@ -1685,10 +1685,20 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Instalează boot&loaderul pe:
-
+ Sigur doriți să creați o nouă tabelă de partiție pe %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2574,7 +2584,7 @@ Output
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>Mulțumiri: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg și <a href="https://www.transifex.com/calamares/calamares/">echipei de traducători Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a>, dezvoltare sponsorizată de <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ %1 suport
diff --git a/lang/calamares_ru.ts b/lang/calamares_ru.ts
index 0d53c9b89..d84de4f44 100644
--- a/lang/calamares_ru.ts
+++ b/lang/calamares_ru.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+ Не удалось выполнить команду.
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
Ра&змер:
-
+ Ши&фровать
-
+ Логический
-
+ Основной
-
+ GPT
-
+ Точка монтирования уже занята. Пожалуйста, выберете другую.
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
Флаги:
-
+ Точка монтирования уже занята. Пожалуйста, выберете другую.
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
Установить &загрузчик в:
-
+ Вы уверены, что хотите создать новую таблицу разделов на %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+ %1 поддержка
diff --git a/lang/calamares_sk.ts b/lang/calamares_sk.ts
index ee385a447..1d0f153cd 100644
--- a/lang/calamares_sk.ts
+++ b/lang/calamares_sk.ts
@@ -477,14 +477,14 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.
CommandList
-
+ Nepodarilo sa spustiť príkaz.
-
-
- Nie je definovaný parameter rootMountPoint, takže príkaz nemôže byť spustený v cieľovom prostredí.
+
+
+
@@ -548,27 +548,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.
Veľ&kosť:
-
+ Zaši&frovať
-
+ Logický
-
+ Primárny
-
+ GPT
-
+ Bod pripojenia sa už používa. Prosím, vyberte iný.
@@ -858,7 +858,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.
Značky:
-
+ Bod pripojenia sa už používa. Prosím, vyberte iný.
@@ -1682,10 +1682,20 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.
Nainštalovať &zavádzač na:
-
+ Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Výstup:
<h1>%1</h1><br/><strong>%2<br/>pre distribúciu %3</strong><br/><br/>Autorské práva 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Autorské práva 2017 Adriaan de Groot <groot@kde.org><br/>Poďakovanie: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a <a href="https://www.transifex.com/calamares/calamares/">tím prekladateľov inštalátora Calamares</a>.<br/><br/>Vývoj inštalátora <a href="https://calamares.io/">Calamares</a> je podporovaný spoločnosťou <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ Podpora distribúcie %1
diff --git a/lang/calamares_sl.ts b/lang/calamares_sl.ts
index 47eae63c9..1bee31eae 100644
--- a/lang/calamares_sl.ts
+++ b/lang/calamares_sl.ts
@@ -477,13 +477,13 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.
Ve&likost
-
+
-
+ Logičen
-
+ Primaren
-
+ GPT
-
+
@@ -858,7 +858,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.
Zastavice:
-
+
@@ -1682,10 +1682,20 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.
-
+ Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+
diff --git a/lang/calamares_sq.ts b/lang/calamares_sq.ts
index 78e9aa546..7b118abb0 100644
--- a/lang/calamares_sq.ts
+++ b/lang/calamares_sq.ts
@@ -9,12 +9,12 @@
- Ky sistem qe nisur me një mjedis nisjesh <strong>EFI</strong>.<br><br>Që të formësojë nisjen nga një mjedis EFI, ky instalues duhet të vërë në punë një aplikacion ngarkuesi nisësi, të tillë si <strong>GRUB</strong> ose <strong>systemd-boot</strong> në një <strong>Ndare EFI Sistemi</strong>. Kjo bëhet vetvetiu, hiq rastin kur zgjidhni pjesëzim dorazi, rast në të cilin duhet ta zgjidhni apo krijoni ju vetë.
+ Ky sistem qe nisur me një mjedis nisjesh <strong>EFI</strong>.<br><br>Që të formësojë nisjen nga një mjedis EFI, ky instalues duhet të vërë në punë një aplikacion ngarkuesi nisësi, të tillë si <strong>GRUB</strong> ose <strong>systemd-boot</strong> në një <strong>Pjesë EFI Sistemi</strong>. Kjo bëhet vetvetiu, hiq rastin kur zgjidhni pjesëzim dorazi, rast në të cilin duhet ta zgjidhni apo krijoni ju vetë.
- Ky sistem qe nisur me një mjedis nisjesh <strong>BIOS</strong>.<br><br>Që të formësojë nisjen nga një mjedis BIOS, ky instalues duhet të instalojë një ngarkues nisjesh, të tillë si <strong>GRUB</strong>, ose në krye të n jë ndarjeje, ose te <strong>Master Boot Record</strong> pranë fillimit të tabelës së ndarjeve (e parapëlqyer). Kjo bëhet vetvetiu, veç në zgjedhshi ndarje dorazi, rast në të cilin duhet ta rregulloni ju vetë.
+ Ky sistem qe nisur me një mjedis nisjesh <strong>BIOS</strong>.<br><br>Që të formësojë nisjen nga një mjedis BIOS, ky instalues duhet të instalojë një ngarkues nisjesh, të tillë si <strong>GRUB</strong>, ose në krye të një pjese, ose te <strong>Master Boot Record</strong> pranë fillimit të tabelës së pjesëve (e parapëlqyer). Kjo bëhet vetvetiu, veç në zgjedhshi pjesëzim dorazi, rast në të cilin duhet ta rregulloni ju vetë.
@@ -27,12 +27,12 @@
- Ndarje Nisjesh
+ Pjesë Nisjesh
- Ndarje Sistemi
+ Pjesë Sistemi
@@ -264,7 +264,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Gabim kodi Python të papërtypshëm dot
+ Gabim kod Python i papërtypshëm dot
@@ -310,7 +310,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Për përfundime më të mirë, ju lutemi, garantoni që ky kompjuter:
+ Për përfundime më të mira, ju lutemi, garantoni që ky kompjuter:
@@ -333,7 +333,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- <strong>Ndarje dorazi</strong><br/>Ndarjet mund t’i krijoni dhe ripërmasoni ju vetë.
+ <strong>Pjesëzim dorazi</strong><br/>Pjesët mund t’i krijoni dhe ripërmasoni ju vetë.
@@ -343,7 +343,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- %1 do të zvogëlohet në %2MB dhe për %4 do të krijohet një ndarje e re %3MB.
+ %1 do të zvogëlohet në %2MB dhe për %4 do të krijohet një pjesë e re %3MB.
@@ -361,37 +361,37 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ripërdore %1 si ndarjen shtëpi për %2.
+ Ripërdore %1 si pjesën shtëpi për %2.
- <strong>Përzgjidhni një ndarje që të zvogëlohet, mandej tërhiqni shtyllën e poshtme që ta ripërmasoni</strong>
+ <strong>Përzgjidhni një pjesë që të zvogëlohet, mandej tërhiqni shtyllën e poshtme që ta ripërmasoni</strong>
- <strong>Përzgjidhni një ndarje ku të instalohet</strong>
+ <strong>Përzgjidhni një pjesë ku të instalohet</strong>
- Në këtë sistem s’mund të gjendet gjëkundi një ndarje EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi që të rregulloni %1.
+ Në këtë sistem s’gjendet gjëkundi një pjesë EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi që të rregulloni %1.
- Për nisjen e %2 do të përdoret ndarja EFI e sistemit te %1.
+ Për nisjen e %2 do të përdoret pjesa EFI e sistemit te %1.
- Ndarje Sistemi EFI:
+ Pjesë Sistemi EFI:
- Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënito?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi.
+ Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi.
@@ -412,7 +412,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- <strong>Instaloje në krah të tij</strong><br/>Instaluesi do të zvogëlojë një ndarje për të bërë vend për %1.
+ <strong>Instaloje në krah të tij</strong><br/>Instaluesi do të zvogëlojë një pjesë për të bërë vend për %1.
@@ -420,7 +420,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- <strong>Zëvendëso një ndarje</strong><br/>Zëvendëson një ndarje me %1.
+ <strong>Zëvendëso një pjesë</strong><br/>Zëvendëson një pjesë me %1.
@@ -461,7 +461,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Po hiqenn krejt montimet e përkohshme.
+ Po hiqen krejt montimet e përkohshme.
@@ -477,14 +477,14 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
CommandList
-
+ S’u xhirua dot urdhri.
-
-
- S’ka të caktuar rootMountPoint, ndaj urdhri s’mund të xhirohet në mjedisin e synuar.
+
+
+ Urdhri xhirohet në mjedisin strehë dhe është e nevojshme të dijë shtegun për rrënjën, por nuk ka rootMountPoint të përcaktuar.
@@ -500,7 +500,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Krijoni një Ndarje
+ Krijoni një Pjesë
@@ -510,7 +510,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- &Lloj Ndarjeje:
+ &Lloj Pjese:
@@ -548,27 +548,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
&Madhësi:
-
+ &Fshehtëzoje
-
+
- Logjik
+ Logjike
-
+
- Parësor
+ Parësore
-
+ GPT
-
+ Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.
@@ -578,22 +578,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Krijo ndarje të re %2MB te %4 (%3) me sistem kartelash %1.
+ Krijo pjesë të re %2MB te %4 (%3) me sistem kartelash %1.
- Krijo ndarje të re <strong>%2MB</strong> te <strong>%4</strong> (%3) me sistem kartelash <strong>%1</strong>.
+ Krijo pjesë të re <strong>%2MB</strong> te <strong>%4</strong> (%3) me sistem kartelash <strong>%1</strong>.
- Po krijohet ndarje e re %1 te %2.
+ Po krijohet pjesë e re %1 te %2.
- Instaluesi s’arriti të krijojë ndarje në diskun '%1'.
+ Instaluesi s’arriti të krijojë pjesë në diskun '%1'.
@@ -601,17 +601,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Krijo Tabelë Ndarjesh
+ Krijo Tabelë Pjesësh
- Krijimi i një tabele të re ndarjesh do të fshijë krejt të dhënat ekzistuese në disk.
+ Krijimi i një tabele të re pjesësh do të fshijë krejt të dhënat ekzistuese në disk.
- Ç’lloj tabele ndarjesh doni të krijoni?
+ Ç’lloj tabele pjesësh doni të krijoni?
@@ -621,7 +621,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Tabelë Ndarjesh GUID (GPT)
+ Tabelë Pjesësh GUID (GPT)
@@ -629,22 +629,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Krijo tabelë të re ndarjesh %1 te %2.
+ Krijo tabelë të re pjesësh %1 te %2.
- Krijoni tabelë ndarjeje të re <strong>%1</strong> te <strong>%2</strong> (%3).
+ Krijoni tabelë pjesësh të re <strong>%1</strong> te <strong>%2</strong> (%3).
- Po krijohet tabelë e re ndarjesh %1 te %2.
+ Po krijohet tabelë e re pjesësh %1 te %2.
- Instaluesi s’arriti të krijojë tabelë ndarjesh në diskun %1.
+ Instaluesi s’arriti të krijojë tabelë pjesësh në diskun %1.
@@ -720,22 +720,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Fshije ndarjen %1.
+ Fshije pjesën %1.
- Fshije ndarjen <strong>%1</strong>.
+ Fshije pjesën <strong>%1</strong>.
- Po fshihet ndarja %1.
+ Po fshihet pjesa %1.
- Instaluesi dështoi në fshirjen e ndarjes %1.
+ Instaluesi dështoi në fshirjen e pjesës %1.
@@ -743,32 +743,32 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Lloji i <strong>tabelës së ndarjeve</strong> në pajisjen e përzgjedhur të depozitimeve.<br><br>Mënyra e vetme për ndryshim të tabelës së ndarjeve është të fshihet dhe rikrijohet nga e para tabela e ndarjeve, çka shkatërron krejt të dhënat në pajisjen e depozitimit.<br>Ky instalues do të ruajë tabelën e tanishme të ndarjeve, veç në zgjedhshi shprehimisht ndryshe.<br>Nëse s’jeni i sigurt, në sisteme moderne parapëlqehet GPT.
+ Lloji i <strong>tabelës së pjesëve</strong> në pajisjen e përzgjedhur të depozitimeve.<br><br>Mënyra e vetme për ndryshim të tabelës së pjesëve është të fshihet dhe rikrijohet nga e para tabela e pjesëve, çka shkatërron krejt të dhënat në pajisjen e depozitimit.<br>Ky instalues do të ruajë tabelën e tanishme të pjesëve, veç në zgjedhshi shprehimisht ndryshe.<br>Nëse s’jeni i sigurt, në sisteme moderne parapëlqehet GPT.
- Kjo pajisje ka një tabelë ndarjesh <strong>%1</strong>.
+ Kjo pajisje ka një tabelë pjesësh <strong>%1</strong>.
- Kjo është një pajisje <strong>loop</strong>.<br><br>Është një pseudo-pajisje pa tabelë ndarjesh, që e bën një kartelë të përdorshme si një pajisje blloqesh. Kjo lloj skeme zakonisht përmban një sistem të vetëm kartelash.
+ Kjo është një pajisje <strong>loop</strong>.<br><br>Është një pseudo-pajisje pa tabelë pjesësh, që e bën një kartelë të përdorshme si një pajisje blloqesh. Kjo lloj skeme zakonisht përmban një sistem të vetëm kartelash.
- Ky instalues <strong>s’pikas dot tabelë ndarjesh</strong> te pajisja e depozitimit e përzgjedhur.<br><br>Ose pajisja s’ka tabelë ndarjesh, ose tabela e ndarjeve është e dëmtuar ose e një lloji të panjohur.<br>Ky instalues mund të krijojë për ju një tabelë të re ndarjesh, ose vetvetiu, ose përmes faqes së pjesëzimit dorazi.
+ Ky instalues <strong>s’pikas dot tabelë pjesësh</strong> te pajisja e depozitimit e përzgjedhur.<br><br>Ose pajisja s’ka tabelë pjesësh, ose tabela e pjesëve është e dëmtuar ose e një lloji të panjohur.<br>Ky instalues mund të krijojë për ju një tabelë të re pjesësh, ose vetvetiu, ose përmes faqes së pjesëzimit dorazi.
- <br><br>Ky është lloji i parapëlqyer tabele ndarjesh për sisteme modernë që nisen nga një mjedis nisjesh <strong>EFI</strong>.
+ <br><br>Ky është lloji i parapëlqyer tabele pjesësh për sisteme modernë që nisen nga një mjedis nisjesh <strong>EFI</strong>.
- <br><br>Ky lloj tabele ndarjesh është i këshillueshëm vetëm në sisteme të vjetër të cilët nisen nga një mjedis nisjesh <strong>BIOS</strong>. Në shumicën e rasteve të tjera këshillohet GPT.<br><br><strong>Kujdes:</strong> Tabela e ndarjeve MBR është një standard i vjetruar, i erës MS-DOS.<br>Mund të krijohen vetëm 4 ndarje <em>parësore</em>, dhe nga këto 4, një mund të jetë ndarje <em>extended</em>, e cila nga ana e vet mund të përmbajë mjaft ndarje <em>logjike</em>.
+ <br><br>Ky lloj tabele pjesësh është i këshillueshëm vetëm në sisteme të vjetër të cilët nisen nga një mjedis nisjesh <strong>BIOS</strong>. Në shumicën e rasteve të tjera këshillohet GPT.<br><br><strong>Kujdes:</strong> Tabela e pjesëve MBR është një standard i vjetruar, i erës MS-DOS.<br>Mund të krijohen vetëm 4 pjesë <em>parësore</em>, dhe nga këto 4, një mund të jetë pjesë <em>extended</em>, e cila nga ana e vet mund të përmbajë mjaft pjesë <em>logjike</em>.
@@ -789,12 +789,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Anashkalo shkrim formësiim LUKS për Dracut: ndarja \"/\" s’është e fshehtëzuar
+ Anashkalo shkrim formësimi LUKS për Dracut: pjesa \"/\" s’është e fshehtëzuar
- S’arriti të hapë %1
+ S’u arrit të hapet %1
@@ -810,7 +810,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Përpuno Ndarje Ekzistuese
+ Përpuno Pjesën Ekzistuese
@@ -830,7 +830,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Kujdes: Formatimi i ndarjes do të fshijë krejt të dhënat ekzistuese.
+ Kujdes: Formatimi i pjesës do të fshijë krejt të dhënat ekzistuese.
@@ -858,7 +858,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
Flamurka:
-
+ Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.
@@ -896,27 +896,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Caktoni të dhëna ndarjeje
+ Caktoni të dhëna pjese
- Instaloje %1 në ndarje sistemi <strong>të re</strong> %2.
+ Instaloje %1 në pjesë sistemi <strong>të re</strong> %2.
- Rregullo ndarje të <strong>re</strong> %2 me pikë montimi <strong>%1</strong>.
+ Rregullo pjesë të <strong>re</strong> %2 me pikë montimi <strong>%1</strong>.
- Instaloje %2 te ndarja e sistemit %3 <strong>%1</strong>.
+ Instaloje %2 te pjesa e sistemit %3 <strong>%1</strong>.
- Rregullo ndarje %3 <strong>%1</strong> me pikë montimi <strong>%2</strong>.
+ Rregullo pjesë %3 <strong>%1</strong> me pikë montimi <strong>%2</strong>.
@@ -980,22 +980,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Formatoje ndarjen %1 (sistem kartelash: %2, madhësi: %3 MB) në %4.
+ Formatoje pjesën %1 (sistem kartelash: %2, madhësi: %3 MB) në %4.
- Formato ndarje <strong>%3MB</strong> <strong>%1</strong> me sistem kartelash <strong>%2</strong>.
+ Formato pjesë <strong>%3MB</strong> <strong>%1</strong> me sistem kartelash <strong>%2</strong>.
- Po formatohet ndarja %1 me sistem kartelash %2.
+ Po formatohet pjesa %1 me sistem kartelash %2.
- Instaluesi s’arriti të formatojë ndarjen %1 në diskun '%2'.
+ Instaluesi s’arriti të formatojë pjesën %1 në diskun '%2'.
@@ -1088,7 +1088,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtohemi me kushtet, procedura e rregullimit s’mund të shkojë më tej.
+ Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtoheni me kushtet, procedura e rregullimit s’mund të shkojë më tej.
@@ -1098,7 +1098,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtohemi me kushtet, nuk do të instalohet software pronësor, dhe në vend të tij do të përdoren alternativa nga burimi i hapët.
+ Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtoheni me kushtet, nuk do të instalohet software pronësor, dhe në vend të tij do të përdoren alternativa nga burimi i hapët.
@@ -1355,7 +1355,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Fjalëkalimi nuk përmban klasa të mjaftueshme shenjash
+ Fjalëkalimi s’përmban klasa të mjaftueshme shenjash
@@ -1405,12 +1405,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Fjalëkalimi s’kaloi dot kontrollin kundrejt fjalorit - %1
+ Fjalëkalimi s’kalon dot kontrollin kundrejt fjalorit - %1
- Fjalëkalimi s’kaloi dot kontrollin kundrejt fjalorit
+ Fjalëkalimi s’kalon dot kontrollin kundrejt fjalorit
@@ -1591,12 +1591,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ndarje e re për %1
+ Pjesë e re për %1
- Ndarje e re
+ Pjesë e re
@@ -1616,7 +1616,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ndarje e re
+ Pjesë e re
@@ -1659,7 +1659,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- &Tabelë e Re Ndarjesh
+ &Tabelë e Re Pjesësh
@@ -1682,9 +1682,19 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
Instalo &ngarkues nisjesh në:
-
+
- Jeni i sigurt se doni të krijoni një tabelë të re ndarjesh në %1?
+ Jeni i sigurt se doni të krijoni një tabelë të re pjesësh në %1?
+
+
+
+
+ S’krijohet dot pjesë e re
+
+
+
+
+ Tabela e pjesëzimit te %1 ka tashmë %2 pjesë parësore, dhe s’mund të shtohen të tjera. Ju lutemi, në vend të kësaj, hiqni një pjesë parësore dhe shtoni një pjesë të zgjeruar.
@@ -1697,7 +1707,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ndarje
+ Pjesë
@@ -1712,7 +1722,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- <strong>Zëvendësojeni</strong> një ndarje me %1.
+ <strong>Zëvendësojeni</strong> një pjesë me %1.
@@ -1732,7 +1742,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- <strong>Zëvendëso</strong> një ndarje te disku <strong>%2</strong> (%3) me %1.
+ <strong>Zëvendëso</strong> një pjesë te disku <strong>%2</strong> (%3) me %1.
@@ -1757,32 +1767,32 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- S’ka të formësuar ndarje sistemi EFI
+ S’ka të formësuar pjesë sistemi EFI
- Që të niset %1, është e domosdoshme një ndarje sistemi EFI.<br/><br/>Që të formësoni një ndarje sistemi EFI, kthehuni mbrapsht dhe përzgjidhni ose krijoni një sistem kartelash FAT32 me flamurkën <strong>esp</strong> të aktivizuar dhe me pikë montimi <strong>%2</strong>.<br/><br/>Mund të vazhdoni pa rregulluar një ndarje sistemi EFI, por mundet që sistemi të mos arrijë dot të niset.
+ Që të niset %1, është e domosdoshme një pjesë sistemi EFI.<br/><br/>Që të formësoni një pjesë sistemi EFI, kthehuni mbrapsht dhe përzgjidhni ose krijoni një sistem kartelash FAT32 me flamurkën <strong>esp</strong> të aktivizuar dhe me pikë montimi <strong>%2</strong>.<br/><br/>Mund të vazhdoni pa rregulluar një pjesë sistemi EFI, por mundet që sistemi të mos arrijë dot të niset.
- S’është vënë flamurkë EFI ndarjeje sistemi
+ S’është vënë flamurkë EFI pjese sistemi
- Që të niset %1, është e domosdoshme një ndarje sistemi EFI.<br/><br/>Është formësuar një ndarje me pikë montimi <strong>%2</strong>, por pa i vënë flamurkën <strong>esp</strong>.<br/>Që t’ia vini, kthehuni mbrapsht dhe përpunoni ndarjen.<br/><br/>Mund të vazhdoni pa i vënë flamurkën, por mundet që sistemi të mos arrijë dot të niset.
+ Që të niset %1, është e domosdoshme një pjesë sistemi EFI.<br/><br/>Është formësuar një pjesë me pikë montimi <strong>%2</strong>, por pa i vënë flamurkën <strong>esp</strong>.<br/>Që t’ia vini, kthehuni mbrapsht dhe përpunoni pjesë.<br/><br/>Mund të vazhdoni pa i vënë flamurkën, por mundet që sistemi të mos arrijë dot të niset.
- Ndarje nisjesh e pafshehtëzuar
+ Pjesë nisjesh e pafshehtëzuar
- Tok me ndarjen e fshehtëzuar <em>root</em> qe rregulluar edhe një ndarje <em>boot</em> veçmas, por ndarja <em>boot</em> s’është e fshehtëzuar.<br/><br/>Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një ndarje të pafshehtëzuar.<br/>Mund të vazhdoni nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.<br/>Që të fshehtëzoni ndarjen <em>boot</em>, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të ndarjes <strong>Fshehtëzoje</strong>.
+ Tok me pjesën e fshehtëzuar <em>root</em> qe rregulluar edhe një pjesë <em>boot</em> veçmas, por pjesa <em>boot</em> s’është e fshehtëzuar.<br/><br/>Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një pjesë të pafshehtëzuar.<br/>Mund të vazhdoni nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.<br/>Që të fshehtëzoni pjesën <em>boot</em>, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të pjesës <strong>Fshehtëzoje</strong>.
@@ -1814,7 +1824,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.
- Ju lutemi, zgjidhni një look-and-feel për KDE Plasma Desktop. Mundeni edhe ta anashkaloni këtë hap dhe ta formësoni look-and-feel-in pasi të jetë instaluar sistemi. Klikimi mbi një përzgjedhje look-and-feel do t’ju japë një paraparje të atypëratyshme të saj.
+ Ju lutemi, zgjidhni pamje dhe ndjesi për Desktopin KDE Plasma. Mundeni edhe ta anashkaloni këtë hap dhe të formësoni pamje dhe ndjesi pasi të jetë instaluar sistemi. Klikimi mbi një përzgjedhje për pamje dhe ndjesi do t’ju japë një paraparje të atypëratyshme të tyre.
@@ -1876,12 +1886,12 @@ Përfundim:
- Udhri i jashtëm s’arriti të përfundohej.
+ S’u arrit të përfundohej urdhër i jashtëm.
- Urdhri <i>%1</i> s’arriti të përfundohej në %2 sekonda.
+ S’u arrit të përfundohej urdhri <i>%1</i> në %2 sekonda.
@@ -1930,7 +1940,7 @@ Përfundim:
- Hapësirë e papjesëzuar ose tabelë e panjohur ndarjesh
+ Hapësirë e papjesëzuar ose tabelë e panjohur pjesësh
@@ -1943,59 +1953,59 @@ Përfundim:
- Përzgjidhni ku të instalohet %1.<br/><font color=\"red\">Kujdes: </font>kjo do të sjellë fshirjen e krejt kartelave në ndarjen e përzgjedhur.
+ Përzgjidhni ku të instalohet %1.<br/><font color=\"red\">Kujdes: </font>kjo do të sjellë fshirjen e krejt kartelave në pjesën e përzgjedhur.
- Objekti i përzgjedhur s’duket se është ndarje e vlefshme.
+ Objekti i përzgjedhur s’duket se është pjesë e vlefshme.
- %1 s’mund të instalohet në hapësirë të zbrazët. Ju lutemi, përzgjidhni një ndarje ekzistuese.
+ %1 s’mund të instalohet në hapësirë të zbrazët. Ju lutemi, përzgjidhni një pjesë ekzistuese.
- %1 s’mund të instalohet në një ndarje të llojit extended. Ju lutemi, përzgjidhni një ndarje parësore ose logjike ekzistuese.
+ %1 s’mund të instalohet në një pjesë të llojit <em>extended</em>. Ju lutemi, përzgjidhni një pjesë parësore ose logjike ekzistuese.
- %1 s’mund të instalohet në këtë ndarje.
+ %1 s’mund të instalohet në këtë pjesë.
- Ndarje të dhënash (%1)
+ Pjesë të dhënash (%1)
- Ndarje sistemi e panjohur (%1)
+ Pjesë sistemi e panjohur (%1)
- Ndarje sistemi %1 (%2)
+ Pjesë sistemi %1 (%2)
- <strong>%4</strong><br/><br/>Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një ndarje me kapacitet të paktën %3 GiB.
+ <strong>%4</strong><br/><br/>Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një pjesë me kapacitet të paktën %3 GiB.
- <strong>%2</strong><br/><br/>Në këtë sistem s’gjendet dot ndonjë ndarje sistemi EFI. Ju lutemi, që të rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi.
+ <strong>%2</strong><br/><br/>Në këtë sistem s’gjendet dot ndonjë pjesë sistemi EFI. Ju lutemi, që të rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi.
- <strong>%3</strong><br/><br/>%1 do të instalohet në %2.<br/><font color=\"red\">Kujdes: </font>krejt të dhënat në ndarjen %2 do të humbin.
+ <strong>%3</strong><br/><br/>%1 do të instalohet në %2.<br/><font color=\"red\">Kujdes: </font>krejt të dhënat në pjesën %2 do të humbin.
@@ -2005,7 +2015,7 @@ Përfundim:
- Ndarje Sistemi EFI:
+ Pjesë Sistemi EFI:
@@ -2038,12 +2048,12 @@ Përfundim:
- është në prizë
+ është lidhur te një burim energjie
- Sistemi s'është i lidhur me ndonjë burim rryme.
+ Sistemi s'është i lidhur me ndonjë burim energjie.
@@ -2071,12 +2081,12 @@ Përfundim:
- Ripërmaso ndarjen %1.
+ Ripërmaso pjesën %1.
- Ripërmasoje ndarjen <strong>%2MB</strong> <strong>%1</strong> në <strong>%3MB</strong>.
+ Ripërmasoje pjesën <strong>%2MB</strong> <strong>%1</strong> në <strong>%3MB</strong>.
@@ -2086,7 +2096,7 @@ Përfundim:
- Instaluesi s’arriti të ripërmasojë ndarjen %1 në diskun '%2'.
+ Instaluesi s’arriti të ripërmasojë pjesën %1 në diskun '%2'.
@@ -2149,7 +2159,7 @@ Përfundim:
- Dështoi në shkrimin te %1
+ S’u arrit të shkruhej te %1
@@ -2167,17 +2177,17 @@ Përfundim:
- Caktoni flamurka në ndarjen %1.
+ Caktoni flamurka në pjesën %1.
- Caktoni flamurka në ndarjen %1MB %2.`
+ Caktoni flamurka në pjesën %1MB %2.`
- Caktoni flamurka në ndarje të re.
+ Caktoni flamurka në pjesë të re.
@@ -2197,52 +2207,52 @@ Përfundim:
- I vini shenjë ndarjes <strong>%1</strong> si <strong>%2</strong>.
+ I vini shenjë pjesës <strong>%1</strong> si <strong>%2</strong>.
- I vini shenjë ndarjes %1MB <strong>%2</strong> si <strong>%3</strong>.
+ I vini shenjë pjesës %1MB <strong>%2</strong> si <strong>%3</strong>.
- I vini shenjë ndarjes së re si <strong>%1</strong>.
+ I vini shenjë pjesës së re si <strong>%1</strong>.
- Po hiqen shenjat në ndarjen <strong>%1</strong>.
+ Po hiqen shenjat në pjesën <strong>%1</strong>.
- Po hiqen shenjat në ndarjen %1MB <strong>%2</strong>.
+ Po hiqen shenjat në pjesën %1MB <strong>%2</strong>.
- Po hiqen shenjat në ndarjen e re.
+ Po hiqen shenjat në pjesën e re.
- Po vihen flamurkat <strong>%2</strong> në ndarjen <strong>%1</strong>.
+ Po vihen flamurkat <strong>%2</strong> në pjesën <strong>%1</strong>.
- Po vihen flamurkat <strong>%3</strong> në ndarjen %1MB <strong>%2</strong>.
+ Po vihen flamurkat <strong>%3</strong> në pjesën %1MB <strong>%2</strong>.
- Po vihen flamurkat <strong>%1</strong> në ndarjen e re.
+ Po vihen flamurkat <strong>%1</strong> në pjesën e re.
- Instaluesi s’arriti të vërë flamurka në ndarjen %1.
+ Instaluesi s’arriti të vërë flamurka në pjesën %1.
@@ -2455,7 +2465,7 @@ Përfundim:
- Duke përzgjedhur këtë, di të dërgoni të dhëna mbi instalimin dhe hardware-in tuaj. Këto të dhëna do të <b>dërgohen vetëm një herë</b>, pasi të përfundojë instalimi.
+ Duke përzgjedhur këtë, do të dërgoni të dhëna mbi instalimin dhe hardware-in tuaj. Këto të dhëna do të <b>dërgohen vetëm një herë</b>, pasi të përfundojë instalimi.
@@ -2571,7 +2581,7 @@ Përfundim:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Të drejta Kopjimi 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Të drejta Kopjimi 2017 Adriaan de Groot <groot@kde.org><br/>Falënderime për: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dhe <a href="https://www.transifex.com/calamares/calamares/">ekipin e përkthyesve të Calamares-it</a>.<br/><br/>Zhvillimi i <a href="https://calamares.io/">Calamares</a> sponsorizohet nga <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.
-
+ Asistencë %1
diff --git a/lang/calamares_sr.ts b/lang/calamares_sr.ts
index 6db62432d..31b13303b 100644
--- a/lang/calamares_sr.ts
+++ b/lang/calamares_sr.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
Вели&чина
-
+
-
+ Логичка
-
+ Примарна
-
+ GPT
-
+
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ %1 подршка
diff --git a/lang/calamares_sr@latin.ts b/lang/calamares_sr@latin.ts
index 00598c6d8..564a10b08 100644
--- a/lang/calamares_sr@latin.ts
+++ b/lang/calamares_sr@latin.ts
@@ -477,13 +477,13 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.
Veli&čina
-
+
-
+ Logička
-
+ Primarna
-
+ GPT
-
+
@@ -858,7 +858,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.
-
+
@@ -1682,10 +1682,20 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+
diff --git a/lang/calamares_sv.ts b/lang/calamares_sv.ts
index 34d46b72a..5ee786adc 100644
--- a/lang/calamares_sv.ts
+++ b/lang/calamares_sv.ts
@@ -477,13 +477,13 @@ Alla ändringar kommer att gå förlorade.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ Alla ändringar kommer att gå förlorade.
Storlek:
-
+ Kr%yptera
-
+ Logisk
-
+ Primär
-
+ GPT
-
+ Monteringspunkt används redan. Välj en annan.
@@ -858,7 +858,7 @@ Alla ändringar kommer att gå förlorade.
Flaggor:
-
+ Monteringspunkt används redan. Välj en annan.
@@ -1682,10 +1682,20 @@ Alla ändringar kommer att gå förlorade.
Installera uppstartshanterare på:
-
+ Är du säker på att du vill skapa en ny partitionstabell på %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ %1-support
diff --git a/lang/calamares_th.ts b/lang/calamares_th.ts
index 0ee1821cb..9b8a95c00 100644
--- a/lang/calamares_th.ts
+++ b/lang/calamares_th.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
&Z ขนาด:
-
+
-
+ โลจิคอล
-
+ หลัก
-
+ GPT
-
+
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
Flags:
-
+
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
-
+ คุณแน่ใจว่าจะสร้างตารางพาร์ทิชันใหม่บน %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+
diff --git a/lang/calamares_tr_TR.ts b/lang/calamares_tr_TR.ts
index 1903c9825..bf7de67a3 100644
--- a/lang/calamares_tr_TR.ts
+++ b/lang/calamares_tr_TR.ts
@@ -480,14 +480,14 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.
CommandList
-
+ Komut çalıştırılamadı.
-
-
- RootMountPoint kök bağlama noktası tanımlanmadığından, hedef ortamda komut çalıştırılamaz.
+
+
+
@@ -551,27 +551,27 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Bo&yut:
-
+ Şif&rele
-
+ Mantıksal
-
+ Birincil
-
+ GPT
-
+ Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.
@@ -861,7 +861,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Bayraklar:
-
+ Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.
@@ -1685,10 +1685,20 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Şuraya ön &yükleyici kur:
-
+ %1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2576,7 +2586,7 @@ Sistem güç kaynağına bağlı değil.
<h1>%1</h1><br/><strong>%2<br/>için %3</strong><br/><br/>Telif Hakkı 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Telif Hakkı 2017 Adriaan de Groot <groot@kde.org><br/>Teşekkürler: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ve <a href="https://www.transifex.com/calamares/calamares/">Calamares çeviri takımı için</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> gelişim sponsoru <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Özgür Yazılım.
-
+ %1 destek
diff --git a/lang/calamares_uk.ts b/lang/calamares_uk.ts
index 78af91c36..2238af0ba 100644
--- a/lang/calamares_uk.ts
+++ b/lang/calamares_uk.ts
@@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
Ро&змір:
-
+ За&шифрувати
-
+ Логічний
-
+ Основний
-
+ GPT
-
+ Точка підключення наразі використовується. Оберіть, будь ласка, іншу.
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
Прапорці:
-
+ Точка підключення наразі використовується. Оберіть, будь ласка, іншу.
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
Встановити за&вантажувач на:
-
+ Ви впевнені, що бажаєте створити нову таблицю розділів на %1?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2568,7 +2578,7 @@ Output:
-
+ Підтримка %1
diff --git a/lang/calamares_ur.ts b/lang/calamares_ur.ts
index 5e2658784..8e01b47f6 100644
--- a/lang/calamares_ur.ts
+++ b/lang/calamares_ur.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_uz.ts b/lang/calamares_uz.ts
index 1510ebcb2..e3472169a 100644
--- a/lang/calamares_uz.ts
+++ b/lang/calamares_uz.ts
@@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.
CommandList
-
+
-
-
+
+
@@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.
-
+
-
+
-
+
-
+
-
+
@@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.
-
+
@@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.
-
+
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2567,7 +2577,7 @@ Output:
-
+
diff --git a/lang/calamares_zh_CN.ts b/lang/calamares_zh_CN.ts
index b0f5f7ea1..2dd626a2c 100644
--- a/lang/calamares_zh_CN.ts
+++ b/lang/calamares_zh_CN.ts
@@ -478,14 +478,14 @@ The installer will quit and all changes will be lost.
CommandList
-
+ 无法运行命令
-
-
- 未定义任何 rootMountPoint,无法在目标环境中运行命令。
+
+
+
@@ -549,27 +549,27 @@ The installer will quit and all changes will be lost.
大小(&Z):
-
+ 加密(&C)
-
+ 逻辑分区
-
+ 主分区
-
+ GPT
-
+ 挂载点已被占用。请选择另一个。
@@ -860,7 +860,7 @@ The installer will quit and all changes will be lost.
标记:
-
+ 挂载点已被占用。请选择另一个。
@@ -1684,10 +1684,20 @@ The installer will quit and all changes will be lost.
安装引导程序于(&L):
-
+ 您是否确定要在 %1 上创建新分区表?
+
+
+
+
+
+
+
+
+
+ PartitionViewStep
@@ -2573,7 +2583,7 @@ Output:
<h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>特别感谢:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 及 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻译团队</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 的开发由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> 赞助。
-
+ %1 的支持信息
diff --git a/lang/calamares_zh_TW.ts b/lang/calamares_zh_TW.ts
index 64a32fb14..711d87d06 100644
--- a/lang/calamares_zh_TW.ts
+++ b/lang/calamares_zh_TW.ts
@@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.
CommandList
-
+ 無法執行指令。
-
-
- 未定義 rootMountPoint,所以指令無法在目標環境中執行。
+
+
+ 指令執行於主機環境中,且需要知道根路徑,但根掛載點未定義。
@@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.
容量大小 (&z) :
-
+ 加密(&C)
-
+ 邏輯磁區
-
+ 主要磁區
-
+ GPT
-
+ 掛載點使用中。請選擇其他的。
@@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.
旗標:
-
+ 掛載點使用中。請選擇其他的。
@@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.
安裝開機載入器在(&L):
-
+ 您是否確定要在 %1 上建立一個新的分割區表格?
+
+
+
+ 無法建立新分割區
+
+
+
+
+ 在 %1 上的分割表已有 %2 個主要分割區,無法再新增。請移除一個主要分割區並新增一個延伸分割區。
+ PartitionViewStep
@@ -2571,7 +2581,7 @@ Output:
<h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac <teo@kde.org><br/>Copyright 2017 Adriaan de Groot <groot@kde.org><br/>感謝:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。
-
+ %1 支援
diff --git a/lang/python.pot b/lang/python.pot
index ca832f242..afce3007f 100644
--- a/lang/python.pot
+++ b/lang/python.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/lang/python/ar/LC_MESSAGES/python.mo b/lang/python/ar/LC_MESSAGES/python.mo
index a3ac14179..8003a12c7 100644
Binary files a/lang/python/ar/LC_MESSAGES/python.mo and b/lang/python/ar/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ar/LC_MESSAGES/python.po b/lang/python/ar/LC_MESSAGES/python.po
index 5df360e64..336286ebe 100644
--- a/lang/python/ar/LC_MESSAGES/python.po
+++ b/lang/python/ar/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/ast/LC_MESSAGES/python.mo b/lang/python/ast/LC_MESSAGES/python.mo
index 5ed7847b4..673344aae 100644
Binary files a/lang/python/ast/LC_MESSAGES/python.mo and b/lang/python/ast/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ast/LC_MESSAGES/python.po b/lang/python/ast/LC_MESSAGES/python.po
index 1875c215c..a55cf974f 100644
--- a/lang/python/ast/LC_MESSAGES/python.po
+++ b/lang/python/ast/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: enolp , 2017\n"
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
diff --git a/lang/python/bg/LC_MESSAGES/python.mo b/lang/python/bg/LC_MESSAGES/python.mo
index 102a0fded..b43df8a28 100644
Binary files a/lang/python/bg/LC_MESSAGES/python.mo and b/lang/python/bg/LC_MESSAGES/python.mo differ
diff --git a/lang/python/bg/LC_MESSAGES/python.po b/lang/python/bg/LC_MESSAGES/python.po
index b7c648590..71995a29d 100644
--- a/lang/python/bg/LC_MESSAGES/python.po
+++ b/lang/python/bg/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Georgi Georgiev , 2018\n"
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
diff --git a/lang/python/ca/LC_MESSAGES/python.mo b/lang/python/ca/LC_MESSAGES/python.mo
index 7fc02383b..815e48a41 100644
Binary files a/lang/python/ca/LC_MESSAGES/python.mo and b/lang/python/ca/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ca/LC_MESSAGES/python.po b/lang/python/ca/LC_MESSAGES/python.po
index 0dba18452..10e6289ae 100644
--- a/lang/python/ca/LC_MESSAGES/python.po
+++ b/lang/python/ca/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Davidmp , 2017\n"
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.mo b/lang/python/cs_CZ/LC_MESSAGES/python.mo
index 5e972ad32..082493dca 100644
Binary files a/lang/python/cs_CZ/LC_MESSAGES/python.mo and b/lang/python/cs_CZ/LC_MESSAGES/python.mo differ
diff --git a/lang/python/cs_CZ/LC_MESSAGES/python.po b/lang/python/cs_CZ/LC_MESSAGES/python.po
index 93440926c..cc790f284 100644
--- a/lang/python/cs_CZ/LC_MESSAGES/python.po
+++ b/lang/python/cs_CZ/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Pavel Borecki , 2017\n"
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs_CZ\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -50,6 +50,7 @@ msgid_plural "Installing %(num)d packages."
msgstr[0] "Je instalován jeden balíček."
msgstr[1] "Jsou instalovány %(num)d balíčky."
msgstr[2] "Je instalováno %(num)d balíčků."
+msgstr[3] "Je instalováno %(num)d balíčků."
#: src/modules/packages/main.py:69
#, python-format
@@ -58,3 +59,4 @@ msgid_plural "Removing %(num)d packages."
msgstr[0] "Odebírá se jeden balíček."
msgstr[1] "Odebírají se %(num)d balíčky."
msgstr[2] "Odebírá se %(num)d balíčků."
+msgstr[3] "Odebírá se %(num)d balíčků."
diff --git a/lang/python/da/LC_MESSAGES/python.mo b/lang/python/da/LC_MESSAGES/python.mo
index 0560de2c5..720ee4114 100644
Binary files a/lang/python/da/LC_MESSAGES/python.mo and b/lang/python/da/LC_MESSAGES/python.mo differ
diff --git a/lang/python/da/LC_MESSAGES/python.po b/lang/python/da/LC_MESSAGES/python.po
index 7b1684b81..53d8eaec7 100644
--- a/lang/python/da/LC_MESSAGES/python.po
+++ b/lang/python/da/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dan Johansen (Strit), 2017\n"
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"
diff --git a/lang/python/de/LC_MESSAGES/python.mo b/lang/python/de/LC_MESSAGES/python.mo
index e37e01188..3b9a54b24 100644
Binary files a/lang/python/de/LC_MESSAGES/python.mo and b/lang/python/de/LC_MESSAGES/python.mo differ
diff --git a/lang/python/de/LC_MESSAGES/python.po b/lang/python/de/LC_MESSAGES/python.po
index dbb878864..4dec5011e 100644
--- a/lang/python/de/LC_MESSAGES/python.po
+++ b/lang/python/de/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dirk Hein , 2017\n"
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
diff --git a/lang/python/el/LC_MESSAGES/python.mo b/lang/python/el/LC_MESSAGES/python.mo
index a16361909..83476e569 100644
Binary files a/lang/python/el/LC_MESSAGES/python.mo and b/lang/python/el/LC_MESSAGES/python.mo differ
diff --git a/lang/python/el/LC_MESSAGES/python.po b/lang/python/el/LC_MESSAGES/python.po
index 3bf60a4b0..fb56b02de 100644
--- a/lang/python/el/LC_MESSAGES/python.po
+++ b/lang/python/el/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Efstathios Iosifidis , 2017\n"
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"
diff --git a/lang/python/en_GB/LC_MESSAGES/python.mo b/lang/python/en_GB/LC_MESSAGES/python.mo
index 9edf0da87..763f8ab01 100644
Binary files a/lang/python/en_GB/LC_MESSAGES/python.mo and b/lang/python/en_GB/LC_MESSAGES/python.mo differ
diff --git a/lang/python/en_GB/LC_MESSAGES/python.po b/lang/python/en_GB/LC_MESSAGES/python.po
index 80306ed8b..9e54a6538 100644
--- a/lang/python/en_GB/LC_MESSAGES/python.po
+++ b/lang/python/en_GB/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/eo/LC_MESSAGES/python.mo b/lang/python/eo/LC_MESSAGES/python.mo
new file mode 100644
index 000000000..ad2749b80
Binary files /dev/null and b/lang/python/eo/LC_MESSAGES/python.mo differ
diff --git a/lang/python/eo/LC_MESSAGES/python.po b/lang/python/eo/LC_MESSAGES/python.po
new file mode 100644
index 000000000..b93015618
--- /dev/null
+++ b/lang/python/eo/LC_MESSAGES/python.po
@@ -0,0 +1,58 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: tradukanto , 2018\n"
+"Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: src/modules/umount/main.py:40
+msgid "Unmount file systems."
+msgstr "Demeti dosieraj sistemoj."
+
+#: src/modules/dummypython/main.py:44
+msgid "Dummy python job."
+msgstr "Formala python laboro."
+
+#: src/modules/dummypython/main.py:97
+msgid "Dummy python step {}"
+msgstr "Formala python paŝo {}"
+
+#: src/modules/machineid/main.py:35
+msgid "Generate machine-id."
+msgstr "Generi maŝino-legitimilo."
+
+#: src/modules/packages/main.py:61
+#, python-format
+msgid "Processing packages (%(count)d / %(total)d)"
+msgstr "Prilaborante pakaĵoj (%(count)d / %(total)d)"
+
+#: src/modules/packages/main.py:63 src/modules/packages/main.py:73
+msgid "Install packages."
+msgstr "Instali pakaĵoj."
+
+#: src/modules/packages/main.py:66
+#, python-format
+msgid "Installing one package."
+msgid_plural "Installing %(num)d packages."
+msgstr[0] "Instalante unu pakaĵo."
+msgstr[1] "Instalante %(num)d pakaĵoj."
+
+#: src/modules/packages/main.py:69
+#, python-format
+msgid "Removing one package."
+msgid_plural "Removing %(num)d packages."
+msgstr[0] "Forigante unu pakaĵo."
+msgstr[1] "Forigante %(num)d pakaĵoj."
diff --git a/lang/python/es/LC_MESSAGES/python.mo b/lang/python/es/LC_MESSAGES/python.mo
index e8321006a..81e3121c0 100644
Binary files a/lang/python/es/LC_MESSAGES/python.mo and b/lang/python/es/LC_MESSAGES/python.mo differ
diff --git a/lang/python/es/LC_MESSAGES/python.po b/lang/python/es/LC_MESSAGES/python.po
index e3a18bba4..31ee2ba77 100644
--- a/lang/python/es/LC_MESSAGES/python.po
+++ b/lang/python/es/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: strel, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
diff --git a/lang/python/es_MX/LC_MESSAGES/python.mo b/lang/python/es_MX/LC_MESSAGES/python.mo
index e3afad54e..4ddd826e4 100644
Binary files a/lang/python/es_MX/LC_MESSAGES/python.mo and b/lang/python/es_MX/LC_MESSAGES/python.mo differ
diff --git a/lang/python/es_MX/LC_MESSAGES/python.po b/lang/python/es_MX/LC_MESSAGES/python.po
index a06559edf..f37751143 100644
--- a/lang/python/es_MX/LC_MESSAGES/python.po
+++ b/lang/python/es_MX/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/es_PR/LC_MESSAGES/python.mo b/lang/python/es_PR/LC_MESSAGES/python.mo
index 4c9807b54..c85a27627 100644
Binary files a/lang/python/es_PR/LC_MESSAGES/python.mo and b/lang/python/es_PR/LC_MESSAGES/python.mo differ
diff --git a/lang/python/es_PR/LC_MESSAGES/python.po b/lang/python/es_PR/LC_MESSAGES/python.po
index 1a934f1a7..20011ca91 100644
--- a/lang/python/es_PR/LC_MESSAGES/python.po
+++ b/lang/python/es_PR/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/et/LC_MESSAGES/python.mo b/lang/python/et/LC_MESSAGES/python.mo
index 9cd061f07..6e9c6d0a8 100644
Binary files a/lang/python/et/LC_MESSAGES/python.mo and b/lang/python/et/LC_MESSAGES/python.mo differ
diff --git a/lang/python/et/LC_MESSAGES/python.po b/lang/python/et/LC_MESSAGES/python.po
index 154377948..deec076dc 100644
--- a/lang/python/et/LC_MESSAGES/python.po
+++ b/lang/python/et/LC_MESSAGES/python.po
@@ -8,8 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Madis, 2018\n"
"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,39 +20,39 @@ msgstr ""
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
-msgstr ""
+msgstr "Haagi failisüsteemid lahti."
#: src/modules/dummypython/main.py:44
msgid "Dummy python job."
-msgstr ""
+msgstr "Testiv python'i töö."
#: src/modules/dummypython/main.py:97
msgid "Dummy python step {}"
-msgstr ""
+msgstr "Testiv python'i aste {}"
#: src/modules/machineid/main.py:35
msgid "Generate machine-id."
-msgstr ""
+msgstr "Genereeri masina-id."
#: src/modules/packages/main.py:61
#, python-format
msgid "Processing packages (%(count)d / %(total)d)"
-msgstr ""
+msgstr "Pakkide töötlemine (%(count)d / %(total)d)"
#: src/modules/packages/main.py:63 src/modules/packages/main.py:73
msgid "Install packages."
-msgstr ""
+msgstr "Installi pakid."
#: src/modules/packages/main.py:66
#, python-format
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Installin ühe paki."
+msgstr[1] "Installin %(num)d pakki."
#: src/modules/packages/main.py:69
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Eemaldan ühe paki."
+msgstr[1] "Eemaldan %(num)d pakki."
diff --git a/lang/python/eu/LC_MESSAGES/python.mo b/lang/python/eu/LC_MESSAGES/python.mo
index 9fd6ba35b..b7e4b0196 100644
Binary files a/lang/python/eu/LC_MESSAGES/python.mo and b/lang/python/eu/LC_MESSAGES/python.mo differ
diff --git a/lang/python/eu/LC_MESSAGES/python.po b/lang/python/eu/LC_MESSAGES/python.po
index fa905f0ff..5f21601ef 100644
--- a/lang/python/eu/LC_MESSAGES/python.po
+++ b/lang/python/eu/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/fa/LC_MESSAGES/python.mo b/lang/python/fa/LC_MESSAGES/python.mo
index d3bfe23bb..89339df13 100644
Binary files a/lang/python/fa/LC_MESSAGES/python.mo and b/lang/python/fa/LC_MESSAGES/python.mo differ
diff --git a/lang/python/fa/LC_MESSAGES/python.po b/lang/python/fa/LC_MESSAGES/python.po
index d3b0b1570..aef009a1a 100644
--- a/lang/python/fa/LC_MESSAGES/python.po
+++ b/lang/python/fa/LC_MESSAGES/python.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -47,9 +47,11 @@ msgstr ""
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
+msgstr[1] ""
#: src/modules/packages/main.py:69
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
+msgstr[1] ""
diff --git a/lang/python/fi_FI/LC_MESSAGES/python.mo b/lang/python/fi_FI/LC_MESSAGES/python.mo
index 978f9a7fa..25e22356f 100644
Binary files a/lang/python/fi_FI/LC_MESSAGES/python.mo and b/lang/python/fi_FI/LC_MESSAGES/python.mo differ
diff --git a/lang/python/fi_FI/LC_MESSAGES/python.po b/lang/python/fi_FI/LC_MESSAGES/python.po
index f178a5035..db7aad45d 100644
--- a/lang/python/fi_FI/LC_MESSAGES/python.po
+++ b/lang/python/fi_FI/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/fr/LC_MESSAGES/python.mo b/lang/python/fr/LC_MESSAGES/python.mo
index 387872ec2..54d45fed7 100644
Binary files a/lang/python/fr/LC_MESSAGES/python.mo and b/lang/python/fr/LC_MESSAGES/python.mo differ
diff --git a/lang/python/fr/LC_MESSAGES/python.po b/lang/python/fr/LC_MESSAGES/python.po
index 210cf2965..ebe18c3a8 100644
--- a/lang/python/fr/LC_MESSAGES/python.po
+++ b/lang/python/fr/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Jeremy Gourmel , 2018\n"
"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n"
diff --git a/lang/python/fr_CH/LC_MESSAGES/python.mo b/lang/python/fr_CH/LC_MESSAGES/python.mo
index 8bec20b88..b45acc7ee 100644
Binary files a/lang/python/fr_CH/LC_MESSAGES/python.mo and b/lang/python/fr_CH/LC_MESSAGES/python.mo differ
diff --git a/lang/python/fr_CH/LC_MESSAGES/python.po b/lang/python/fr_CH/LC_MESSAGES/python.po
index aa9d518aa..1bc4d48a9 100644
--- a/lang/python/fr_CH/LC_MESSAGES/python.po
+++ b/lang/python/fr_CH/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/gl/LC_MESSAGES/python.mo b/lang/python/gl/LC_MESSAGES/python.mo
index fc2891ed0..797dd7426 100644
Binary files a/lang/python/gl/LC_MESSAGES/python.mo and b/lang/python/gl/LC_MESSAGES/python.mo differ
diff --git a/lang/python/gl/LC_MESSAGES/python.po b/lang/python/gl/LC_MESSAGES/python.po
index 6780990ed..13dbb8f32 100644
--- a/lang/python/gl/LC_MESSAGES/python.po
+++ b/lang/python/gl/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Galician (https://www.transifex.com/calamares/teams/20061/gl/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/gu/LC_MESSAGES/python.mo b/lang/python/gu/LC_MESSAGES/python.mo
index 8edd0e5dd..5e65e184e 100644
Binary files a/lang/python/gu/LC_MESSAGES/python.mo and b/lang/python/gu/LC_MESSAGES/python.mo differ
diff --git a/lang/python/gu/LC_MESSAGES/python.po b/lang/python/gu/LC_MESSAGES/python.po
index aaa39c5e8..5e00bc9bb 100644
--- a/lang/python/gu/LC_MESSAGES/python.po
+++ b/lang/python/gu/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Gujarati (https://www.transifex.com/calamares/teams/20061/gu/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/he/LC_MESSAGES/python.mo b/lang/python/he/LC_MESSAGES/python.mo
index 91f85b447..fa1a277e8 100644
Binary files a/lang/python/he/LC_MESSAGES/python.mo and b/lang/python/he/LC_MESSAGES/python.mo differ
diff --git a/lang/python/he/LC_MESSAGES/python.po b/lang/python/he/LC_MESSAGES/python.po
index dfb1fa55b..c98599da2 100644
--- a/lang/python/he/LC_MESSAGES/python.po
+++ b/lang/python/he/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Eli Shleifer , 2017\n"
"Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -49,6 +49,7 @@ msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] "מתקין חבילה אחת."
msgstr[1] "מתקין %(num)d חבילות."
+msgstr[2] "מתקין %(num)d חבילות."
#: src/modules/packages/main.py:69
#, python-format
@@ -56,3 +57,4 @@ msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] "מסיר חבילה אחת."
msgstr[1] "מסיר %(num)d חבילות."
+msgstr[2] "מסיר %(num)d חבילות."
diff --git a/lang/python/hi/LC_MESSAGES/python.mo b/lang/python/hi/LC_MESSAGES/python.mo
index c3fec7719..9c5efc237 100644
Binary files a/lang/python/hi/LC_MESSAGES/python.mo and b/lang/python/hi/LC_MESSAGES/python.mo differ
diff --git a/lang/python/hi/LC_MESSAGES/python.po b/lang/python/hi/LC_MESSAGES/python.po
index cc20688de..3e2f7c7c5 100644
--- a/lang/python/hi/LC_MESSAGES/python.po
+++ b/lang/python/hi/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Panwar108 , 2018\n"
"Language-Team: Hindi (https://www.transifex.com/calamares/teams/20061/hi/)\n"
diff --git a/lang/python/hr/LC_MESSAGES/python.mo b/lang/python/hr/LC_MESSAGES/python.mo
index d8583ec90..ac931c697 100644
Binary files a/lang/python/hr/LC_MESSAGES/python.mo and b/lang/python/hr/LC_MESSAGES/python.mo differ
diff --git a/lang/python/hr/LC_MESSAGES/python.po b/lang/python/hr/LC_MESSAGES/python.po
index 72ae3fc35..013b59492 100644
--- a/lang/python/hr/LC_MESSAGES/python.po
+++ b/lang/python/hr/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Lovro Kudelić , 2017\n"
"Language-Team: Croatian (https://www.transifex.com/calamares/teams/20061/hr/)\n"
diff --git a/lang/python/hu/LC_MESSAGES/python.mo b/lang/python/hu/LC_MESSAGES/python.mo
index 7106fb16d..19aa8389a 100644
Binary files a/lang/python/hu/LC_MESSAGES/python.mo and b/lang/python/hu/LC_MESSAGES/python.mo differ
diff --git a/lang/python/hu/LC_MESSAGES/python.po b/lang/python/hu/LC_MESSAGES/python.po
index fee0c1774..b6d3785a9 100644
--- a/lang/python/hu/LC_MESSAGES/python.po
+++ b/lang/python/hu/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: miku84, 2017\n"
"Language-Team: Hungarian (https://www.transifex.com/calamares/teams/20061/hu/)\n"
diff --git a/lang/python/id/LC_MESSAGES/python.mo b/lang/python/id/LC_MESSAGES/python.mo
index 29c665814..367bf272c 100644
Binary files a/lang/python/id/LC_MESSAGES/python.mo and b/lang/python/id/LC_MESSAGES/python.mo differ
diff --git a/lang/python/id/LC_MESSAGES/python.po b/lang/python/id/LC_MESSAGES/python.po
index bdd95214c..89616296d 100644
--- a/lang/python/id/LC_MESSAGES/python.po
+++ b/lang/python/id/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Harry Suryapambagya , 2018\n"
"Language-Team: Indonesian (https://www.transifex.com/calamares/teams/20061/id/)\n"
diff --git a/lang/python/is/LC_MESSAGES/python.mo b/lang/python/is/LC_MESSAGES/python.mo
index 1fecd1732..5caca1051 100644
Binary files a/lang/python/is/LC_MESSAGES/python.mo and b/lang/python/is/LC_MESSAGES/python.mo differ
diff --git a/lang/python/is/LC_MESSAGES/python.po b/lang/python/is/LC_MESSAGES/python.po
index 63f563c7a..7ff9df520 100644
--- a/lang/python/is/LC_MESSAGES/python.po
+++ b/lang/python/is/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Kristján Magnússon, 2017\n"
"Language-Team: Icelandic (https://www.transifex.com/calamares/teams/20061/is/)\n"
diff --git a/lang/python/it_IT/LC_MESSAGES/python.mo b/lang/python/it_IT/LC_MESSAGES/python.mo
index 1adb14cb4..69fdb80c9 100644
Binary files a/lang/python/it_IT/LC_MESSAGES/python.mo and b/lang/python/it_IT/LC_MESSAGES/python.mo differ
diff --git a/lang/python/it_IT/LC_MESSAGES/python.po b/lang/python/it_IT/LC_MESSAGES/python.po
index 31a3cd3bf..89196b059 100644
--- a/lang/python/it_IT/LC_MESSAGES/python.po
+++ b/lang/python/it_IT/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Mark , 2018\n"
"Language-Team: Italian (Italy) (https://www.transifex.com/calamares/teams/20061/it_IT/)\n"
diff --git a/lang/python/ja/LC_MESSAGES/python.mo b/lang/python/ja/LC_MESSAGES/python.mo
index 78aba5645..6956c7822 100644
Binary files a/lang/python/ja/LC_MESSAGES/python.mo and b/lang/python/ja/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ja/LC_MESSAGES/python.po b/lang/python/ja/LC_MESSAGES/python.po
index 220ce8ac3..094731313 100644
--- a/lang/python/ja/LC_MESSAGES/python.po
+++ b/lang/python/ja/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Takefumi Nagata, 2017\n"
"Language-Team: Japanese (https://www.transifex.com/calamares/teams/20061/ja/)\n"
@@ -20,7 +20,7 @@ msgstr ""
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
-msgstr ""
+msgstr "ファイルシステムをアンマウントする。"
#: src/modules/dummypython/main.py:44
msgid "Dummy python job."
diff --git a/lang/python/kk/LC_MESSAGES/python.mo b/lang/python/kk/LC_MESSAGES/python.mo
index 607fd9186..f80a34e83 100644
Binary files a/lang/python/kk/LC_MESSAGES/python.mo and b/lang/python/kk/LC_MESSAGES/python.mo differ
diff --git a/lang/python/kk/LC_MESSAGES/python.po b/lang/python/kk/LC_MESSAGES/python.po
index 1d6a2d9f4..599a78ef1 100644
--- a/lang/python/kk/LC_MESSAGES/python.po
+++ b/lang/python/kk/LC_MESSAGES/python.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kk\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -47,9 +47,11 @@ msgstr ""
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
+msgstr[1] ""
#: src/modules/packages/main.py:69
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
+msgstr[1] ""
diff --git a/lang/python/kn/LC_MESSAGES/python.mo b/lang/python/kn/LC_MESSAGES/python.mo
index 3672cb7bc..a55906ecf 100644
Binary files a/lang/python/kn/LC_MESSAGES/python.mo and b/lang/python/kn/LC_MESSAGES/python.mo differ
diff --git a/lang/python/kn/LC_MESSAGES/python.po b/lang/python/kn/LC_MESSAGES/python.po
index f29a41c74..494299bf2 100644
--- a/lang/python/kn/LC_MESSAGES/python.po
+++ b/lang/python/kn/LC_MESSAGES/python.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Kannada (https://www.transifex.com/calamares/teams/20061/kn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kn\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -47,9 +47,11 @@ msgstr ""
msgid "Installing one package."
msgid_plural "Installing %(num)d packages."
msgstr[0] ""
+msgstr[1] ""
#: src/modules/packages/main.py:69
#, python-format
msgid "Removing one package."
msgid_plural "Removing %(num)d packages."
msgstr[0] ""
+msgstr[1] ""
diff --git a/lang/python/lo/LC_MESSAGES/python.mo b/lang/python/lo/LC_MESSAGES/python.mo
index c4ef7a6c0..5bf185cf8 100644
Binary files a/lang/python/lo/LC_MESSAGES/python.mo and b/lang/python/lo/LC_MESSAGES/python.mo differ
diff --git a/lang/python/lo/LC_MESSAGES/python.po b/lang/python/lo/LC_MESSAGES/python.po
index ba0904bfa..626e03b4a 100644
--- a/lang/python/lo/LC_MESSAGES/python.po
+++ b/lang/python/lo/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Lao (https://www.transifex.com/calamares/teams/20061/lo/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/lt/LC_MESSAGES/python.mo b/lang/python/lt/LC_MESSAGES/python.mo
index f2f75376b..28557858d 100644
Binary files a/lang/python/lt/LC_MESSAGES/python.mo and b/lang/python/lt/LC_MESSAGES/python.mo differ
diff --git a/lang/python/lt/LC_MESSAGES/python.po b/lang/python/lt/LC_MESSAGES/python.po
index 2be3f9487..fe1dd58ed 100644
--- a/lang/python/lt/LC_MESSAGES/python.po
+++ b/lang/python/lt/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Moo, 2017\n"
"Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -50,6 +50,7 @@ msgid_plural "Installing %(num)d packages."
msgstr[0] "Įdiegiamas %(num)d paketas."
msgstr[1] "Įdiegiami %(num)d paketai."
msgstr[2] "Įdiegiama %(num)d paketų."
+msgstr[3] "Įdiegiama %(num)d paketų."
#: src/modules/packages/main.py:69
#, python-format
@@ -58,3 +59,4 @@ msgid_plural "Removing %(num)d packages."
msgstr[0] "Šalinamas %(num)d paketas."
msgstr[1] "Šalinami %(num)d paketai."
msgstr[2] "Šalinama %(num)d paketų."
+msgstr[3] "Šalinama %(num)d paketų."
diff --git a/lang/python/mr/LC_MESSAGES/python.mo b/lang/python/mr/LC_MESSAGES/python.mo
index 531e39aaf..a089d694c 100644
Binary files a/lang/python/mr/LC_MESSAGES/python.mo and b/lang/python/mr/LC_MESSAGES/python.mo differ
diff --git a/lang/python/mr/LC_MESSAGES/python.po b/lang/python/mr/LC_MESSAGES/python.po
index fd8348ee2..e4d847a0a 100644
--- a/lang/python/mr/LC_MESSAGES/python.po
+++ b/lang/python/mr/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Marathi (https://www.transifex.com/calamares/teams/20061/mr/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/nb/LC_MESSAGES/python.mo b/lang/python/nb/LC_MESSAGES/python.mo
index 3a0d9ad2c..378cce55a 100644
Binary files a/lang/python/nb/LC_MESSAGES/python.mo and b/lang/python/nb/LC_MESSAGES/python.mo differ
diff --git a/lang/python/nb/LC_MESSAGES/python.po b/lang/python/nb/LC_MESSAGES/python.po
index 088612d62..8e7b06d3c 100644
--- a/lang/python/nb/LC_MESSAGES/python.po
+++ b/lang/python/nb/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Tyler Moss , 2017\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/calamares/teams/20061/nb/)\n"
diff --git a/lang/python/nl/LC_MESSAGES/python.mo b/lang/python/nl/LC_MESSAGES/python.mo
index c8eb3b833..769e8e775 100644
Binary files a/lang/python/nl/LC_MESSAGES/python.mo and b/lang/python/nl/LC_MESSAGES/python.mo differ
diff --git a/lang/python/nl/LC_MESSAGES/python.po b/lang/python/nl/LC_MESSAGES/python.po
index c4e6bf2ca..49cfa3d3e 100644
--- a/lang/python/nl/LC_MESSAGES/python.po
+++ b/lang/python/nl/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Adriaan de Groot , 2017\n"
"Language-Team: Dutch (https://www.transifex.com/calamares/teams/20061/nl/)\n"
diff --git a/lang/python/pl/LC_MESSAGES/python.mo b/lang/python/pl/LC_MESSAGES/python.mo
index 0193f8ce4..eaed55ed3 100644
Binary files a/lang/python/pl/LC_MESSAGES/python.mo and b/lang/python/pl/LC_MESSAGES/python.mo differ
diff --git a/lang/python/pl/LC_MESSAGES/python.po b/lang/python/pl/LC_MESSAGES/python.po
index d7b1e8dae..a32062bfa 100644
--- a/lang/python/pl/LC_MESSAGES/python.po
+++ b/lang/python/pl/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Marcin Mikołajczak , 2017\n"
"Language-Team: Polish (https://www.transifex.com/calamares/teams/20061/pl/)\n"
diff --git a/lang/python/pt_BR/LC_MESSAGES/python.mo b/lang/python/pt_BR/LC_MESSAGES/python.mo
index c5bd4fde4..a67e33f66 100644
Binary files a/lang/python/pt_BR/LC_MESSAGES/python.mo and b/lang/python/pt_BR/LC_MESSAGES/python.mo differ
diff --git a/lang/python/pt_BR/LC_MESSAGES/python.po b/lang/python/pt_BR/LC_MESSAGES/python.po
index 29c5d81ad..89fdcbd0c 100644
--- a/lang/python/pt_BR/LC_MESSAGES/python.po
+++ b/lang/python/pt_BR/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Caio Jordão Carvalho , 2018\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n"
diff --git a/lang/python/pt_PT/LC_MESSAGES/python.mo b/lang/python/pt_PT/LC_MESSAGES/python.mo
index 211b41cfc..f5b618b5d 100644
Binary files a/lang/python/pt_PT/LC_MESSAGES/python.mo and b/lang/python/pt_PT/LC_MESSAGES/python.mo differ
diff --git a/lang/python/pt_PT/LC_MESSAGES/python.po b/lang/python/pt_PT/LC_MESSAGES/python.po
index 8e781a848..9dabde94f 100644
--- a/lang/python/pt_PT/LC_MESSAGES/python.po
+++ b/lang/python/pt_PT/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Ricardo Simões , 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/calamares/teams/20061/pt_PT/)\n"
diff --git a/lang/python/ro/LC_MESSAGES/python.mo b/lang/python/ro/LC_MESSAGES/python.mo
index 46970e97f..2f8f300df 100644
Binary files a/lang/python/ro/LC_MESSAGES/python.mo and b/lang/python/ro/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ro/LC_MESSAGES/python.po b/lang/python/ro/LC_MESSAGES/python.po
index baa8b2b4e..c5cd117e3 100644
--- a/lang/python/ro/LC_MESSAGES/python.po
+++ b/lang/python/ro/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Baadur Jobava , 2018\n"
"Language-Team: Romanian (https://www.transifex.com/calamares/teams/20061/ro/)\n"
diff --git a/lang/python/ru/LC_MESSAGES/python.mo b/lang/python/ru/LC_MESSAGES/python.mo
index 9ce189e36..434a4e0fc 100644
Binary files a/lang/python/ru/LC_MESSAGES/python.mo and b/lang/python/ru/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ru/LC_MESSAGES/python.po b/lang/python/ru/LC_MESSAGES/python.po
index 1c3eba3fe..99f2b6eaf 100644
--- a/lang/python/ru/LC_MESSAGES/python.po
+++ b/lang/python/ru/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Aleksey Kabanov , 2018\n"
"Language-Team: Russian (https://www.transifex.com/calamares/teams/20061/ru/)\n"
diff --git a/lang/python/sk/LC_MESSAGES/python.mo b/lang/python/sk/LC_MESSAGES/python.mo
index 55b30e477..bb6e2937a 100644
Binary files a/lang/python/sk/LC_MESSAGES/python.mo and b/lang/python/sk/LC_MESSAGES/python.mo differ
diff --git a/lang/python/sk/LC_MESSAGES/python.po b/lang/python/sk/LC_MESSAGES/python.po
index 3e774ad25..8367fa5c3 100644
--- a/lang/python/sk/LC_MESSAGES/python.po
+++ b/lang/python/sk/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dušan Kazik , 2017\n"
"Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sk\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -50,6 +50,7 @@ msgid_plural "Installing %(num)d packages."
msgstr[0] "Inštaluje sa jeden balík."
msgstr[1] "Inštalujú sa %(num)d balíky."
msgstr[2] "Inštaluje sa %(num)d balíkov."
+msgstr[3] "Inštaluje sa %(num)d balíkov."
#: src/modules/packages/main.py:69
#, python-format
@@ -58,3 +59,4 @@ msgid_plural "Removing %(num)d packages."
msgstr[0] "Odstraňuje sa jeden balík."
msgstr[1] "Odstraňujú sa %(num)d balíky."
msgstr[2] "Odstraňuje sa %(num)d balíkov."
+msgstr[3] "Odstraňuje sa %(num)d balíkov."
diff --git a/lang/python/sl/LC_MESSAGES/python.mo b/lang/python/sl/LC_MESSAGES/python.mo
index 1cacc13e3..4a3bfdf42 100644
Binary files a/lang/python/sl/LC_MESSAGES/python.mo and b/lang/python/sl/LC_MESSAGES/python.mo differ
diff --git a/lang/python/sl/LC_MESSAGES/python.po b/lang/python/sl/LC_MESSAGES/python.po
index b6df06d94..023a40c60 100644
--- a/lang/python/sl/LC_MESSAGES/python.po
+++ b/lang/python/sl/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Slovenian (https://www.transifex.com/calamares/teams/20061/sl/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/sq/LC_MESSAGES/python.mo b/lang/python/sq/LC_MESSAGES/python.mo
index 646afef37..a5ee0c3af 100644
Binary files a/lang/python/sq/LC_MESSAGES/python.mo and b/lang/python/sq/LC_MESSAGES/python.mo differ
diff --git a/lang/python/sq/LC_MESSAGES/python.po b/lang/python/sq/LC_MESSAGES/python.po
index 76bbcc06b..7c78a70c4 100644
--- a/lang/python/sq/LC_MESSAGES/python.po
+++ b/lang/python/sq/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Besnik , 2017\n"
"Language-Team: Albanian (https://www.transifex.com/calamares/teams/20061/sq/)\n"
diff --git a/lang/python/sr/LC_MESSAGES/python.mo b/lang/python/sr/LC_MESSAGES/python.mo
index 006f4a105..b071a7166 100644
Binary files a/lang/python/sr/LC_MESSAGES/python.mo and b/lang/python/sr/LC_MESSAGES/python.mo differ
diff --git a/lang/python/sr/LC_MESSAGES/python.po b/lang/python/sr/LC_MESSAGES/python.po
index 1ca4c756b..c8b52fdf9 100644
--- a/lang/python/sr/LC_MESSAGES/python.po
+++ b/lang/python/sr/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Serbian (https://www.transifex.com/calamares/teams/20061/sr/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/sr@latin/LC_MESSAGES/python.mo b/lang/python/sr@latin/LC_MESSAGES/python.mo
index 1ef282c99..815b243d7 100644
Binary files a/lang/python/sr@latin/LC_MESSAGES/python.mo and b/lang/python/sr@latin/LC_MESSAGES/python.mo differ
diff --git a/lang/python/sr@latin/LC_MESSAGES/python.po b/lang/python/sr@latin/LC_MESSAGES/python.po
index 7fd441f33..0cb8231c3 100644
--- a/lang/python/sr@latin/LC_MESSAGES/python.po
+++ b/lang/python/sr@latin/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/calamares/teams/20061/sr%40latin/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/sv/LC_MESSAGES/python.mo b/lang/python/sv/LC_MESSAGES/python.mo
index 515a95c20..4a9a1f880 100644
Binary files a/lang/python/sv/LC_MESSAGES/python.mo and b/lang/python/sv/LC_MESSAGES/python.mo differ
diff --git a/lang/python/sv/LC_MESSAGES/python.po b/lang/python/sv/LC_MESSAGES/python.po
index 92b751bd8..5c5ea66eb 100644
--- a/lang/python/sv/LC_MESSAGES/python.po
+++ b/lang/python/sv/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Swedish (https://www.transifex.com/calamares/teams/20061/sv/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/th/LC_MESSAGES/python.mo b/lang/python/th/LC_MESSAGES/python.mo
index aad4a814d..13c510849 100644
Binary files a/lang/python/th/LC_MESSAGES/python.mo and b/lang/python/th/LC_MESSAGES/python.mo differ
diff --git a/lang/python/th/LC_MESSAGES/python.po b/lang/python/th/LC_MESSAGES/python.po
index c312cc439..5ff443631 100644
--- a/lang/python/th/LC_MESSAGES/python.po
+++ b/lang/python/th/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Thai (https://www.transifex.com/calamares/teams/20061/th/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/tr_TR/LC_MESSAGES/python.mo b/lang/python/tr_TR/LC_MESSAGES/python.mo
index 7f4007a70..a26742798 100644
Binary files a/lang/python/tr_TR/LC_MESSAGES/python.mo and b/lang/python/tr_TR/LC_MESSAGES/python.mo differ
diff --git a/lang/python/tr_TR/LC_MESSAGES/python.po b/lang/python/tr_TR/LC_MESSAGES/python.po
index d5c13a300..05df72bcb 100644
--- a/lang/python/tr_TR/LC_MESSAGES/python.po
+++ b/lang/python/tr_TR/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Demiray “tulliana” Muhterem , 2017\n"
"Language-Team: Turkish (Turkey) (https://www.transifex.com/calamares/teams/20061/tr_TR/)\n"
diff --git a/lang/python/uk/LC_MESSAGES/python.mo b/lang/python/uk/LC_MESSAGES/python.mo
index 484b9935c..c74193fef 100644
Binary files a/lang/python/uk/LC_MESSAGES/python.mo and b/lang/python/uk/LC_MESSAGES/python.mo differ
diff --git a/lang/python/uk/LC_MESSAGES/python.po b/lang/python/uk/LC_MESSAGES/python.po
index 12e9b75fc..51401375f 100644
--- a/lang/python/uk/LC_MESSAGES/python.po
+++ b/lang/python/uk/LC_MESSAGES/python.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
#: src/modules/umount/main.py:40
msgid "Unmount file systems."
@@ -49,6 +49,7 @@ msgid_plural "Installing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
#: src/modules/packages/main.py:69
#, python-format
@@ -57,3 +58,4 @@ msgid_plural "Removing %(num)d packages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
+msgstr[3] ""
diff --git a/lang/python/ur/LC_MESSAGES/python.mo b/lang/python/ur/LC_MESSAGES/python.mo
index 2c33ddaaf..9a286384d 100644
Binary files a/lang/python/ur/LC_MESSAGES/python.mo and b/lang/python/ur/LC_MESSAGES/python.mo differ
diff --git a/lang/python/ur/LC_MESSAGES/python.po b/lang/python/ur/LC_MESSAGES/python.po
index e1d6cc46f..7a4c4277a 100644
--- a/lang/python/ur/LC_MESSAGES/python.po
+++ b/lang/python/ur/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Urdu (https://www.transifex.com/calamares/teams/20061/ur/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/uz/LC_MESSAGES/python.mo b/lang/python/uz/LC_MESSAGES/python.mo
index a8c96cabf..19c871a41 100644
Binary files a/lang/python/uz/LC_MESSAGES/python.mo and b/lang/python/uz/LC_MESSAGES/python.mo differ
diff --git a/lang/python/uz/LC_MESSAGES/python.po b/lang/python/uz/LC_MESSAGES/python.po
index abf02a315..b65f871ab 100644
--- a/lang/python/uz/LC_MESSAGES/python.po
+++ b/lang/python/uz/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Uzbek (https://www.transifex.com/calamares/teams/20061/uz/)\n"
"MIME-Version: 1.0\n"
diff --git a/lang/python/zh_CN/LC_MESSAGES/python.mo b/lang/python/zh_CN/LC_MESSAGES/python.mo
index 27629f7b0..69bd2f8a5 100644
Binary files a/lang/python/zh_CN/LC_MESSAGES/python.mo and b/lang/python/zh_CN/LC_MESSAGES/python.mo differ
diff --git a/lang/python/zh_CN/LC_MESSAGES/python.po b/lang/python/zh_CN/LC_MESSAGES/python.po
index 23fb40c94..454a9ac9c 100644
--- a/lang/python/zh_CN/LC_MESSAGES/python.po
+++ b/lang/python/zh_CN/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: leonfeng , 2018\n"
"Language-Team: Chinese (China) (https://www.transifex.com/calamares/teams/20061/zh_CN/)\n"
diff --git a/lang/python/zh_TW/LC_MESSAGES/python.mo b/lang/python/zh_TW/LC_MESSAGES/python.mo
index c254d5111..5403be702 100644
Binary files a/lang/python/zh_TW/LC_MESSAGES/python.mo and b/lang/python/zh_TW/LC_MESSAGES/python.mo differ
diff --git a/lang/python/zh_TW/LC_MESSAGES/python.po b/lang/python/zh_TW/LC_MESSAGES/python.po
index d817891a7..887672c86 100644
--- a/lang/python/zh_TW/LC_MESSAGES/python.po
+++ b/lang/python/zh_TW/LC_MESSAGES/python.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Jeff Huang , 2017\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/calamares/teams/20061/zh_TW/)\n"
diff --git a/src/libcalamares/utils/CommandList.cpp b/src/libcalamares/utils/CommandList.cpp
index 298fc7b6c..3b2935c55 100644
--- a/src/libcalamares/utils/CommandList.cpp
+++ b/src/libcalamares/utils/CommandList.cpp
@@ -100,18 +100,29 @@ CommandList::~CommandList()
Calamares::JobResult CommandList::run()
{
+ QLatin1Literal rootMagic( "@@ROOT@@" );
+
System::RunLocation location = m_doChroot ? System::RunLocation::RunInTarget : System::RunLocation::RunInHost;
/* Figure out the replacement for @@ROOT@@ */
QString root = QStringLiteral( "/" );
Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage();
- if ( location == System::RunLocation::RunInTarget )
+
+ bool needsRootSubstitution = false;
+ for ( CommandList::const_iterator i = cbegin(); i != cend(); ++i )
+ if ( i->command().contains( rootMagic ) )
+ {
+ needsRootSubstitution = true;
+ break;
+ }
+
+ if ( needsRootSubstitution && ( location == System::RunLocation::RunInHost ) )
{
if ( !gs || !gs->contains( "rootMountPoint" ) )
{
cError() << "No rootMountPoint defined.";
return Calamares::JobResult::error( QCoreApplication::translate( "CommandList", "Could not run command." ),
- QCoreApplication::translate( "CommandList", "No rootMountPoint is defined, so command cannot be run in the target environment." ) );
+ QCoreApplication::translate( "CommandList", "The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined." ) );
}
root = gs->value( "rootMountPoint" ).toString();
}
@@ -119,7 +130,7 @@ Calamares::JobResult CommandList::run()
for ( CommandList::const_iterator i = cbegin(); i != cend(); ++i )
{
QString processed_cmd = i->command();
- processed_cmd.replace( "@@ROOT@@", root );
+ processed_cmd.replace( rootMagic, root );
bool suppress_result = false;
if ( processed_cmd.startsWith( '-' ) )
{
diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo
index 183b7d536..a81437b95 100644
Binary files a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po
index 4c28848bf..e70709472 100644
--- a/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/cs_CZ/LC_MESSAGES/dummypythonqt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-17 19:16+0100\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: pavelrz, 2016\n"
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs_CZ\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo
new file mode 100644
index 000000000..8eac3bf2f
Binary files /dev/null and b/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.po
new file mode 100644
index 000000000..4fcdcfd71
--- /dev/null
+++ b/src/modules/dummypythonqt/lang/eo/LC_MESSAGES/dummypythonqt.po
@@ -0,0 +1,43 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-05-07 09:14-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: tradukanto , 2018\n"
+"Language-Team: Esperanto (https://www.transifex.com/calamares/teams/20061/eo/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: src/modules/dummypythonqt/main.py:84
+msgid "Click me!"
+msgstr "Alklaku min!"
+
+#: src/modules/dummypythonqt/main.py:94
+msgid "A new QLabel."
+msgstr "Nova QLabel."
+
+#: src/modules/dummypythonqt/main.py:97
+msgid "Dummy PythonQt ViewStep"
+msgstr "Formala PythonQt ViewStep"
+
+#: src/modules/dummypythonqt/main.py:183
+msgid "The Dummy PythonQt Job"
+msgstr "La Formala PythonQt Laboro"
+
+#: src/modules/dummypythonqt/main.py:186
+msgid "This is the Dummy PythonQt Job. The dummy job says: {}"
+msgstr "Ĉi tiu estas la Formala PythonQt Laboro. La formala laboro diras: {}"
+
+#: src/modules/dummypythonqt/main.py:190
+msgid "A status message for Dummy PythonQt Job."
+msgstr "Statusa mesaĝo por Formala PythonQt Laboro."
diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo
index 86e51fbf4..ac3fe3890 100644
Binary files a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po
index 50ed84e86..d6f7455b6 100644
--- a/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/et/LC_MESSAGES/dummypythonqt.po
@@ -8,8 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 08:16-0400\n"
+"POT-Creation-Date: 2018-05-07 09:14-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Madis, 2018\n"
"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,24 +20,24 @@ msgstr ""
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
-msgstr ""
+msgstr "Klõpsa mind!"
#: src/modules/dummypythonqt/main.py:94
msgid "A new QLabel."
-msgstr ""
+msgstr "Uus QLabel."
#: src/modules/dummypythonqt/main.py:97
msgid "Dummy PythonQt ViewStep"
-msgstr ""
+msgstr "Testiv PythonQt ViewStep"
#: src/modules/dummypythonqt/main.py:183
msgid "The Dummy PythonQt Job"
-msgstr ""
+msgstr "Testiv PythonQt Töö"
#: src/modules/dummypythonqt/main.py:186
msgid "This is the Dummy PythonQt Job. The dummy job says: {}"
-msgstr ""
+msgstr "See on testiv PythonQt töö. Testiv töö ütleb: {}"
#: src/modules/dummypythonqt/main.py:190
msgid "A status message for Dummy PythonQt Job."
-msgstr ""
+msgstr "Olekusõnum testivale PythonQt tööle."
diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo
index be5db74c2..89339df13 100644
Binary files a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po
index 9561d2d7f..c635ffd83 100644
--- a/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/fa/LC_MESSAGES/dummypythonqt.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 08:16-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo
index 98b589db3..c9628f7a7 100644
Binary files a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po
index f5e9b6389..3c87e57d1 100644
--- a/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/he/LC_MESSAGES/dummypythonqt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 08:16-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Eli Shleifer , 2017\n"
"Language-Team: Hebrew (https://www.transifex.com/calamares/teams/20061/he/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo
index 2b0afba0e..260a0f437 100644
Binary files a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po
index 6a6cae92a..607ac74d2 100644
--- a/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/kk/LC_MESSAGES/dummypythonqt.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 08:16-0400\n"
+"POT-Creation-Date: 2018-05-07 09:14-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Kazakh (https://www.transifex.com/calamares/teams/20061/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kk\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo
index bb4455c58..a55906ecf 100644
Binary files a/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.po
index 4d6658aa7..8625e3a21 100644
--- a/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/kn/LC_MESSAGES/dummypythonqt.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-11-06 06:02-0500\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Kannada (https://www.transifex.com/calamares/teams/20061/kn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kn\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo
index 30fb27cad..afcfc63d5 100644
Binary files a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po
index 5d9db7cc6..4b2efa540 100644
--- a/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/lt/LC_MESSAGES/dummypythonqt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-17 19:16+0100\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Moo, 2016\n"
"Language-Team: Lithuanian (https://www.transifex.com/calamares/teams/20061/lt/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo
index 2c1d077a0..e0ede8c36 100644
Binary files a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po
index 6dd7837c9..4ed4e7c28 100644
--- a/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/pt_BR/LC_MESSAGES/dummypythonqt.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-12-21 16:44+0100\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Guilherme M.S. , 2017\n"
+"Last-Translator: Guilherme , 2017\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/calamares/teams/20061/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo
index 4cb8879b3..ff06e3d86 100644
Binary files a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po
index 7f45b4605..46023f680 100644
--- a/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/sk/LC_MESSAGES/dummypythonqt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 08:16-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dušan Kazik , 2016\n"
"Language-Team: Slovak (https://www.transifex.com/calamares/teams/20061/sk/)\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sk\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo
index d17a14087..c74193fef 100644
Binary files a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo and b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.mo differ
diff --git a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po
index 5bdc57b31..67d3c5087 100644
--- a/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po
+++ b/src/modules/dummypythonqt/lang/uk/LC_MESSAGES/dummypythonqt.po
@@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 08:16-0400\n"
+"POT-Creation-Date: 2018-05-16 11:40-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Ukrainian (https://www.transifex.com/calamares/teams/20061/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
#: src/modules/dummypythonqt/main.py:84
msgid "Click me!"
diff --git a/src/modules/partition/CMakeLists.txt b/src/modules/partition/CMakeLists.txt
index 156ff86f5..cfc5e567e 100644
--- a/src/modules/partition/CMakeLists.txt
+++ b/src/modules/partition/CMakeLists.txt
@@ -40,6 +40,7 @@ if ( KPMcore_FOUND )
gui/EncryptWidget.cpp
gui/PartitionPage.cpp
gui/PartitionBarsView.cpp
+ gui/PartitionDialogHelpers.cpp
gui/PartitionLabelsView.cpp
gui/PartitionSizeController.cpp
gui/PartitionSplitterWidget.cpp
diff --git a/src/modules/partition/core/PartUtils.cpp b/src/modules/partition/core/PartUtils.cpp
index 775fcee66..2c2944997 100644
--- a/src/modules/partition/core/PartUtils.cpp
+++ b/src/modules/partition/core/PartUtils.cpp
@@ -22,6 +22,7 @@
#include "core/DeviceModel.h"
#include "core/KPMHelpers.h"
+#include "core/PartitionInfo.h"
#include "core/PartitionIterator.h"
#include
@@ -343,8 +344,10 @@ isEfiSystem()
bool
isEfiBootable( const Partition* candidate )
{
+ auto flags = PartitionInfo::flags( candidate );
+
/* If bit 17 is set, old-style Esp flag, it's OK */
- if ( candidate->activeFlags().testFlag( PartitionTable::FlagEsp ) )
+ if ( flags.testFlag( PartitionTable::FlagEsp ) )
return true;
@@ -359,7 +362,7 @@ isEfiBootable( const Partition* candidate )
const PartitionTable* table = dynamic_cast( root );
return table && ( table->type() == PartitionTable::TableType::gpt ) &&
- candidate->activeFlags().testFlag( PartitionTable::FlagBoot );
+ flags.testFlag( PartitionTable::FlagBoot );
}
} // nmamespace PartUtils
diff --git a/src/modules/partition/core/PartitionCoreModule.cpp b/src/modules/partition/core/PartitionCoreModule.cpp
index 1fe52b1b4..c810f6abc 100644
--- a/src/modules/partition/core/PartitionCoreModule.cpp
+++ b/src/modules/partition/core/PartitionCoreModule.cpp
@@ -258,6 +258,7 @@ PartitionCoreModule::createPartition( Device* device,
{
SetPartFlagsJob* fJob = new SetPartFlagsJob( device, partition, flags );
deviceInfo->jobs << Calamares::job_ptr( fJob );
+ PartitionInfo::setFlags( partition, flags );
}
refresh();
@@ -381,8 +382,8 @@ PartitionCoreModule::setPartitionFlags( Device* device,
PartitionModel::ResetHelper( partitionModelForDevice( device ) );
SetPartFlagsJob* job = new SetPartFlagsJob( device, partition, flags );
-
deviceInfo->jobs << Calamares::job_ptr( job );
+ PartitionInfo::setFlags( partition, flags );
refresh();
}
diff --git a/src/modules/partition/core/PartitionInfo.cpp b/src/modules/partition/core/PartitionInfo.cpp
index 72cca8976..dcd49d2e9 100644
--- a/src/modules/partition/core/PartitionInfo.cpp
+++ b/src/modules/partition/core/PartitionInfo.cpp
@@ -27,8 +27,9 @@
namespace PartitionInfo
{
-static const char* MOUNT_POINT_PROPERTY = "_calamares_mountPoint";
-static const char* FORMAT_PROPERTY = "_calamares_format";
+static const char MOUNT_POINT_PROPERTY[] = "_calamares_mountPoint";
+static const char FORMAT_PROPERTY[] = "_calamares_format";
+static const char FLAGS_PROPERTY[] = "_calamares_flags";
QString
mountPoint( Partition* partition )
@@ -54,18 +55,33 @@ setFormat( Partition* partition, bool value )
partition->setProperty( FORMAT_PROPERTY, value );
}
+PartitionTable::Flags flags(const Partition* partition)
+{
+ auto v = partition->property( FLAGS_PROPERTY );
+ if (v.type() == QVariant::Int )
+ return static_cast( v.toInt() );
+ return partition->activeFlags();
+}
+
+void setFlags(Partition* partition, PartitionTable::Flags f)
+{
+ partition->setProperty( FLAGS_PROPERTY, PartitionTable::Flags::Int( f ) );
+}
+
void
reset( Partition* partition )
{
partition->setProperty( MOUNT_POINT_PROPERTY, QVariant() );
partition->setProperty( FORMAT_PROPERTY, QVariant() );
+ partition->setProperty( FLAGS_PROPERTY, QVariant() );
}
bool
isDirty( Partition* partition )
{
return !mountPoint( partition ).isEmpty()
- || format( partition );
+ || format( partition )
+ || flags( partition ) != partition->activeFlags();
}
} // namespace
diff --git a/src/modules/partition/core/PartitionInfo.h b/src/modules/partition/core/PartitionInfo.h
index 2474a3a2d..9003bf997 100644
--- a/src/modules/partition/core/PartitionInfo.h
+++ b/src/modules/partition/core/PartitionInfo.h
@@ -21,6 +21,8 @@
#include
#include
+#include
+
class Partition;
/**
@@ -45,6 +47,9 @@ void setMountPoint( Partition* partition, const QString& value );
bool format( Partition* partition );
void setFormat( Partition* partition, bool value );
+PartitionTable::Flags flags( const Partition* partition );
+void setFlags( Partition* partition, PartitionTable::Flags f );
+
void reset( Partition* partition );
/**
diff --git a/src/modules/partition/gui/CreatePartitionDialog.cpp b/src/modules/partition/gui/CreatePartitionDialog.cpp
index 5952a61a1..439583be9 100644
--- a/src/modules/partition/gui/CreatePartitionDialog.cpp
+++ b/src/modules/partition/gui/CreatePartitionDialog.cpp
@@ -23,6 +23,7 @@
#include "core/PartitionInfo.h"
#include "core/PartUtils.h"
#include "core/KPMHelpers.h"
+#include "gui/PartitionDialogHelpers.h"
#include "gui/PartitionSizeController.h"
#include "ui_CreatePartitionDialog.h"
@@ -56,7 +57,7 @@ static QSet< FileSystem::Type > s_unmountableFS(
FileSystem::Lvm2_PV
} );
-CreatePartitionDialog::CreatePartitionDialog( Device* device, PartitionNode* parentPartition, const QStringList& usedMountPoints, QWidget* parentWidget )
+CreatePartitionDialog::CreatePartitionDialog( Device* device, PartitionNode* parentPartition, Partition* partition, const QStringList& usedMountPoints, QWidget* parentWidget )
: QDialog( parentWidget )
, m_ui( new Ui_CreatePartitionDialog )
, m_partitionSizeController( new PartitionSizeController( this ) )
@@ -81,12 +82,7 @@ CreatePartitionDialog::CreatePartitionDialog( Device* device, PartitionNode* par
m_ui->lvNameLineEdit->setValidator(validator);
}
- QStringList mountPoints = { "/", "/boot", "/home", "/opt", "/usr", "/var" };
- if ( PartUtils::isEfiSystem() )
- mountPoints << Calamares::JobQueue::instance()->globalStorage()->value( "efiSystemPartition" ).toString();
- mountPoints.removeDuplicates();
- mountPoints.sort();
- m_ui->mountPointComboBox->addItems( mountPoints );
+ standardMountPoints( *(m_ui->mountPointComboBox), partition ? PartitionInfo::mountPoint( partition ) : QString() );
if ( device->partitionTable()->type() == PartitionTable::msdos ||
device->partitionTable()->type() == PartitionTable::msdos_sectorbased )
@@ -125,7 +121,8 @@ CreatePartitionDialog::CreatePartitionDialog( Device* device, PartitionNode* par
m_ui->fsComboBox->setCurrentIndex( defaultFsIndex );
updateMountPointUi();
- setupFlagsList();
+ setFlagList( *(m_ui->m_listFlags), static_cast< PartitionTable::Flags >( ~PartitionTable::Flags::Int(0) ), partition ? PartitionInfo::flags( partition ) : PartitionTable::Flags() );
+
// Checks the initial selection.
checkMountPointSelection();
}
@@ -137,35 +134,9 @@ CreatePartitionDialog::~CreatePartitionDialog()
PartitionTable::Flags
CreatePartitionDialog::newFlags() const
{
- PartitionTable::Flags flags;
-
- for ( int i = 0; i < m_ui->m_listFlags->count(); i++ )
- if ( m_ui->m_listFlags->item( i )->checkState() == Qt::Checked )
- flags |= static_cast< PartitionTable::Flag >(
- m_ui->m_listFlags->item( i )->data( Qt::UserRole ).toInt() );
-
- return flags;
+ return flagsFromList( *(m_ui->m_listFlags) );
}
-
-void
-CreatePartitionDialog::setupFlagsList()
-{
- int f = 1;
- QString s;
- while ( !( s = PartitionTable::flagName( static_cast< PartitionTable::Flag >( f ) ) ).isEmpty() )
- {
- QListWidgetItem* item = new QListWidgetItem( s );
- m_ui->m_listFlags->addItem( item );
- item->setFlags( Qt::ItemIsUserCheckable | Qt::ItemIsEnabled );
- item->setData( Qt::UserRole, f );
- item->setCheckState( Qt::Unchecked );
-
- f <<= 1;
- }
-}
-
-
void
CreatePartitionDialog::initMbrPartitionTypeUi()
{
@@ -246,7 +217,7 @@ CreatePartitionDialog::createPartition()
partition->setPartitionPath(m_device->deviceNode() + QStringLiteral("/") + m_ui->lvNameLineEdit->text().trimmed());
}
- PartitionInfo::setMountPoint( partition, m_ui->mountPointComboBox->currentText() );
+ PartitionInfo::setMountPoint( partition, selectedMountPoint( m_ui->mountPointComboBox ) );
PartitionInfo::setFormat( partition, true );
return partition;
@@ -283,9 +254,7 @@ CreatePartitionDialog::updateMountPointUi()
void
CreatePartitionDialog::checkMountPointSelection()
{
- const QString& selection = m_ui->mountPointComboBox->currentText();
-
- if ( m_usedMountPoints.contains( selection ) )
+ if ( m_usedMountPoints.contains( selectedMountPoint( m_ui->mountPointComboBox ) ) )
{
m_ui->labelMountPoint->setText( tr( "Mountpoint already in use. Please select another one." ) );
m_ui->buttonBox->button( QDialogButtonBox::Ok )->setEnabled( false );
@@ -334,7 +303,7 @@ CreatePartitionDialog::initFromPartitionToCreate( Partition* partition )
m_ui->fsComboBox->setCurrentText( FileSystem::nameForType( fsType ) );
// Mount point
- m_ui->mountPointComboBox->setCurrentText( PartitionInfo::mountPoint( partition ) );
+ setSelectedMountPoint( m_ui->mountPointComboBox, PartitionInfo::mountPoint( partition ) );
updateMountPointUi();
}
diff --git a/src/modules/partition/gui/CreatePartitionDialog.h b/src/modules/partition/gui/CreatePartitionDialog.h
index 6e8e9b6fd..769edb5de 100644
--- a/src/modules/partition/gui/CreatePartitionDialog.h
+++ b/src/modules/partition/gui/CreatePartitionDialog.h
@@ -42,7 +42,13 @@ class CreatePartitionDialog : public QDialog
{
Q_OBJECT
public:
- CreatePartitionDialog( Device* device, PartitionNode* parentPartition, const QStringList& usedMountPoints, QWidget* parentWidget = nullptr );
+ /**
+ * @brief Dialog for editing a new partition.
+ *
+ * For the (unlikely) case that a newly created partition is being re-edited,
+ * pass a pointer to that @p partition, otherwise pass nullptr.
+ */
+ CreatePartitionDialog( Device* device, PartitionNode* parentPartition, Partition* partition, const QStringList& usedMountPoints, QWidget* parentWidget = nullptr );
~CreatePartitionDialog();
/**
@@ -64,7 +70,6 @@ private Q_SLOTS:
void checkMountPointSelection();
private:
- void setupFlagsList();
QScopedPointer< Ui_CreatePartitionDialog > m_ui;
PartitionSizeController* m_partitionSizeController;
Device* m_device;
diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.cpp b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
index 2212c104c..c0fff50a8 100644
--- a/src/modules/partition/gui/EditExistingPartitionDialog.cpp
+++ b/src/modules/partition/gui/EditExistingPartitionDialog.cpp
@@ -28,6 +28,7 @@
#include
#include "core/PartUtils.h"
#include
+#include "gui/PartitionDialogHelpers.h"
#include
#include
@@ -55,19 +56,12 @@ EditExistingPartitionDialog::EditExistingPartitionDialog( Device* device, Partit
, m_usedMountPoints( usedMountPoints )
{
m_ui->setupUi( this );
-
- QStringList mountPoints = { "/", "/boot", "/home", "/opt", "/usr", "/var" };
- if ( PartUtils::isEfiSystem() )
- mountPoints << Calamares::JobQueue::instance()->globalStorage()->value( "efiSystemPartition" ).toString();
- mountPoints.removeDuplicates();
- mountPoints.sort();
- m_ui->mountPointComboBox->addItems( mountPoints );
+ standardMountPoints( *(m_ui->mountPointComboBox), PartitionInfo::mountPoint( partition ) );
QColor color = ColorUtils::colorForPartition( m_partition );
m_partitionSizeController->init( m_device, m_partition, color );
m_partitionSizeController->setSpinBox( m_ui->sizeSpinBox );
- m_ui->mountPointComboBox->setCurrentText( PartitionInfo::mountPoint( partition ) );
connect( m_ui->mountPointComboBox, &QComboBox::currentTextChanged,
this, &EditExistingPartitionDialog::checkMountPointSelection );
@@ -112,7 +106,7 @@ EditExistingPartitionDialog::EditExistingPartitionDialog( Device* device, Partit
m_ui->fileSystemLabel->setEnabled( m_ui->formatRadioButton->isChecked() );
m_ui->fileSystemComboBox->setEnabled( m_ui->formatRadioButton->isChecked() );
- setupFlagsList();
+ setFlagList( *(m_ui->m_listFlags), m_partition->availableFlags(), PartitionInfo::flags( m_partition ) );
}
@@ -123,44 +117,13 @@ EditExistingPartitionDialog::~EditExistingPartitionDialog()
PartitionTable::Flags
EditExistingPartitionDialog::newFlags() const
{
- PartitionTable::Flags flags;
-
- for ( int i = 0; i < m_ui->m_listFlags->count(); i++ )
- if ( m_ui->m_listFlags->item( i )->checkState() == Qt::Checked )
- flags |= static_cast< PartitionTable::Flag >(
- m_ui->m_listFlags->item( i )->data( Qt::UserRole ).toInt() );
-
- return flags;
+ return flagsFromList( *(m_ui->m_listFlags) );
}
-
-void
-EditExistingPartitionDialog::setupFlagsList()
-{
- int f = 1;
- QString s;
- while ( !( s = PartitionTable::flagName( static_cast< PartitionTable::Flag >( f ) ) ).isEmpty() )
- {
- if ( m_partition->availableFlags() & f )
- {
- QListWidgetItem* item = new QListWidgetItem( s );
- m_ui->m_listFlags->addItem( item );
- item->setFlags( Qt::ItemIsUserCheckable | Qt::ItemIsEnabled );
- item->setData( Qt::UserRole, f );
- item->setCheckState( ( m_partition->activeFlags() & f ) ?
- Qt::Checked :
- Qt::Unchecked );
- }
-
- f <<= 1;
- }
-}
-
-
void
EditExistingPartitionDialog::applyChanges( PartitionCoreModule* core )
{
- PartitionInfo::setMountPoint( m_partition, m_ui->mountPointComboBox->currentText() );
+ PartitionInfo::setMountPoint( m_partition, selectedMountPoint(m_ui->mountPointComboBox) );
qint64 newFirstSector = m_partitionSizeController->firstSector();
qint64 newLastSector = m_partitionSizeController->lastSector();
@@ -294,15 +257,13 @@ EditExistingPartitionDialog::updateMountPointPicker()
m_ui->mountPointLabel->setEnabled( canMount );
m_ui->mountPointComboBox->setEnabled( canMount );
if ( !canMount )
- m_ui->mountPointComboBox->setCurrentText( QString() );
+ setSelectedMountPoint( m_ui->mountPointComboBox, QString() );
}
void
EditExistingPartitionDialog::checkMountPointSelection()
{
- const QString& selection = m_ui->mountPointComboBox->currentText();
-
- if ( m_usedMountPoints.contains( selection ) )
+ if ( m_usedMountPoints.contains( selectedMountPoint( m_ui->mountPointComboBox ) ) )
{
m_ui->labelMountPoint->setText( tr( "Mountpoint already in use. Please select another one." ) );
m_ui->buttonBox->button( QDialogButtonBox::Ok )->setEnabled( false );
diff --git a/src/modules/partition/gui/EditExistingPartitionDialog.h b/src/modules/partition/gui/EditExistingPartitionDialog.h
index b933e90ce..106ba6639 100644
--- a/src/modules/partition/gui/EditExistingPartitionDialog.h
+++ b/src/modules/partition/gui/EditExistingPartitionDialog.h
@@ -56,7 +56,6 @@ private:
QStringList m_usedMountPoints;
PartitionTable::Flags newFlags() const;
- void setupFlagsList();
void replacePartResizerWidget();
void updateMountPointPicker();
};
diff --git a/src/modules/partition/gui/PartitionDialogHelpers.cpp b/src/modules/partition/gui/PartitionDialogHelpers.cpp
new file mode 100644
index 000000000..3dcf41f58
--- /dev/null
+++ b/src/modules/partition/gui/PartitionDialogHelpers.cpp
@@ -0,0 +1,118 @@
+/* === This file is part of Calamares - ===
+ *
+ * Copyright 2014, Aurélien Gâteau
+ * Copyright 2016, Teo Mrnjavac
+ * Copyright 2018, Adriaan de Groot
+ *
+ * Calamares is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Calamares is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Calamares. If not, see .
+ */
+
+#include "PartitionDialogHelpers.h"
+
+#include "core/PartUtils.h"
+
+#include "GlobalStorage.h"
+#include "JobQueue.h"
+#include "utils/Logger.h"
+
+#include
+#include
+
+QStringList
+standardMountPoints()
+{
+ QStringList mountPoints{ "/", "/boot", "/home", "/opt", "/srv", "/usr", "/var" };
+ if ( PartUtils::isEfiSystem() )
+ mountPoints << Calamares::JobQueue::instance()->globalStorage()->value( "efiSystemPartition" ).toString();
+ mountPoints.removeDuplicates();
+ mountPoints.sort();
+ return mountPoints;
+}
+
+void
+standardMountPoints(QComboBox& combo)
+{
+ combo.clear();
+ combo.addItem( combo.tr( "(no mount point)" ) );
+ combo.addItems( standardMountPoints() );
+}
+
+void
+standardMountPoints(QComboBox& combo, const QString& selected)
+{
+ standardMountPoints( combo );
+ setSelectedMountPoint( combo, selected );
+}
+
+QString
+selectedMountPoint(QComboBox& combo)
+{
+ if ( combo.currentIndex() == 0 )
+ return QString();
+ return combo.currentText();
+}
+
+void
+setSelectedMountPoint(QComboBox& combo, const QString& selected)
+{
+ if ( selected.isEmpty() )
+ combo.setCurrentIndex( 0 ); // (no mount point)
+ else
+ {
+ for ( int i = 0; i < combo.count(); ++i )
+ if ( selected == combo.itemText( i ) )
+ {
+ combo.setCurrentIndex( i );
+ return;
+ }
+ combo.addItem( selected );
+ combo.setCurrentIndex( combo.count() - 1);
+ }
+}
+
+
+PartitionTable::Flags
+flagsFromList( const QListWidget& list )
+{
+ PartitionTable::Flags flags;
+
+ for ( int i = 0; i < list.count(); i++ )
+ if ( list.item( i )->checkState() == Qt::Checked )
+ flags |= static_cast< PartitionTable::Flag >(
+ list.item( i )->data( Qt::UserRole ).toInt() );
+
+ return flags;
+}
+
+void
+setFlagList( QListWidget& list, PartitionTable::Flags available, PartitionTable::Flags checked )
+{
+ int f = 1;
+ QString s;
+ while ( !( s = PartitionTable::flagName( static_cast< PartitionTable::Flag >( f ) ) ).isEmpty() )
+ {
+ if ( available & f )
+ {
+ QListWidgetItem* item = new QListWidgetItem( s );
+ list.addItem( item );
+ item->setFlags( Qt::ItemIsUserCheckable | Qt::ItemIsEnabled );
+ item->setData( Qt::UserRole, f );
+ item->setCheckState( ( checked & f ) ?
+ Qt::Checked :
+ Qt::Unchecked );
+ }
+
+ f <<= 1;
+ }
+}
diff --git a/src/modules/partition/gui/PartitionDialogHelpers.h b/src/modules/partition/gui/PartitionDialogHelpers.h
new file mode 100644
index 000000000..594142993
--- /dev/null
+++ b/src/modules/partition/gui/PartitionDialogHelpers.h
@@ -0,0 +1,68 @@
+/* === This file is part of Calamares - ===
+ *
+ * Copyright 2014, Aurélien Gâteau
+ * Copyright 2016, Teo Mrnjavac
+ * Copyright 2018, Adriaan de Groot
+ *
+ * Calamares is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Calamares is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Calamares. If not, see .
+ */
+
+#ifndef PARTITION_GUI_PARTITIONDIALOGHELPERS
+#define PARTITION_GUI_PARTITIONDIALOGHELPERS
+
+#include
+
+#include
+
+class QComboBox;
+class QListWidget;
+
+/**
+ * Returns a list of standard mount points (e.g. /, /usr, ...).
+ * This also includes the EFI mount point if that is necessary
+ * on the target system.
+ */
+QStringList standardMountPoints();
+
+/**
+ * Clears the combobox and fills it with "(no mount point)"
+ * and the elements of standardMountPoints(), above.
+ */
+void standardMountPoints( QComboBox& );
+
+/**
+ * As above, but also sets the displayed mount point to @p selected,
+ * unless it is empty, in which case "(no mount point)" is chosen.
+ */
+void standardMountPoints( QComboBox&, const QString& selected );
+
+/**
+ * Get the mount point selected in the combo box (which should
+ * have been set up with standardMountPoints(), above); this
+ * will map the topmost item (i.e. "(no mount point)") back
+ * to blank, to allow easy detection of no-mount-selected.
+ */
+QString selectedMountPoint( QComboBox& combo );
+static inline QString selectedMountPoint(QComboBox* combo) { return selectedMountPoint(*combo); }
+
+void setSelectedMountPoint( QComboBox& combo, const QString& selected );
+static inline void setSelectedMountPoint(QComboBox* combo, const QString& selected) { setSelectedMountPoint( *combo, selected); }
+
+/**
+ * Get the flags that have been checked in the list widget.
+ */
+PartitionTable::Flags flagsFromList( const QListWidget& list );
+void setFlagList( QListWidget& list, PartitionTable::Flags available, PartitionTable::Flags checked );
+
+#endif
diff --git a/src/modules/partition/gui/PartitionPage.cpp b/src/modules/partition/gui/PartitionPage.cpp
index c521604fb..426667a08 100644
--- a/src/modules/partition/gui/PartitionPage.cpp
+++ b/src/modules/partition/gui/PartitionPage.cpp
@@ -34,6 +34,7 @@
#include "ui_PartitionPage.h"
#include "ui_CreatePartitionTableDialog.h"
+#include "utils/Logger.h"
#include "utils/Retranslator.h"
#include "Branding.h"
#include "JobQueue.h"
@@ -178,6 +179,29 @@ PartitionPage::onNewPartitionTableClicked()
updateBootLoaderIndex();
}
+bool
+PartitionPage::checkCanCreate( Device* device )
+{
+ auto table = device->partitionTable();
+
+ if ( table->type() == PartitionTable::msdos ||table->type() == PartitionTable::msdos_sectorbased )
+ {
+ cDebug() << "Checking MSDOS partition" << table->numPrimaries() << "primaries, max" << table->maxPrimaries();
+
+ if ( ( table->numPrimaries() >= table->maxPrimaries() ) && !table->hasExtended() )
+ {
+ QMessageBox::warning( this, tr( "Can not create new partition" ),
+ tr( "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." ).arg( device->name() ).arg( table->numPrimaries() )
+ );
+ return false;
+ }
+ return true;
+ }
+ else
+ return true; // GPT is fine
+}
+
void
PartitionPage::onCreateClicked()
{
@@ -188,8 +212,12 @@ PartitionPage::onCreateClicked()
Partition* partition = model->partitionForIndex( index );
Q_ASSERT( partition );
+ if ( !checkCanCreate( model->device() ) )
+ return;
+
QPointer< CreatePartitionDialog > dlg = new CreatePartitionDialog( model->device(),
partition->parent(),
+ nullptr,
getCurrentUsedMountpoints(),
this );
dlg->initFromFreeSpace( partition );
@@ -285,6 +313,7 @@ PartitionPage::updatePartitionToCreate( Device* device, Partition* partition )
QPointer< CreatePartitionDialog > dlg = new CreatePartitionDialog( device,
partition->parent(),
+ partition,
mountPoints,
this );
dlg->initFromPartitionToCreate( partition );
diff --git a/src/modules/partition/gui/PartitionPage.h b/src/modules/partition/gui/PartitionPage.h
index 24cf65675..d7c823a61 100644
--- a/src/modules/partition/gui/PartitionPage.h
+++ b/src/modules/partition/gui/PartitionPage.h
@@ -62,6 +62,14 @@ private:
void updateFromCurrentDevice();
void updateBootLoaderIndex();
+ /**
+ * @brief Check if a new partition can be created (as primary) on the device.
+ *
+ * Returns true if a new partition can be created on the device. Provides
+ * a warning popup and returns false if it cannot.
+ */
+ bool checkCanCreate( Device* );
+
QStringList getCurrentUsedMountpoints();
QMutex m_revertMutex;
diff --git a/src/modules/users/CreateUserJob.cpp b/src/modules/users/CreateUserJob.cpp
index 727cae2ae..d4d299e39 100644
--- a/src/modules/users/CreateUserJob.cpp
+++ b/src/modules/users/CreateUserJob.cpp
@@ -149,8 +149,6 @@ CreateUserJob::exec()
int ec = CalamaresUtils::System::instance()->
targetEnvCall( { "useradd",
"-m",
- "-s",
- "/bin/bash",
"-U",
"-c",
m_fullName,
diff --git a/src/modules/welcome/WelcomePage.cpp b/src/modules/welcome/WelcomePage.cpp
index 16e44d72e..0a1d2fb7d 100644
--- a/src/modules/welcome/WelcomePage.cpp
+++ b/src/modules/welcome/WelcomePage.cpp
@@ -141,6 +141,9 @@ struct LocaleLabel
QString sortKey = QLocale::languageToString( m_locale.language() );
QString label = m_locale.nativeLanguageName();
+ if ( label.isEmpty() )
+ label = QString( QLatin1Literal( "* %1 (%2)" ) ).arg( locale, sortKey );
+
if ( locale.contains( '_' ) && QLocale::countriesForLanguage( m_locale.language() ).count() > 2 )
{
QLatin1Literal countrySuffix( " (%1)" );