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 - + 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. الح&جم: - + En&crypt تشفير - + Logical منطقيّ - + Primary أساسيّ - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. الشّارات: - + Mountpoint already in use. Please select another one. @@ -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? أمتأكّد من إنشاء جدول تقسيم جديد على %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + 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 @@ L'instalador colará y perderánse toles camudancies. Tama&ñu: - + En&crypt &Cifrar - + Logical Llóxica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. Puntu de montaxe yá n'usu. Esbilla otru, por favor. @@ -858,7 +858,7 @@ L'instalador colará y perderánse toles camudancies. Banderes: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? ¿De xuru que quies crear una tabla particiones nueva en %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + 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. @@ -549,27 +549,27 @@ The installer will quit and all changes will be lost. Раз&мер: - + En&crypt En%crypt - + Logical Логическа - + Primary Главна - + GPT GPT - + Mountpoint already in use. Please select another one. Точката за монтиране вече се използва. Моля изберете друга. @@ -859,7 +859,7 @@ The installer will quit and all changes will be lost. Флагове: - + Mountpoint already in use. Please select another one. Точката за монтиране вече се използва. Моля изберете друга. @@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost. Инсталирай &устройството за начално зареждане върху: - + Are you sure you want to create a new partition table on %1? Сигурни ли сте че искате да създадете нова таблица на дяловете върху %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 @@ -2569,7 +2579,7 @@ Output: - + %1 support %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 - + Could not run command. No s'ha pogut executar l'ordre. - - No rootMountPoint is defined, so command cannot be run in the target environment. - No hi ha punt de muntatge d'arrel definit; per tant, no es pot executar l'ordre a l'entorn de destinació. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ L'instal·lador es tancarà i tots els canvis es perdran. Mi&da: - + En&crypt &Xifra - + Logical Lògica - + Primary Primària - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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. Cannot obtain random numbers from the RNG device - 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: - + Are you sure you want to create a new partition table on %1? Esteu segurs que voleu crear una nova taula de particions a %1? + + + Can not create new partition + No es pot crear la partició nova + + + + 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 @@ -2107,17 +2117,17 @@ Sortida: Set hostname %1 - Assigna el nom de l'equip %1 + Estableix el nom d'amfitrió %1 Set hostname <strong>%1</strong>. - Establir el nom de l'hoste <strong>%1</strong>. + Estableix el nom d'amfitrió <strong>%1</strong>. Setting hostname %1. - Establint el nom de l'hoste %1. + Establint el nom d'amfitrió %1. @@ -2129,7 +2139,7 @@ Sortida: Cannot write hostname to target system - 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: Cannot disable root account. - No es pot inhabilitar el compte d'arrel. + No es pot inhabilitar el compte de root. @@ -2280,7 +2290,7 @@ Sortida: Cannot set password for user %1. - 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: Your hostname is too short. - El nom d'usuari és massa curt. + El nom d'amfitrió és massa curt. @@ -2501,7 +2511,7 @@ Sortida: Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - 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>Welcome to the %1 installer.</h1> - <h1>Benvinguts a l'instal·lador %1.</h1> + <h1>Benvingut a l'instal·lador de %1.</h1> <h1>Welcome to the Calamares installer for %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 &lt;teo@kde.org&gt;<br/>Copyright 2017, Adriaan de Groot &lt;groot@kde.org&gt;<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 support %1 suport @@ -2581,7 +2591,7 @@ Sortida: Welcome - 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 - + Could not run command. Nedaří se spustit příkaz. - - No rootMountPoint is defined, so command cannot be run in the target environment. - 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í. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ Instalační program bude ukončen a všechny změny ztraceny. &Velikost: - + En&crypt Š&ifrovat - + Logical Logický - + Primary Primární - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Opravdu chcete na %1 vytvořit novou tabulku oddílů? + + + 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 @@ Výstup: <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 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 support %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 - + Could not run command. Kunne ikke køre kommando. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Der er ikke defineret nogen rootMountPoint, så kommandoen kan ikke køre i målmiljøet. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.&Størrelse: - + En&crypt Kryp&tér - + Logical Logisk - + Primary Primær - + GPT GPT - + Mountpoint already in use. Please select another one. Monteringspunktet er allerede i brug. Vælg venligst et andet. @@ -858,7 +858,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.Flag: - + Mountpoint already in use. Please select another one. 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å: - + Are you sure you want to create a new partition table on %1? Er du sikker på, at du vil oprette en ny partitionstabel på %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/>til %3</strong><br/><br/>Ophavsret 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Ophavsret 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 %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 - + 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 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren. Grö&sse: - + En&crypt Verschlüsseln - + Logical Logisch - + Primary Primär - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten? + + + 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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + 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. &Μέγεθος: - + En&crypt - + Logical Λογική - + Primary Πρωτεύουσα - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. Σημαίες: - + Mountpoint already in use. Please select another one. @@ -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? Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support Υποστήριξη %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. Could not run command. - - No rootMountPoint is defined, so command cannot be run in the target environment. - 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. + 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 En&crypt - + Logical Logical - + Primary Primary - + GPT GPT - + Mountpoint already in use. Please select another one. 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. 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? Are you sure you want to create a new partition table on %1? + + + Can not create new partition + 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. + 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 &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %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 - + 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 Logical - + Primary Primary - + GPT 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. - + Are you sure you want to create a new partition table on %1? 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 @@ -2568,7 +2578,7 @@ Output: - + %1 support %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 + + + The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. + + + + + This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. + + + + + This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. + + + + + BootLoaderModel + + + Master Boot Record of %1 + + + + + Boot Partition + + + + + System Partition + + + + + Do not install a boot loader + + + + + %1 (%2) + %1(%2) + + + + Calamares::DebugWindow + + + Form + + + + + GlobalStorage + + + + + JobQueue + + + + + Modules + + + + + Type: + + + + + + none + + + + + Interface: + + + + + Tools + Iloj + + + + Debug information + + + + + Calamares::ExecutionViewStep + + + Install + Instali + + + + Calamares::JobThread + + + Done + Finita + + + + Calamares::ProcessJob + + + Run command %1 %2 + + + + + Running command %1 %2 + + + + + Calamares::PythonJob + + + Running %1 operation. + + + + + Bad working directory path + + + + + Working directory %1 for python job %2 is not readable. + + + + + Bad main script file + + + + + Main script file %1 for python job %2 is not readable. + + + + + Boost.Python error in job "%1". + + + + + Calamares::ViewManager + + + &Back + + + + + + &Next + + + + + + &Cancel + &Nuligi + + + + + Cancel installation without changing the system. + Nuligi instalado sen ŝanĝante la sistemo. + + + + &Install + &Instali + + + + Cancel installation? + Nuligi instalado? + + + + Do you really want to cancel the current install process? +The installer will quit and all changes will be lost. + Ĉu vi vere volas nuligi la instalan procedon? +La instalilo forlasos kaj ĉiuj ŝanĝoj perdos. + + + + &Yes + &Jes + + + + &No + &Ne + + + + &Close + &Fermi + + + + Continue with setup? + + + + + The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> + + + + + &Install now + &Instali nun + + + + Go &back + + + + + &Done + &Finita + + + + The installation is complete. Close the installer. + + + + + Error + Eraro + + + + Installation Failed + + + + + CalamaresPython::Helper + + + Unknown exception type + + + + + unparseable Python error + + + + + unparseable Python traceback + + + + + Unfetchable Python error. + + + + + CalamaresWindow + + + %1 Installer + %1 Instalilo + + + + Show debug information + + + + + CheckerWidget + + + This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> + + + + + This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. + + + + + This program will ask you some questions and set up %2 on your computer. + + + + + For best results, please ensure that this computer: + + + + + System requirements + + + + + ChoicePage + + + Form + + + + + After: + + + + + <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. + + + + + Boot loader location: + + + + + %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. + + + + + Select storage de&vice: + + + + + + + + Current: + + + + + Reuse %1 as home partition for %2. + + + + + <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> + + + + + <strong>Select a partition to install on</strong> + + + + + An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + + + + + The EFI system partition at %1 will be used for starting %2. + + + + + EFI system partition: + + + + + This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + + + + <strong>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. + + + + + This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + + + + <strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. + + + + + + + + <strong>Replace a partition</strong><br/>Replaces a partition with %1. + + + + + This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. + + + + + ClearMountsJob + + + Clear mounts for partitioning operations on %1 + + + + + Clearing mounts for partitioning operations on %1. + + + + + Cleared all mounts for %1 + + + + + ClearTempMountsJob + + + Clear all temporary mounts. + + + + + Clearing all temporary mounts. + + + + + Cannot get list of temporary mounts. + + + + + Cleared all temporary mounts. + + + + + CommandList + + + Could not run command. + + + + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + + + + + ContextualProcessJob + + + Contextual Processes Job + + + + + CreatePartitionDialog + + + Create a Partition + + + + + MiB + + + + + Partition &Type: + + + + + &Primary + + + + + E&xtended + + + + + Fi&le System: + + + + + LVM LV name + + + + + Flags: + + + + + &Mount Point: + + + + + Si&ze: + + + + + En&crypt + + + + + Logical + + + + + Primary + + + + + GPT + + + + + Mountpoint already in use. Please select another one. + + + + + CreatePartitionJob + + + Create new %2MB partition on %4 (%3) with file system %1. + + + + + Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. + + + + + Creating new %1 partition on %2. + + + + + The installer failed to create partition on disk '%1'. + + + + + CreatePartitionTableDialog + + + Create Partition Table + + + + + Creating a new partition table will delete all existing data on the disk. + + + + + What kind of partition table do you want to create? + + + + + Master Boot Record (MBR) + + + + + GUID Partition Table (GPT) + + + + + CreatePartitionTableJob + + + Create new %1 partition table on %2. + + + + + Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). + + + + + Creating new %1 partition table on %2. + + + + + The installer failed to create a partition table on %1. + + + + + CreateUserJob + + + Create user %1 + + + + + Create user <strong>%1</strong>. + + + + + Creating user %1. + + + + + Sudoers dir is not writable. + + + + + Cannot create sudoers file for writing. + + + + + Cannot chmod sudoers file. + + + + + Cannot open groups file for reading. + + + + + Cannot create user %1. + + + + + useradd terminated with error code %1. + + + + + Cannot add user %1 to groups: %2. + + + + + usermod terminated with error code %1. + + + + + Cannot set home directory ownership for user %1. + + + + + chown terminated with error code %1. + + + + + DeletePartitionJob + + + Delete partition %1. + + + + + Delete partition <strong>%1</strong>. + + + + + Deleting partition %1. + + + + + The installer failed to delete partition %1. + + + + + DeviceInfoWidget + + + The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. + + + + + This device has a <strong>%1</strong> partition table. + + + + + This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. + + + + + This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. + + + + + <br><br>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. + + + + + <br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. + + + + + DeviceModel + + + %1 - %2 (%3) + + + + + DracutLuksCfgJob + + + Write LUKS configuration for Dracut to %1 + + + + + Skip writing LUKS configuration for Dracut: "/" partition is not encrypted + + + + + Failed to open %1 + + + + + DummyCppJob + + + Dummy C++ Job + + + + + EditExistingPartitionDialog + + + Edit Existing Partition + + + + + Content: + + + + + &Keep + + + + + Format + + + + + Warning: Formatting the partition will erase all existing data. + + + + + &Mount Point: + + + + + Si&ze: + + + + + MiB + + + + + Fi&le System: + + + + + Flags: + + + + + Mountpoint already in use. Please select another one. + + + + + EncryptWidget + + + Form + + + + + En&crypt system + + + + + Passphrase + + + + + Confirm passphrase + + + + + Please enter the same passphrase in both boxes. + + + + + FillGlobalStorageJob + + + Set partition information + + + + + Install %1 on <strong>new</strong> %2 system partition. + + + + + Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. + + + + + Install %2 on %3 system partition <strong>%1</strong>. + + + + + Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. + + + + + Install boot loader on <strong>%1</strong>. + + + + + Setting up mount points. + + + + + FinishedPage + + + Form + + + + + <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style=" font-style:italic;">Done</span> or close the installer.</p></body></html> + + + + + &Restart now + + + + + <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. + + + + + <h1>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. + + + + + FinishedViewStep + + + Finish + + + + + Installation Complete + + + + + The installation of %1 is complete. + + + + + FormatPartitionJob + + + Format partition %1 (file system: %2, size: %3 MB) on %4. + + + + + Format <strong>%3MB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. + + + + + Formatting partition %1 with file system %2. + + + + + The installer failed to format partition %1 on disk '%2'. + + + + + InteractiveTerminalPage + + + Konsole not installed + + + + + Please install KDE Konsole and try again! + + + + + Executing script: &nbsp;<code>%1</code> + + + + + InteractiveTerminalViewStep + + + Script + + + + + KeyboardPage + + + Set keyboard model to %1.<br/> + + + + + Set keyboard layout to %1/%2. + + + + + KeyboardViewStep + + + Keyboard + + + + + LCLocaleDialog + + + System locale setting + + + + + The system locale setting affects the language and character set for some command line user interface elements.<br/>The current setting is <strong>%1</strong>. + + + + + &Cancel + &Nuligi + + + + &OK + + + + + LicensePage + + + Form + + + + + I accept the terms and conditions above. + + + + + <h1>License Agreement</h1>This setup procedure will install proprietary software that is subject to licensing terms. + + + + + Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, the setup procedure cannot continue. + + + + + <h1>License Agreement</h1>This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. + + + + + Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. + + + + + <strong>%1 driver</strong><br/>by %2 + %1 is an untranslatable product name, example: Creative Audigy driver + + + + + <strong>%1 graphics driver</strong><br/><font color="Grey">by %2</font> + %1 is usually a vendor name, example: Nvidia graphics driver + + + + + <strong>%1 browser plugin</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1 codec</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1 package</strong><br/><font color="Grey">by %2</font> + + + + + <strong>%1</strong><br/><font color="Grey">by %2</font> + + + + + <a href="%1">view license agreement</a> + + + + + LicenseViewStep + + + License + + + + + LocalePage + + + The system language will be set to %1. + + + + + The numbers and dates locale will be set to %1. + + + + + Region: + + + + + Zone: + + + + + + &Change... + + + + + Set timezone to %1/%2.<br/> + + + + + %1 (%2) + Language (Country) + %1(%2) + + + + LocaleViewStep + + + Loading location data... + + + + + Location + + + + + NetInstallPage + + + Name + + + + + Description + + + + + Network Installation. (Disabled: Unable to fetch package lists, check your network connection) + + + + + Network Installation. (Disabled: Received invalid groups data) + + + + + NetInstallViewStep + + + Package selection + + + + + PWQ + + + Password is too short + + + + + Password is too long + + + + + Password is too weak + + + + + Memory allocation error when setting '%1' + + + + + Memory allocation error + + + + + The password is the same as the old one + + + + + The password is a palindrome + + + + + The password differs with case changes only + + + + + The password is too similar to the old one + + + + + The password contains the user name in some form + + + + + The password contains words from the real name of the user in some form + + + + + The password contains forbidden words in some form + + + + + The password contains less than %1 digits + + + + + The password contains too few digits + + + + + The password contains less than %1 uppercase letters + + + + + The password contains too few uppercase letters + + + + + The password contains less than %1 lowercase letters + + + + + The password contains too few lowercase letters + + + + + The password contains less than %1 non-alphanumeric characters + + + + + The password contains too few non-alphanumeric characters + + + + + The password is shorter than %1 characters + + + + + The password is too short + + + + + The password is just rotated old one + + + + + The password contains less than %1 character classes + + + + + The password does not contain enough character classes + + + + + The password contains more than %1 same characters consecutively + + + + + The password contains too many same characters consecutively + + + + + The password contains more than %1 characters of the same class consecutively + + + + + The password contains too many characters of the same class consecutively + + + + + The password contains monotonic sequence longer than %1 characters + + + + + The password contains too long of a monotonic character sequence + + + + + No password supplied + + + + + Cannot obtain random numbers from the RNG device + + + + + Password generation failed - required entropy too low for settings + + + + + The password fails the dictionary check - %1 + + + + + The password fails the dictionary check + + + + + Unknown setting - %1 + + + + + Unknown setting + + + + + Bad integer value of setting - %1 + + + + + Bad integer value + + + + + Setting %1 is not of integer type + + + + + Setting is not of integer type + + + + + Setting %1 is not of string type + + + + + Setting is not of string type + + + + + Opening the configuration file failed + + + + + The configuration file is malformed + + + + + Fatal failure + + + + + Unknown error + + + + + Page_Keyboard + + + Form + + + + + Keyboard Model: + + + + + Type here to test your keyboard + + + + + Page_UserSetup + + + Form + + + + + What is your name? + + + + + What name do you want to use to log in? + + + + + + + font-weight: normal + + + + + <small>If more than one person will use this computer, you can set up multiple accounts after installation.</small> + + + + + Choose a password to keep your account safe. + + + + + <small>Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.</small> + + + + + What is the name of this computer? + + + + + <small>This name will be used if you make the computer visible to others on a network.</small> + + + + + Log in automatically without asking for the password. + + + + + Use the same password for the administrator account. + + + + + Choose a password for the administrator account. + + + + + <small>Enter the same password twice, so that it can be checked for typing errors.</small> + + + + + PartitionLabelsView + + + Root + + + + + Home + + + + + Boot + + + + + EFI system + + + + + Swap + + + + + New partition for %1 + + + + + New partition + + + + + %1 %2 + + + + + PartitionModel + + + + Free Space + + + + + + New partition + + + + + Name + + + + + File System + + + + + Mount Point + + + + + Size + + + + + PartitionPage + + + Form + + + + + Storage de&vice: + + + + + &Revert All Changes + + + + + New Partition &Table + + + + + &Create + + + + + &Edit + + + + + &Delete + + + + + 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 + + + Gathering system information... + + + + + Partitions + + + + + Install %1 <strong>alongside</strong> another operating system. + + + + + <strong>Erase</strong> disk and install %1. + + + + + <strong>Replace</strong> a partition with %1. + + + + + <strong>Manual</strong> partitioning. + + + + + Install %1 <strong>alongside</strong> another operating system on disk <strong>%2</strong> (%3). + + + + + <strong>Erase</strong> disk <strong>%2</strong> (%3) and install %1. + + + + + <strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. + + + + + <strong>Manual</strong> partitioning on disk <strong>%1</strong> (%2). + + + + + Disk <strong>%1</strong> (%2) + + + + + Current: + + + + + After: + + + + + No EFI system partition configured + + + + + An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>esp</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. + + + + + EFI system partition flag not set + + + + + An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>esp</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. + + + + + Boot partition not encrypted + + + + + A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. + + + + + PlasmaLnfJob + + + Plasma Look-and-Feel Job + + + + + + Could not select KDE Plasma Look-and-Feel package + + + + + PlasmaLnfPage + + + Form + + + + + Placeholder + + + + + Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. + + + + + PlasmaLnfViewStep + + + Look-and-Feel + + + + + ProcessResult + + + +There was no output from the command. + + + + + +Output: + + + + + + External command crashed. + + + + + Command <i>%1</i> crashed. + + + + + External command failed to start. + + + + + Command <i>%1</i> failed to start. + + + + + Internal error when starting command. + + + + + Bad parameters for process job call. + + + + + External command failed to finish. + + + + + Command <i>%1</i> failed to finish in %2 seconds. + + + + + External command finished with errors. + + + + + Command <i>%1</i> finished with exit code %2. + + + + + QObject + + + Default Keyboard Model + + + + + + Default + + + + + unknown + + + + + extended + + + + + unformatted + + + + + swap + + + + + Unpartitioned space or unknown partition table + + + + + ReplaceWidget + + + Form + + + + + Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. + + + + + The selected item does not appear to be a valid partition. + + + + + %1 cannot be installed on empty space. Please select an existing partition. + + + + + %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. + + + + + %1 cannot be installed on this partition. + + + + + Data partition (%1) + + + + + Unknown system partition (%1) + + + + + %1 system partition (%2) + + + + + <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. + + + + + <strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. + + + + + + + <strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. + + + + + The EFI system partition at %1 will be used for starting %2. + + + + + EFI system partition: + + + + + RequirementsChecker + + + Gathering system information... + + + + + has at least %1 GB available drive space + + + + + There is not enough drive space. At least %1 GB is required. + + + + + has at least %1 GB working memory + + + + + The system does not have enough working memory. At least %1 GB is required. + + + + + is plugged in to a power source + + + + + The system is not plugged in to a power source. + + + + + is connected to the Internet + + + + + The system is not connected to the Internet. + + + + + The installer is not running with administrator rights. + + + + + The screen is too small to display the installer. + + + + + ResizePartitionJob + + + Resize partition %1. + + + + + Resize <strong>%2MB</strong> partition <strong>%1</strong> to <strong>%3MB</strong>. + + + + + Resizing %2MB partition %1 to %3MB. + + + + + The installer failed to resize partition %1 on disk '%2'. + + + + + ScanningDialog + + + Scanning storage devices... + + + + + Partitioning + + + + + SetHostNameJob + + + Set hostname %1 + + + + + Set hostname <strong>%1</strong>. + + + + + Setting hostname %1. + + + + + + Internal Error + + + + + + Cannot write hostname to target system + + + + + SetKeyboardLayoutJob + + + Set keyboard model to %1, layout to %2-%3 + + + + + Failed to write keyboard configuration for the virtual console. + + + + + + + Failed to write to %1 + + + + + Failed to write keyboard configuration for X11. + + + + + Failed to write keyboard configuration to existing /etc/default directory. + + + + + SetPartFlagsJob + + + Set flags on partition %1. + + + + + Set flags on %1MB %2 partition. + + + + + Set flags on new partition. + + + + + Clear flags on partition <strong>%1</strong>. + + + + + Clear flags on %1MB <strong>%2</strong> partition. + + + + + Clear flags on new partition. + + + + + Flag partition <strong>%1</strong> as <strong>%2</strong>. + + + + + Flag %1MB <strong>%2</strong> partition as <strong>%3</strong>. + + + + + Flag new partition as <strong>%1</strong>. + + + + + Clearing flags on partition <strong>%1</strong>. + + + + + Clearing flags on %1MB <strong>%2</strong> partition. + + + + + Clearing flags on new partition. + + + + + Setting flags <strong>%2</strong> on partition <strong>%1</strong>. + + + + + Setting flags <strong>%3</strong> on %1MB <strong>%2</strong> partition. + + + + + Setting flags <strong>%1</strong> on new partition. + + + + + The installer failed to set flags on partition %1. + + + + + SetPasswordJob + + + Set password for user %1 + + + + + Setting password for user %1. + + + + + Bad destination system path. + + + + + rootMountPoint is %1 + + + + + Cannot disable root account. + + + + + passwd terminated with error code %1. + + + + + Cannot set password for user %1. + + + + + usermod terminated with error code %1. + + + + + SetTimezoneJob + + + Set timezone to %1/%2 + + + + + Cannot access selected timezone path. + + + + + Bad path: %1 + + + + + Cannot set timezone. + + + + + Link creation failed, target: %1; link name: %2 + + + + + Cannot set timezone, + + + + + Cannot open /etc/timezone for writing + + + + + ShellProcessJob + + + Shell Processes Job + + + + + SlideCounter + + + %L1 / %L2 + slide counter, %1 of %2 (numeric) + + + + + SummaryPage + + + This is an overview of what will happen once you start the install procedure. + + + + + SummaryViewStep + + + Summary + + + + + TrackingInstallJob + + + Installation feedback + + + + + Sending installation feedback. + + + + + Internal error in install-tracking. + + + + + HTTP request timed out. + + + + + TrackingMachineNeonJob + + + Machine feedback + + + + + Configuring machine feedback. + + + + + + Error in machine feedback configuration. + + + + + Could not configure machine feedback correctly, script error %1. + + + + + Could not configure machine feedback correctly, Calamares error %1. + + + + + TrackingPage + + + Form + + + + + Placeholder + + + + + <html><head/><body><p>By selecting this, you will send <span style=" font-weight:600;">no information at all</span> about your installation.</p></body></html> + + + + + + + TextLabel + + + + + + + ... + + + + + <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Click here for more information about user feedback</span></a></p></body></html> + + + + + Install tracking helps %1 to see how many users they have, what hardware they install %1 to and (with the last two options below), get continuous information about preferred applications. To see what will be sent, please click the help icon next to each area. + + + + + By selecting this you will send information about your installation and hardware. This information will <b>only be sent once</b> after the installation finishes. + + + + + By selecting this you will <b>periodically</b> send information about your installation, hardware and applications, to %1. + + + + + By selecting this you will <b>regularly</b> send information about your installation, hardware, applications and usage patterns, to %1. + + + + + TrackingViewStep + + + Feedback + + + + + UsersPage + + + Your username is too long. + + + + + Your username contains invalid characters. Only lowercase letters and numbers are allowed. + + + + + Your hostname is too short. + + + + + Your hostname is too long. + + + + + Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. + + + + + + Your passwords do not match! + + + + + UsersViewStep + + + Users + + + + + WelcomePage + + + Form + + + + + &Language: + + + + + &Release notes + + + + + &Known issues + + + + + &Support + + + + + &About + + + + + <h1>Welcome to the %1 installer.</h1> + + + + + <h1>Welcome to the Calamares installer for %1.</h1> + + + + + About %1 installer + + + + + <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. + + + + + %1 support + + + + + WelcomeViewStep + + + Welcome + + + + \ 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 - + Could not run command. No se pudo ejecutar el comando. - - No rootMountPoint is defined, so command cannot be run in the target environment. - No se ha definido ningún rootMountPoint (punto de montaje de root), así que el comando no se puede ejecutar en el entorno objetivo. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -549,27 +549,27 @@ Saldrá del instalador y se perderán todos los cambios. &Tamaño: - + En&crypt &Cifrar - + Logical Lógica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? ¿Está seguro de querer crear una nueva tabla de particiones en %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 @@ -2572,7 +2582,7 @@ Salida: <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>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 support %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 - + 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. @@ -551,27 +551,27 @@ El instalador terminará y se perderán todos los cambios. &Tamaño: - + En&crypt - + Logical Lógica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -861,7 +861,7 @@ El instalador terminará y se perderán todos los cambios. Banderas: - + Mountpoint already in use. Please select another one. @@ -1685,10 +1685,20 @@ El instalador terminará y se perderán todos los cambios. - + Are you sure you want to create a new partition table on %1? ¿Está seguro de querer crear una nueva tabla de particiones en %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 @@ -2572,7 +2582,7 @@ Output: - + %1 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 @@ The <strong>boot environment</strong> of this system.<br><br>Older x86 systems only support <strong>BIOS</strong>.<br>Modern systems usually use <strong>EFI</strong>, but may also show up as BIOS if started in compatibility mode. - + 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. This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. - + 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. This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. - + 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 @@ Master Boot Record of %1 - + %1 Master Boot Record Boot Partition - + Käivituspartitsioon System Partition - + Süsteemipartitsioon Do not install a boot loader - + Ära installi käivituslaadurit %1 (%2) - + %1 (%2) @@ -50,48 +50,48 @@ Form - + Form GlobalStorage - + GlobalStorage JobQueue - + JobQueue Modules - + Moodulid Type: - + Tüüp: none - + puudub Interface: - + Liides: Tools - + Tööriistad Debug information - + Silumisteave @@ -99,7 +99,7 @@ Install - + Installi @@ -115,12 +115,12 @@ Run command %1 %2 - + Käivita käsklus %1 %2 Running command %1 %2 - + Käivitan käsklust %1 %2 @@ -128,32 +128,32 @@ Running %1 operation. - + Käivitan %1 tegevust. Bad working directory path - + Halb töökausta tee Working directory %1 for python job %2 is not readable. - + Töökaust %1 python tööle %2 pole loetav. Bad main script file - + Halb põhiskripti fail Main script file %1 for python job %2 is not readable. - + Põhiskripti fail %1 python tööle %2 pole loetav. Boost.Python error in job "%1". - + Boost.Python viga töös "%1". @@ -161,86 +161,87 @@ &Back - + &Tagasi &Next - + &Edasi &Cancel - + &Tühista Cancel installation without changing the system. - + Tühista installimine ilma süsteemi muutmata. &Install - + &Installi Cancel installation? - + Tühista installimine? Do you really want to cancel the current install process? The installer will quit and all changes will be lost. - + Kas sa tõesti soovid tühistada praeguse installiprotsessi? +Installija sulgub ja kõik muutused kaovad. &Yes - + &Jah &No - + &Ei &Close - + &Sulge Continue with setup? - + Jätka seadistusega? The %1 installer is about to make changes to your disk in order to install %2.<br/><strong>You will not be able to undo these changes.</strong> - + %1 installija on tegemas muudatusi sinu kettale, et installida %2.<br/><strong>Sa ei saa neid muudatusi tagasi võtta.</strong> &Install now - + &Installi kohe Go &back - + Mine &tagasi &Done - + &Valmis The installation is complete. Close the installer. - + Installimine on lõpetatud. Sulge installija. @@ -250,7 +251,7 @@ The installer will quit and all changes will be lost. Installation Failed - + Installimine ebaõnnestus @@ -258,22 +259,22 @@ The installer will quit and all changes will be lost. Unknown exception type - + Tundmatu veateade unparseable Python error - + mittetöödeldav Python'i viga unparseable Python traceback - + mittetöödeldav Python'i traceback Unfetchable Python error. - + Kättesaamatu Python'i viga. @@ -281,12 +282,12 @@ The installer will quit and all changes will be lost. %1 Installer - + %1 installija Show debug information - + Kuva silumisteavet @@ -294,27 +295,27 @@ The installer will quit and all changes will be lost. This computer does not satisfy the minimum requirements for installing %1.<br/>Installation cannot continue. <a href="#details">Details...</a> - + See arvuti ei rahulda %1 installimiseks vajalikke minimaaltingimusi.<br/>Installimine ei saa jätkuda. <a href="#details">Detailid...</a> This computer does not satisfy some of the recommended requirements for installing %1.<br/>Installation can continue, but some features might be disabled. - + See arvuti ei rahulda mõnda %1 installimiseks soovitatud tingimust.<br/>Installimine võib jätkuda, ent mõned funktsioonid võivad olla keelatud. This program will ask you some questions and set up %2 on your computer. - + See programm küsib sult mõned küsimused ja seadistab %2 sinu arvutisse. For best results, please ensure that this computer: - + Parimate tulemuste jaoks palun veendu, et see arvuti: System requirements - + Süsteeminõudmised @@ -322,32 +323,32 @@ The installer will quit and all changes will be lost. Form - + Form After: - + Pärast: <strong>Manual partitioning</strong><br/>You can create or resize partitions yourself. - + <strong>Käsitsi partitsioneerimine</strong><br/>Sa võid ise partitsioone luua või nende suurust muuta. Boot loader location: - + Käivituslaaduri asukoht: %1 will be shrunk to %2MB and a new %3MB partition will be created for %4. - + %1 vähendatakse suuruseni %2MB ja %4 jaoks luuakse uus %3MB partitsioon. Select storage de&vice: - + Vali mäluseade: @@ -355,42 +356,42 @@ The installer will quit and all changes will be lost. Current: - + Hetkel: Reuse %1 as home partition for %2. - + Taaskasuta %1 %2 kodupartitsioonina. <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - + <strong>Vali vähendatav partitsioon, seejärel sikuta alumist riba suuruse muutmiseks</strong> <strong>Select a partition to install on</strong> - + <strong>Vali partitsioon, kuhu installida</strong> An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + EFI süsteemipartitsiooni ei leitud sellest süsteemist. Palun mine tagasi ja kasuta käsitsi partitsioonimist, et seadistada %1. The EFI system partition at %1 will be used for starting %2. - + EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks. EFI system partition: - + EFI süsteemipartitsioon: This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + 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>Erase disk</strong><br/>This will <font color="red">delete</font> all data currently present on the selected storage device. - + <strong>Tühjenda ketas</strong><br/>See <font color="red">kustutab</font> kõik valitud mäluseadmel olevad andmed. This storage device has %1 on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + 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>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - + <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>Replace a partition</strong><br/>Replaces a partition with %1. - + <strong>Asenda partitsioon</strong><br/>Asendab partitsiooni operatsioonisüsteemiga %1. This storage device already has an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + 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. This storage device has multiple operating systems on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - + 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. Clear mounts for partitioning operations on %1 - + Tühjenda monteeringud partitsioneerimistegevustes %1 juures Clearing mounts for partitioning operations on %1. - + Tühjendan monteeringud partitsioneerimistegevustes %1 juures. Cleared all mounts for %1 - + Kõik monteeringud tühjendatud %1 jaoks @@ -455,34 +456,34 @@ The installer will quit and all changes will be lost. Clear all temporary mounts. - + Tühjenda kõik ajutised monteeringud. Clearing all temporary mounts. - + Tühjendan kõik ajutised monteeringud. Cannot get list of temporary mounts. - + Ajutiste monteeringute nimekirja ei saa hankida. Cleared all temporary mounts. - + Kõik ajutised monteeringud tühjendatud. CommandList - + Could not run command. - + Käsku ei saanud käivitada. - - 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. @@ -491,7 +492,7 @@ The installer will quit and all changes will be lost. Contextual Processes Job - + Kontekstipõhiste protsesside töö @@ -504,42 +505,42 @@ The installer will quit and all changes will be lost. MiB - + MiB Partition &Type: - + Partitsiooni tüüp: &Primary - + %Peamine E&xtended - + %Laiendatud Fi&le System: - + %Failisüsteem: LVM LV name - + LVM LV nimi Flags: - + Sildid: &Mount Point: - + &Monteerimispunkt: @@ -547,29 +548,29 @@ The installer will quit and all changes will be lost. Suurus: - + En&crypt - + &Krüpti - + Logical Loogiline köide - + Primary Peamine - + GPT GPT - + Mountpoint already in use. Please select another one. - + Monteerimispunkt on juba kasutusel. Palun vali mõni teine. @@ -577,22 +578,22 @@ The installer will quit and all changes will be lost. Create new %2MB partition on %4 (%3) with file system %1. - + Loo uus %2MB partitsioon kettal %4 (%3) failisüsteemiga %1. Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - + Loo uus <strong>%2MB</strong> partitsioon kettale <strong>%4</strong> (%3) failisüsteemiga <strong>%1</strong>. Creating new %1 partition on %2. - + Loon uut %1 partitsiooni kettal %2. The installer failed to create partition on disk '%1'. - + Installija ei suutnud luua partitsiooni kettale "%1". @@ -600,27 +601,27 @@ The installer will quit and all changes will be lost. Create Partition Table - + Loo partitsioonitabel Creating a new partition table will delete all existing data on the disk. - + Uue partitsioonitabeli loomine kustutab kettalt kõik olemasolevad andmed. What kind of partition table do you want to create? - + Millist partitsioonitabelit soovid luua? Master Boot Record (MBR) - + Master Boot Record (MBR) GUID Partition Table (GPT) - + GUID partitsioonitabel (GPT) @@ -628,22 +629,22 @@ The installer will quit and all changes will be lost. Create new %1 partition table on %2. - + Loo uus %1 partitsioonitabel kohta %2. Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - + Loo uus <strong>%1</strong> partitsioonitabel kohta <strong>%2</strong> (%3). Creating new %1 partition table on %2. - + Loon uut %1 partitsioonitabelit kohta %2. The installer failed to create a partition table on %1. - + Installija ei suutnud luua partitsioonitabelit kettale %1. @@ -651,67 +652,67 @@ The installer will quit and all changes will be lost. Create user %1 - + Loo kasutaja %1 Create user <strong>%1</strong>. - + Loo kasutaja <strong>%1</strong>. Creating user %1. - + Loon kasutajat %1. Sudoers dir is not writable. - + Sudoja tee ei ole kirjutatav. Cannot create sudoers file for writing. - + Sudoja faili ei saa kirjutamiseks luua. Cannot chmod sudoers file. - + Sudoja faili ei saa chmod-ida. Cannot open groups file for reading. - + Grupifaili ei saa lugemiseks avada. Cannot create user %1. - + Kasutajat %1 ei saa luua. useradd terminated with error code %1. - + useradd peatatud veakoodiga %1. Cannot add user %1 to groups: %2. - + Kasutajat %1 ei saa lisada gruppidesse: %2. usermod terminated with error code %1. - + usermod peatatud veakoodiga %1. Cannot set home directory ownership for user %1. - + Kasutajale %1 ei saa kodukausta omandust määrata. chown terminated with error code %1. - + chown peatatud veakoodiga %1. @@ -719,22 +720,22 @@ The installer will quit and all changes will be lost. Delete partition %1. - + Kustuta partitsioon %1. Delete partition <strong>%1</strong>. - + Kustuta partitsioon <strong>%1</strong>. Deleting partition %1. - + Kustutan partitsiooni %1. The installer failed to delete partition %1. - + Installija ei suutnud kustutada partitsiooni %1. @@ -742,32 +743,32 @@ The installer will quit and all changes will be lost. The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. - + <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. This device has a <strong>%1</strong> partition table. - + Sellel seadmel on <strong>%1</strong> partitsioonitabel. This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. - + 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. This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. - + 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>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. - + <br><br>See on soovitatav partitsioonitabeli tüüp modernsetele süsteemidele, mis käivitatakse <strong>EFI</strong>käivituskeskkonnast. <br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. - + <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) - + %1 - %2 (%3) @@ -783,17 +784,17 @@ The installer will quit and all changes will be lost. Write LUKS configuration for Dracut to %1 - + Kirjuta Dracut'ile LUKS konfiguratsioon kohta %1 Skip writing LUKS configuration for Dracut: "/" partition is not encrypted - + Lõpeta Dracut'ile LUKS konfigruatsiooni kirjutamine: "/" partitsioon pole krüptitud Failed to open %1 - + %1 avamine ebaõnnestus @@ -801,7 +802,7 @@ The installer will quit and all changes will be lost. Dummy C++ Job - + Testiv C++ töö @@ -809,32 +810,32 @@ The installer will quit and all changes will be lost. Edit Existing Partition - + Muuda olemasolevat partitsiooni Content: - + Sisu: &Keep - + &Säilita Format - + Vorminda Warning: Formatting the partition will erase all existing data. - + Hoiatus: Partitsiooni vormindamine tühjendab kõik olemasolevad andmed. &Mount Point: - + &Monteerimispunkt: @@ -844,22 +845,22 @@ The installer will quit and all changes will be lost. MiB - + MiB Fi&le System: - + %Failisüsteem: Flags: - + Sildid: - + Mountpoint already in use. Please select another one. - + Monteerimispunkt on juba kasutusel. Palun vali mõni teine. @@ -867,27 +868,27 @@ The installer will quit and all changes will be lost. Form - + Form En&crypt system - + Krüpti süsteem Passphrase - + Salaväljend Confirm passphrase - + Kinnita salaväljendit Please enter the same passphrase in both boxes. - + Palun sisesta sama salaväljend mõlemisse kasti. @@ -895,37 +896,37 @@ The installer will quit and all changes will be lost. Set partition information - + Sea partitsiooni teave Install %1 on <strong>new</strong> %2 system partition. - + Installi %1 <strong>uude</strong> %2 süsteemipartitsiooni. Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - + Seadista <strong>uus</strong> %2 partitsioon monteerimiskohaga <strong>%1</strong>. Install %2 on %3 system partition <strong>%1</strong>. - + Installi %2 %3 süsteemipartitsioonile <strong>%1</strong>. Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>. - + Seadista %3 partitsioon <strong>%1</strong> monteerimiskohaga <strong>%2</strong> Install boot loader on <strong>%1</strong>. - + Installi käivituslaadur kohta <strong>%1</strong>. Setting up mount points. - + Seadistan monteerimispunkte. @@ -933,27 +934,27 @@ The installer will quit and all changes will be lost. Form - + Form <html><head/><body><p>When this box is checked, your system will restart immediately when you click on <span style=" font-style:italic;">Done</span> or close the installer.</p></body></html> - + <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> &Restart now - + &Taaskäivita nüüd <h1>All done.</h1><br/>%1 has been installed on your computer.<br/>You may now restart into your new system, or continue using the %2 Live environment. - + <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>Installation Failed</h1><br/>%1 has not been installed on your computer.<br/>The error message was: %2. - + <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. Finish - + Valmis Installation Complete - + Installimine lõpetatud The installation of %1 is complete. - + %1 installimine on lõpetatud. @@ -979,22 +980,22 @@ The installer will quit and all changes will be lost. Format partition %1 (file system: %2, size: %3 MB) on %4. - + Vorminda partitsioon %1 (failisüsteem: %2, suurus: %3 MB) kohas %4. Format <strong>%3MB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - + Vorminda <strong>%3MB</strong> partitsioon <strong>%1</strong>failisüsteemiga <strong>%2</strong>. Formatting partition %1 with file system %2. - + Vormindan partitsiooni %1 failisüsteemiga %2. The installer failed to format partition %1 on disk '%2'. - + Installija ei suutnud vormindada partitsiooni %1 kettal "%2". @@ -1002,17 +1003,17 @@ The installer will quit and all changes will be lost. Konsole not installed - + Konsole pole installitud Please install KDE Konsole and try again! - + Palun installi KDE Konsole ja proovi uuesti! Executing script: &nbsp;<code>%1</code> - + Käivitan skripti: &nbsp;<code>%1</code> @@ -1020,7 +1021,7 @@ The installer will quit and all changes will be lost. Script - + Skript @@ -1028,12 +1029,12 @@ The installer will quit and all changes will be lost. Set keyboard model to %1.<br/> - + Sea klaviatuurimudeliks %1.<br/> Set keyboard layout to %1/%2. - + Sea klaviatuuripaigutuseks %1/%2. @@ -1041,7 +1042,7 @@ The installer will quit and all changes will be lost. Keyboard - + Klaviatuur @@ -1049,22 +1050,22 @@ The installer will quit and all changes will be lost. System locale setting - + Süsteemilokaali valik The system locale setting affects the language and character set for some command line user interface elements.<br/>The current setting is <strong>%1</strong>. - + Süsteemilokaali valik mõjutab keelt ja märgistikku teatud käsurea kasutajaliideste elementidel.<br/>Praegune valik on <strong>%1</strong>. &Cancel - + &Tühista &OK - + &OK @@ -1072,69 +1073,69 @@ The installer will quit and all changes will be lost. Form - + Form I accept the terms and conditions above. - + Ma nõustun alljärgevate tingimustega. <h1>License Agreement</h1>This setup procedure will install proprietary software that is subject to licensing terms. - + <h1>Litsensileping</h1>See seadistusprotseduur installib omandiõigusega tarkvara, mis vastab litsensitingimustele. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, the setup procedure cannot continue. - + Palun loe läbi allolevad lõppkasutaja litsensilepingud (EULAd).<br/>Kui sa tingimustega ei nõustu, ei saa seadistusprotseduur jätkata. <h1>License Agreement</h1>This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience. - + <h1>Litsensileping</h1>See seadistusprotseduur võib installida omandiõigusega tarkvara, mis vastab litsensitingimustele, et pakkuda lisafunktsioone ja täiendada kasutajakogemust. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. - + 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. <strong>%1 driver</strong><br/>by %2 %1 is an untranslatable product name, example: Creative Audigy driver - + <strong>%1 draiver</strong><br/>autorilt %2 <strong>%1 graphics driver</strong><br/><font color="Grey">by %2</font> %1 is usually a vendor name, example: Nvidia graphics driver - + <strong>%1 graafikadraiver</strong><br/><font color="Grey">autorilt %2</font> <strong>%1 browser plugin</strong><br/><font color="Grey">by %2</font> - + <strong>%1 brauseriplugin</strong><br/><font color="Grey">autorilt %2</font> <strong>%1 codec</strong><br/><font color="Grey">by %2</font> - + <strong>%1 koodek</strong><br/><font color="Grey">autorilt %2</font> <strong>%1 package</strong><br/><font color="Grey">by %2</font> - + <strong>%1 pakett</strong><br/><font color="Grey">autorilt %2</font> <strong>%1</strong><br/><font color="Grey">by %2</font> - + <strong>%1</strong><br/><font color="Grey">autorilt %2</font> <a href="%1">view license agreement</a> - + <a href="%1">vaata litsensitingimusi</a> @@ -1142,7 +1143,7 @@ The installer will quit and all changes will be lost. License - + Litsents @@ -1150,39 +1151,39 @@ The installer will quit and all changes will be lost. The system language will be set to %1. - + Süsteemikeeleks määratakse %1. The numbers and dates locale will be set to %1. - + Arvude ja kuupäevade lokaaliks seatakse %1. Region: - + Regioon: Zone: - + Tsoon: &Change... - + &Muuda... Set timezone to %1/%2.<br/> - + Määra ajatsooniks %1/%2.<br/> %1 (%2) Language (Country) - + %1 (%2) @@ -1190,7 +1191,7 @@ The installer will quit and all changes will be lost. Loading location data... - + Laadin asukohaandmeid... @@ -1203,22 +1204,22 @@ The installer will quit and all changes will be lost. Name - + Nimi Description - + Kirjeldus Network Installation. (Disabled: Unable to fetch package lists, check your network connection) - + Võrguinstall. (Keelatud: paketinimistute saamine ebaõnnestus, kontrolli oma võrguühendust) Network Installation. (Disabled: Received invalid groups data) - + Võrguinstall. (Keelatud: vastu võetud sobimatud grupiandmed) @@ -1226,7 +1227,7 @@ The installer will quit and all changes will be lost. Package selection - + Paketivalik @@ -1234,242 +1235,242 @@ The installer will quit and all changes will be lost. Password is too short - + Parool on liiga lühike Password is too long - + Parool on liiga pikk Password is too weak - + Parool on liiga nõrk Memory allocation error when setting '%1' - + Mälu eraldamise viga valikut "%1" määrates Memory allocation error - + Mälu eraldamise viga The password is the same as the old one - + Parool on sama mis enne The password is a palindrome - + Parool on palindroom The password differs with case changes only - + Parool erineb ainult suurtähtede poolest The password is too similar to the old one - + Parool on eelmisega liiga sarnane The password contains the user name in some form - + Parool sisaldab mingil kujul kasutajanime The password contains words from the real name of the user in some form - + Parool sisaldab mingil kujul sõnu kasutaja pärisnimest The password contains forbidden words in some form - + Parool sisaldab mingil kujul sobimatuid sõnu The password contains less than %1 digits - + Parool sisaldab vähem kui %1 numbrit The password contains too few digits - + Parool sisaldab liiga vähe numbreid The password contains less than %1 uppercase letters - + Parool sisaldab vähem kui %1 suurtähte The password contains too few uppercase letters - + Parool sisaldab liiga vähe suurtähti The password contains less than %1 lowercase letters - + Parool sisaldab vähem kui %1 väiketähte The password contains too few lowercase letters - + Parool sisaldab liiga vähe väiketähti The password contains less than %1 non-alphanumeric characters - + Parool sisaldab vähem kui %1 mitte-tähestikulist märki The password contains too few non-alphanumeric characters - + Parool sisaldab liiga vähe mitte-tähestikulisi märke The password is shorter than %1 characters - + Parool on lühem kui %1 tähemärki The password is too short - + Parool on liiga lühike The password is just rotated old one - + Parool on lihtsalt pööratud eelmine parool The password contains less than %1 character classes - + Parool sisaldab vähem kui %1 tähemärgiklassi The password does not contain enough character classes - + Parool ei sisalda piisavalt tähemärgiklasse The password contains more than %1 same characters consecutively - + Parool sisaldab järjest rohkem kui %1 sama tähemärki The password contains too many same characters consecutively - + Parool sisaldab järjest liiga palju sama tähemärki The password contains more than %1 characters of the same class consecutively - + Parool sisaldab järjest samast klassist rohkem kui %1 tähemärki The password contains too many characters of the same class consecutively - + Parool sisaldab järjest liiga palju samast klassist tähemärke The password contains monotonic sequence longer than %1 characters - + Parool sisaldab monotoonset jada, mis on pikem kui %1 tähemärki The password contains too long of a monotonic character sequence - + Parool sisaldab liiga pikka monotoonsete tähemärkide jada No password supplied - + Parooli ei sisestatud Cannot obtain random numbers from the RNG device - + RNG seadmest ei saanud hankida juhuslikke numbreid Password generation failed - required entropy too low for settings - + Parooligenereerimine ebaõnnestus - nõutud entroopia on seadete jaoks liiga vähe The password fails the dictionary check - %1 - + Parool põrub sõnastikukontrolli - %1 The password fails the dictionary check - + Parool põrub sõnastikukontrolli Unknown setting - %1 - + Tundmatu valik - %1 Unknown setting - + Tundmatu valik Bad integer value of setting - %1 - + Halb täisarvuline väärtus valikul - %1 Bad integer value - + Halb täisarvuväärtus Setting %1 is not of integer type - + Valik %1 pole täisarvu tüüpi Setting is not of integer type - + Valik ei ole täisarvu tüüpi Setting %1 is not of string type - + Valik %1 ei ole string-tüüpi Setting is not of string type - + Valik ei ole string-tüüpi Opening the configuration file failed - + Konfiguratsioonifaili avamine ebaõnnestus The configuration file is malformed - + Konfiguratsioonifail on rikutud Fatal failure - + Saatuslik viga Unknown error - + Tundmatu viga @@ -1477,17 +1478,17 @@ The installer will quit and all changes will be lost. Form - + Form Keyboard Model: - + Klaviatuurimudel: Type here to test your keyboard - + Kirjuta siia, et testida oma klaviatuuri @@ -1495,69 +1496,69 @@ The installer will quit and all changes will be lost. Form - + Form What is your name? - + Mis on su nimi? What name do you want to use to log in? - + Mis nime soovid sisselogimiseks kasutada? font-weight: normal - + font-weight: normal <small>If more than one person will use this computer, you can set up multiple accounts after installation.</small> - + <small>Kui rohkem kui üks inimene kasutab seda arvutit, saad sa määrata mitu kontot peale installi.</small> Choose a password to keep your account safe. - + Vali parool, et hoida oma konto turvalisena. <small>Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.</small> - + <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> What is the name of this computer? - + Mis on selle arvuti nimi? <small>This name will be used if you make the computer visible to others on a network.</small> - + <small>Seda nime kasutatakse, kui teed arvuti võrgus teistele nähtavaks.</small> Log in automatically without asking for the password. - + Logi automaatselt sisse ilma parooli küsimata. Use the same password for the administrator account. - + Kasuta sama parooli administraatorikontole. Choose a password for the administrator account. - + Vali administraatori kontole parool. <small>Enter the same password twice, so that it can be checked for typing errors.</small> - + <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. Root - + Juur Home - + Kodu Boot - + Käivitus EFI system - + EFI süsteem Swap - + Swap New partition for %1 - + Uus partitsioon %1 jaoks New partition - + Uus partitsioon %1 %2 - + %1 %2 @@ -1609,33 +1610,33 @@ The installer will quit and all changes will be lost. Free Space - + Tühi ruum New partition - + Uus partitsioon Name - + Nimi File System - + Failisüsteem Mount Point - + Monteerimispunkt Size - + Suurus @@ -1643,46 +1644,56 @@ The installer will quit and all changes will be lost. Form - + Form Storage de&vice: - + Mäluseade: &Revert All Changes - + &Ennista kõik muutused New Partition &Table - + Uus partitsioonitabel &Create - + &Loo &Edit - + &Muuda &Delete - + &Kustuta Install boot &loader on: + Installi käivituslaadur kohta: + + + + Are you sure you want to create a new partition table on %1? + Kas soovid kindlasti luua uut partitsioonitabelit kettale %1? + + + + Can not create new partition - - Are you sure you want to create a new partition table on %1? + + 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. @@ -1691,97 +1702,97 @@ The installer will quit and all changes will be lost. Gathering system information... - + Hangin süsteemiteavet... Partitions - + Partitsioonid Install %1 <strong>alongside</strong> another operating system. - + Installi %1 praeguse operatsioonisüsteemi <strong>kõrvale</strong> <strong>Erase</strong> disk and install %1. - + <strong>Tühjenda</strong> ketas ja installi %1. <strong>Replace</strong> a partition with %1. - + <strong>Asenda</strong> partitsioon operatsioonisüsteemiga %1. <strong>Manual</strong> partitioning. - + <strong>Käsitsi</strong> partitsioneerimine. Install %1 <strong>alongside</strong> another operating system on disk <strong>%2</strong> (%3). - + Installi %1 teise operatsioonisüsteemi <strong>kõrvale</strong> kettal <strong>%2</strong> (%3). <strong>Erase</strong> disk <strong>%2</strong> (%3) and install %1. - + <strong>Tühjenda</strong> ketas <strong>%2</strong> (%3) ja installi %1. <strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. - + <strong>Asenda</strong> partitsioon kettal <strong>%2</strong> (%3) operatsioonisüsteemiga %1. <strong>Manual</strong> partitioning on disk <strong>%1</strong> (%2). - + <strong>Käsitsi</strong> partitsioneerimine kettal <strong>%1</strong> (%2). Disk <strong>%1</strong> (%2) - + Ketas <strong>%1</strong> (%2). Current: - + Hetkel: After: - + Pärast: No EFI system partition configured - + EFI süsteemipartitsiooni pole seadistatud An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>esp</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. - + %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 system partition flag not set - + EFI süsteemipartitsiooni silt pole määratud An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>esp</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. - + %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. Boot partition not encrypted - + Käivituspartitsioon pole krüptitud A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. - + 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 Look-and-Feel Job - + Plasma välimuse-ja-tunnetuse töö Could not select KDE Plasma Look-and-Feel package - + 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 - + Form Placeholder - + Kohatäitja Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. - + 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. Look-and-Feel - + Välimus-ja-tunnetus @@ -1830,64 +1841,67 @@ The installer will quit and all changes will be lost. There was no output from the command. - + +Käsul polnud väljundit. Output: - + +Väljund: + External command crashed. - + Väline käsk jooksis kokku. Command <i>%1</i> crashed. - + Käsk <i>%1</i> jooksis kokku. External command failed to start. - + Välise käsu käivitamine ebaõnnestus. Command <i>%1</i> failed to start. - + Käsu <i>%1</i> käivitamine ebaõnnestus. Internal error when starting command. - + Käsu käivitamisel esines sisemine viga. Bad parameters for process job call. - + Protsessi töö kutsel olid halvad parameetrid. External command failed to finish. - + Väline käsk ei suutnud lõpetada. Command <i>%1</i> failed to finish in %2 seconds. - + Käsk <i>%1</i> ei suutnud lõpetada %2 sekundi jooksul. External command finished with errors. - + Väline käsk lõpetas vigadega. Command <i>%1</i> finished with exit code %2. - + Käsk <i>%1</i> lõpetas sulgemiskoodiga %2. @@ -1895,38 +1909,38 @@ Output: Default Keyboard Model - + Vaikimisi klaviatuurimudel Default - + Vaikimisi unknown - + tundmatu extended - + laiendatud unformatted - + vormindamata swap - + swap Unpartitioned space or unknown partition table - + Partitsioneerimata ruum või tundmatu partitsioonitabel @@ -1934,74 +1948,74 @@ Output: Form - + Form Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - + Vali, kuhu soovid %1 installida.<br/><font color="red">Hoiatus: </font>see kustutab valitud partitsioonilt kõik failid. The selected item does not appear to be a valid partition. - + Valitud üksus ei paista olevat sobiv partitsioon. %1 cannot be installed on empty space. Please select an existing partition. - + %1 ei saa installida tühjale kohale. Palun vali olemasolev partitsioon. %1 cannot be installed on an extended partition. Please select an existing primary or logical partition. - + %1 ei saa installida laiendatud partitsioonile. Palun vali olemasolev põhiline või loogiline partitsioon. %1 cannot be installed on this partition. - + %1 ei saa installida sellele partitsioonidel. Data partition (%1) - + Andmepartitsioon (%1) Unknown system partition (%1) - + Tundmatu süsteemipartitsioon (%1) %1 system partition (%2) - + %1 süsteemipartitsioon (%2) <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - + <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/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - + <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 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - + <strong>%3</strong><br/><br/>%1 installitakse partitsioonile %2.<br/><font color="red">Hoiatus: </font>kõik andmed partitsioonil %2 kaovad. The EFI system partition at %1 will be used for starting %2. - + EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks. EFI system partition: - + EFI süsteemipartitsioon: @@ -2009,57 +2023,57 @@ Output: Gathering system information... - + Hangin süsteemiteavet... has at least %1 GB available drive space - + omab vähemalt %1 GB vaba kettaruumi There is not enough drive space. At least %1 GB is required. - + Pole piisavalt kettaruumi. Vähemalt %1 GB on nõutud. has at least %1 GB working memory - + omab vähemalt %1 GB töötamismälu The system does not have enough working memory. At least %1 GB is required. - + Süsteemil pole piisavalt töötamismälu. Vähemalt %1 GB on nõutud. is plugged in to a power source - + on ühendatud vooluallikasse The system is not plugged in to a power source. - + Süsteem pole ühendatud vooluallikasse. is connected to the Internet - + on ühendatud Internetti The system is not connected to the Internet. - + Süsteem pole ühendatud Internetti. The installer is not running with administrator rights. - + Installija ei tööta administraatoriõigustega. The screen is too small to display the installer. - + Ekraan on liiga väike installija kuvamiseks. @@ -2067,22 +2081,22 @@ Output: Resize partition %1. - + Muuda partitsiooni %1 suurust. Resize <strong>%2MB</strong> partition <strong>%1</strong> to <strong>%3MB</strong>. - + Muuda <strong>%2MB</strong> partitsiooni <strong>%1</strong>suuruseks <strong>%3MB</strong>. Resizing %2MB partition %1 to %3MB. - + Muudan %2MB partitsiooni %1 suuruseks %3MB The installer failed to resize partition %1 on disk '%2'. - + Installijal ebaõnnestus partitsiooni %1 suuruse muutmine kettal "%2". @@ -2090,12 +2104,12 @@ Output: Scanning storage devices... - + Skaneerin mäluseadmeid... Partitioning - + Partitsioneerimine @@ -2103,29 +2117,29 @@ Output: Set hostname %1 - + Määra hostinimi %1 Set hostname <strong>%1</strong>. - + Määra hostinimi <strong>%1</strong>. Setting hostname %1. - + Määran hostinime %1. Internal Error - + Sisemine viga Cannot write hostname to target system - + Hostinime ei saa sihtsüsteemile kirjutada @@ -2133,29 +2147,29 @@ Output: Set keyboard model to %1, layout to %2-%3 - + Klaviatuurimudeliks on seatud %1, paigutuseks %2-%3 Failed to write keyboard configuration for the virtual console. - + Klaviatuurikonfiguratsiooni kirjutamine virtuaalkonsooli ebaõnnestus. Failed to write to %1 - + Kohta %1 kirjutamine ebaõnnestus Failed to write keyboard configuration for X11. - + Klaviatuurikonsooli kirjutamine X11-le ebaõnnestus. Failed to write keyboard configuration to existing /etc/default directory. - + Klaviatuurikonfiguratsiooni kirjutamine olemasolevale /etc/default kaustateele ebaõnnestus. @@ -2163,82 +2177,82 @@ Output: Set flags on partition %1. - + Määratud sildid partitsioonil %1: Set flags on %1MB %2 partition. - + Sildid määratud %1MB %2 partitsioonile. Set flags on new partition. - + Määra sildid uuele partitsioonile. Clear flags on partition <strong>%1</strong>. - + Tühjenda sildid partitsioonil <strong>%1</strong>. Clear flags on %1MB <strong>%2</strong> partition. - + Tühjenda sildid %1MB <strong>%2</strong> partitsioonilt. Clear flags on new partition. - + Tühjenda sildid uuel partitsioonil Flag partition <strong>%1</strong> as <strong>%2</strong>. - + Määra partitsioonile <strong>%1</strong> silt <strong>%2</strong>. Flag %1MB <strong>%2</strong> partition as <strong>%3</strong>. - + Määra %1MB <strong>%2</strong> partitsiooni sildiks <strong>%3</strong>. Flag new partition as <strong>%1</strong>. - + Määra uuele partitsioonile silt <strong>%1</strong>. Clearing flags on partition <strong>%1</strong>. - + Eemaldan sildid partitsioonilt <strong>%1</strong>. Clearing flags on %1MB <strong>%2</strong> partition. - + Eemaldan sildid %1MB <strong>%2</strong> partitsioonilt. Clearing flags on new partition. - + Eemaldan uuelt partitsioonilt sildid. Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - + Määran sildid <strong>%1</strong> partitsioonile <strong>%1</strong>. Setting flags <strong>%3</strong> on %1MB <strong>%2</strong> partition. - + Määran sildid <strong>%3</strong> %1MB <strong>%2</strong> partitsioonile. Setting flags <strong>%1</strong> on new partition. - + Määran sildid <strong>%1</strong> uuele partitsioonile. The installer failed to set flags on partition %1. - + Installija ei suutnud silte määrata partitsioonile %1. @@ -2246,42 +2260,42 @@ Output: Set password for user %1 - + Määra kasutajale %1 parool Setting password for user %1. - + Määran kasutajale %1 parooli. Bad destination system path. - + Halb sihtsüsteemi tee. rootMountPoint is %1 - + rootMountPoint on %1 Cannot disable root account. - + Juurkasutajat ei saa keelata. passwd terminated with error code %1. - + passwd peatatud veakoodiga %1. Cannot set password for user %1. - + Kasutajale %1 ei saa parooli määrata. usermod terminated with error code %1. - + usermod peatatud veateatega %1. @@ -2289,37 +2303,37 @@ Output: Set timezone to %1/%2 - + Määra ajatsooniks %1/%2 Cannot access selected timezone path. - + Valitud ajatsooni teele ei saa ligi. Bad path: %1 - + Halb tee: %1 Cannot set timezone. - + Ajatsooni ei saa määrata. Link creation failed, target: %1; link name: %2 - + Lingi loomine ebaõnnestus, siht: %1; lingi nimi: %2 Cannot set timezone, - + Ajatsooni ei saa määrata, Cannot open /etc/timezone for writing - + /etc/timezone ei saa kirjutamiseks avada @@ -2327,7 +2341,7 @@ Output: Shell Processes Job - + Kesta protsesside töö @@ -2336,7 +2350,7 @@ Output: %L1 / %L2 slide counter, %1 of %2 (numeric) - + %L1 / %L2 @@ -2344,7 +2358,7 @@ Output: This is an overview of what will happen once you start the install procedure. - + See on ülevaade sellest mis juhtub, kui alustad installiprotseduuri. @@ -2360,22 +2374,22 @@ Output: Installation feedback - + Installimise tagasiside Sending installation feedback. - + Saadan installimise tagasisidet. Internal error in install-tracking. - + Installi jälitamisel esines sisemine viga. HTTP request timed out. - + HTTP taotlusel esines ajalõpp. @@ -2383,28 +2397,28 @@ Output: Machine feedback - + Seadme tagasiside Configuring machine feedback. - + Seadistan seadme tagasisidet. Error in machine feedback configuration. - + Masina tagasiside konfiguratsioonis esines viga. Could not configure machine feedback correctly, script error %1. - + Masina tagasisidet ei suudetud korralikult konfigureerida, skripti viga %1. Could not configure machine feedback correctly, Calamares error %1. - + Masina tagasisidet ei suudetud korralikult konfigureerida, Calamares'e viga %1. @@ -2412,56 +2426,56 @@ Output: Form - + Form Placeholder - + Kohatäitja <html><head/><body><p>By selecting this, you will send <span style=" font-weight:600;">no information at all</span> about your installation.</p></body></html> - + <html><head/><body><p>Seda valides <span style=" font-weight:600;">ei saada sa üldse</span> teavet oma installi kohta.</p></body></html> TextLabel - + TextLabel ... - + ... <html><head/><body><p><a href="placeholder"><span style=" text-decoration: underline; color:#2980b9;">Click here for more information about user feedback</span></a></p></body></html> - + <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> Install tracking helps %1 to see how many users they have, what hardware they install %1 to and (with the last two options below), get continuous information about preferred applications. To see what will be sent, please click the help icon next to each area. - + 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. By selecting this you will send information about your installation and hardware. This information will <b>only be sent once</b> after the installation finishes. - + Seda valides saadad sa teavet oma installi ja riistvara kohta. See teave <b>saadetakse ainult korra</b>peale installi lõppu. By selecting this you will <b>periodically</b> send information about your installation, hardware and applications, to %1. - + Seda valides saadad sa %1-le <b>perioodiliselt</b> infot oma installi, riistvara ja rakenduste kohta. By selecting this you will <b>regularly</b> send information about your installation, hardware, applications and usage patterns, to %1. - + Seda valides saadad sa %1-le <b>regulaarselt</b> infot oma installi, riistvara, rakenduste ja kasutusharjumuste kohta. @@ -2469,7 +2483,7 @@ Output: Feedback - + Tagasiside @@ -2477,33 +2491,33 @@ Output: Your username is too long. - + Sinu kasutajanimi on liiga pikk. Your username contains invalid characters. Only lowercase letters and numbers are allowed. - + Sinu kasutajanimi sisaldab sobimatuid tähemärke. Lubatud on ainult väiketähed ja numbrid. Your hostname is too short. - + Sinu hostinimi on liiga lühike. Your hostname is too long. - + Sinu hostinimi on liiga pikk. Your hostname contains invalid characters. Only letters, numbers and dashes are allowed. - + Sinu hostinimi sisaldab sobimatuid tähemärke. Ainult tähed, numbrid ja sidekriipsud on lubatud. Your passwords do not match! - + Sinu paroolid ei ühti! @@ -2511,7 +2525,7 @@ Output: Users - + Kasutajad @@ -2519,57 +2533,57 @@ Output: Form - + Form &Language: - + &Keel: &Release notes - + &Väljalaskemärkmed &Known issues - + &Teadaolevad vead &Support - + &Tugi &About - + &Teave <h1>Welcome to the %1 installer.</h1> - + <h1>Tere tulemast %1 installijasse.</h1> <h1>Welcome to the Calamares installer for %1.</h1> - + <h1>Tere tulemast Calamares'i installijasse %1 jaoks.</h1> About %1 installer - + Teave %1 installija kohta <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + <h1>%1</h1><br/><strong>%2<br/>%3 jaoks</strong><br/><br/>Autoriõigus 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autoriõigus 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 support - + %1 tugi @@ -2577,7 +2591,7 @@ Output: Welcome - + 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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. Ta&maina: - + En&crypt - + Logical Logikoa - + Primary Primarioa - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + 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 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. K&oko: - + En&crypt - + Logical Looginen - + Primary Ensisijainen - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. Liput: - + Mountpoint already in use. Please select another one. @@ -1682,10 +1682,20 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat. - + Are you sure you want to create a new partition table on %1? Oletko varma, että haluat luoda uuden osion %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + Could not run command. La commande n'a pas pu être exécutée. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Aucun point de montage racine n'est défini, la commande n'a pas pu être exécutée dans l'environnement cible. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ L'installateur se fermera et les changements seront perdus. Ta&ille : - + En&crypt Chi&ffrer - + Logical Logique - + Primary Primaire - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %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 @@ -2572,7 +2582,7 @@ Sortie <h1>%1</h1><br/><strong>%2<br/> pour %3</strong><br/><br/> Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/> Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/> 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. - + %1 support 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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + 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. @@ -549,27 +549,27 @@ O instalador pecharase e perderanse todos os cambios. &Tamaño: - + En&crypt Encriptar - + Logical Lóxica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. Punto de montaxe xa en uso. Faga o favor de escoller outro. @@ -1683,10 +1683,20 @@ O instalador pecharase e perderanse todos os cambios. - + 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 @@ -2569,7 +2579,7 @@ Output: - + %1 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + 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. גו&דל: - + En&crypt ה&צפן - + Logical לוגי - + Primary ראשי - + GPT GPT - + Mountpoint already in use. Please select another one. נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת. @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. סימונים: - + Mountpoint already in use. Please select another one. נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת. @@ -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? האם אתה בטוח שברצונך ליצור טבלת מחיצות חדשה על %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support תמיכה ב - %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 - + Could not run command. कमांड run नहीं की जा सकी। - - No rootMountPoint is defined, so command cannot be run in the target environment. - कोई rootMountPoint परिभाषित नहीं है, इसलिए कमांड को लक्ष्य वातावरण में run नहीं किया जा सकता है। + + 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. - + En&crypt En&crypt - + Logical - + Primary मुख्य - + GPT 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. - + 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 @@ -2568,7 +2578,7 @@ Output: <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>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 support %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 - + Could not run command. Ne mogu pokrenuti naredbu. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Nije definirana root točka montiranja tako da se naredba ne može izvršiti na ciljanoj okolini. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Ve&ličina: - + En&crypt Ši&friraj - + Logical Logično - + Primary Primarno - + GPT GPT - + Mountpoint already in use. Please select another one. Točka montiranja se već koristi. Odaberite drugu. @@ -858,7 +858,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.Oznake: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Jeste li sigurni da želite stvoriti novu particijsku tablicu na %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 @@ Izlaz: <h1>%1</h1><br/><strong>%2<br/>za %3</strong><br/><br/>Autorska prava 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorska prava 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 support %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 - + Could not run command. A parancsot nem lehet futtatni. - - 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. @@ -549,27 +549,27 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l Mé&ret: - + En&crypt Titkosítás - + Logical Logikai - + Primary Elsődleges - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %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 @@ -2570,7 +2580,7 @@ Calamares hiba %1. - + %1 support %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 - + Could not run command. Tidak dapat menjalankan perintah - - No rootMountPoint is defined, so command cannot be run in the target environment. - rootMountPoint tidak didefiniskan, sehingga perintah tidak dapat dijalankan dalam lingkungan environment + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -550,27 +550,27 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Uku&ran: - + En&crypt Enkripsi - + Logical Logikal - + Primary Utama - + GPT GPT - + Mountpoint already in use. Please select another one. Titik-kait sudah digunakan. Silakan pilih yang lainnya. @@ -860,7 +860,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Bendera: - + Mountpoint already in use. Please select another one. Titik-kait sudah digunakan. Silakan pilih yang lainnya. @@ -1684,10 +1684,20 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.Pasang boot %loader pada: - + Are you sure you want to create a new partition table on %1? Apakah Anda yakin ingin membuat tabel partisi baru pada %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 @@ -2573,7 +2583,7 @@ Keluaran: <h1>%1</h1><br/><strong>%2<br/>untuk %3</strong><br/><br/> Hak Cipta 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Hak Cipta 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/> Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan <a href="https://www.transifex.com/calamares/calamares/"> 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. - + %1 support 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 - + 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 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. St&ærð: - + En&crypt &Dulrita - + Logical Rökleg - + Primary Aðal - + GPT GPT - + Mountpoint already in use. Please select another one. Tengipunktur er þegar í notkun. Veldu einhvern annan. @@ -858,7 +858,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Flögg: - + Mountpoint already in use. Please select another one. Tengipunktur er þegar í notkun. Veldu einhvern annan. @@ -1682,10 +1682,20 @@ Uppsetningarforritið mun hætta og allar breytingar tapast. Setja upp ræsistjóran á: - + Are you sure you want to create a new partition table on %1? Ertu viss um að þú viljir búa til nýja disksneið á %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support %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 - + Could not run command. Impossibile eseguire il comando. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Non è stato definito alcun rootMountPoint, quindi il comando non può essere eseguito nell'ambiente di destinazione. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno &Dimensione: - + En&crypt Cr&iptare - + Logical Logica - + Primary Primaria - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Si è sicuri di voler creare una nuova tabella delle partizioni su %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 @@ -2570,7 +2580,7 @@ Output: - + %1 support 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 @@ &Install - + インストール(&I) @@ -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. - rootMountPoint が定義されていません、それでターゲットとする環境でコマンドが起動しません。 + + 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. サイズ(&Z) - + En&crypt 暗号化(&C) - + Logical 論理 - + Primary プライマリ - + GPT GPT - + Mountpoint already in use. Please select another one. マウントポイントは既に使用されています。他を選択してください。 @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. フラグ: - + Mountpoint already in use. Please select another one. マウントポイントは既に使用されています。他を選択してください。 @@ -1381,12 +1381,12 @@ The installer will quit and all changes will be lost. The password contains monotonic sequence longer than %1 characters - + パスワードに %1 文字以上の単調な文字列が含まれています The password contains too long of a monotonic character sequence - + パスワードに限度を超えた単調な文字列が含まれています @@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost. ブートローダーインストール先 (&L): - + Are you sure you want to create a new partition table on %1? %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 @@ -1815,7 +1825,7 @@ The installer will quit and all changes will be lost. Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. - + KDE Plasma デスクトップの外観を選んでください。この作業はスキップでき、インストール後に外観を設定することができます。外観を選択し、クリックすることにより外観のプレビューが表示されます。 @@ -2341,7 +2351,7 @@ Output: %L1 / %L2 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 &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. - + %1 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + Could not run command. Nepavyko paleisti komandos. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Nėra apibrėžta šaknies prijungimo vieta, taigi komanda negali būti įvykdyta paskirties aplinkoje. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + 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: - + En&crypt Užši&fruoti - + Logical Loginė - + Primary Pagrindinė - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Ar tikrai %1 norite sukurti naują skaidinių lentelę? + + + Can not create new partition + Nepavyksta sukurti naują skaidinį + + + + 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. + 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: rootMountPoint is %1 - š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 &lt;teo@kde.org&gt;<br/>Autorių teisės 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical तार्किक - + Primary प्राथमिक - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support %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 - + 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 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.St&ørrelse: - + En&crypt - + Logical Logisk - + Primary Primær - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + Mountpoint already in use. Please select another one. @@ -1682,10 +1682,20 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt. - + 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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + 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 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. &Grootte: - + En&crypt &Versleutelen - + Logical Logisch - + Primary Primair - + GPT GPT - + Mountpoint already in use. Please select another one. Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen. @@ -858,7 +858,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan. Vlaggen: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Weet u zeker dat u een nieuwe partitie tabel wil maken op %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support %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 - + Could not run command. Nie można wykonać polecenia. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Nie określono rootMountPoint, więc polecenie nie może zostać wykonane w docelowym środowisku. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + 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: - + En&crypt Zaszy%fruj - + Logical Logiczna - + Primary Podstawowa - + GPT GPT - + Mountpoint already in use. Please select another one. Punkt montowania jest już używany. Proszę wybrać inny. @@ -858,7 +858,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Flagi: - + Mountpoint already in use. Please select another one. Punkt montowania jest już używany. Proszę wybrać inny. @@ -1465,7 +1465,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone. Fatal failure - Krytyczne niepowodzenie + Błąd krytyczny @@ -1682,10 +1682,20 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.Zainsta&luj program rozruchowy na: - + Are you sure you want to create a new partition table on %1? Czy na pewno chcesz utworzyć nową tablicę partycji na %1? + + + Can not create new partition + Nie można utworzyć nowej partycji + + + + 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. + 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. Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. - + 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: Machine feedback - + Maszynowa informacja zwrotna Configuring machine feedback. - + Konfiguracja machine feedback Error in machine feedback configuration. - + Błąd w konfiguracji maszynowej informacji zwrotnej. Could not configure machine feedback correctly, script error %1. - + Nie można poprawnie skonfigurować maszynowej informacji zwrotnej, błąd skryptu %1. Could not configure machine feedback correctly, Calamares error %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 &lt;teo@kde.org&gt;<br/>Prawa autorskie 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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. - + %1 support 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 - + Could not run command. Não foi possível executar o comando. - - No rootMountPoint is defined, so command cannot be run in the target environment. - O comando não pode ser executado no ambiente de destino porque o rootMontPoint não foi definido. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + 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: - + En&crypt &Criptografar - + Logical Lógica - + Primary Primária - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Você tem certeza de que deseja criar uma nova tabela de partições em %1? + + + Can not create new partition + Não foi possível criar uma nova partição + + + + 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. + 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 &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 support %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 - + Could not run command. Não foi possível correr o comando. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Não está definido o Ponto de Montagem root, portanto o comando não pode ser corrido no ambiente alvo. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + 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&crypt En&criptar - + Logical Lógica - + Primary Primária - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Tem certeza de que deseja criar uma nova tabela de partições em %1? + + + Can not create new partition + Não é possível criar nova partição + + + + 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. + 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 &lt;teo@kde.org&gt;<br/>Direitos de cópia 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 support %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 - + Could not run command. Nu s-a putut executa comanda. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Nu este definit niciun rootMountPoint, așadar comanda nu a putut fi executată în mediul dorit. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.Mă&rime: - + En&crypt &Criptează - + Logical Logică - + Primary Primară - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Sigur doriți să creați o nouă tabelă de partiție pe %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 @@ -2574,7 +2584,7 @@ Output <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>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 support %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. Ра&змер: - + En&crypt Ши&фровать - + Logical Логический - + Primary Основной - + GPT GPT - + Mountpoint already in use. Please select another one. Точка монтирования уже занята. Пожалуйста, выберете другую. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. Флаги: - + Mountpoint already in use. Please select another one. Точка монтирования уже занята. Пожалуйста, выберете другую. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. Установить &загрузчик в: - + Are you sure you want to create a new partition table on %1? Вы уверены, что хотите создать новую таблицу разделов на %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 @@ -2567,7 +2577,7 @@ Output: - + %1 support %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 - + Could not run command. Nepodarilo sa spustiť príkaz. - - No rootMountPoint is defined, so command cannot be run in the target environment. - Nie je definovaný parameter rootMountPoint, takže príkaz nemôže byť spustený v cieľovom prostredí. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -548,27 +548,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené. Veľ&kosť: - + En&crypt Zaši&frovať - + Logical Logický - + Primary Primárny - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %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 @@ Výstup: <h1>%1</h1><br/><strong>%2<br/>pre distribúciu %3</strong><br/><br/>Autorské práva 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorské práva 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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. - + %1 support 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 - + 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 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Ve&likost - + En&crypt - + Logical Logičen - + Primary Primaren - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. Zastavice: - + Mountpoint already in use. Please select another one. @@ -1682,10 +1682,20 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene. - + Are you sure you want to create a new partition table on %1? Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 @@ This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own. - 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ë. This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own. - 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 @@ Boot Partition - Ndarje Nisjesh + Pjesë Nisjesh System Partition - Ndarje Sistemi + Pjesë Sistemi @@ -264,7 +264,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. unparseable Python error - 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. For best results, please ensure that this computer: - 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>Manual partitioning</strong><br/>You can create or resize partitions yourself. - <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 will be shrunk to %2MB and a new %3MB partition will be created for %4. - %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. Reuse %1 as home partition for %2. - Ripërdore %1 si ndarjen shtëpi për %2. + Ripërdore %1 si pjesën shtëpi për %2. <strong>Select a partition to shrink, then drag the bottom bar to resize</strong> - <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>Select a partition to install on</strong> - <strong>Përzgjidhni një ndarje ku të instalohet</strong> + <strong>Përzgjidhni një pjesë ku të instalohet</strong> An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - 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. The EFI system partition at %1 will be used for starting %2. - 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. EFI system partition: - Ndarje Sistemi EFI: + Pjesë Sistemi EFI: This storage device does not seem to have an operating system on it. What would you like to do?<br/>You will be able to review and confirm your choices before any change is made to the storage device. - 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>Install alongside</strong><br/>The installer will shrink a partition to make room for %1. - <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>Replace a partition</strong><br/>Replaces a partition with %1. - <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. Clearing all temporary mounts. - 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 - + Could not run command. S’u xhirua dot urdhri. - - No rootMountPoint is defined, so command cannot be run in the target environment. - S’ka të caktuar rootMountPoint, ndaj urdhri s’mund të xhirohet në mjedisin e synuar. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + 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. Create a Partition - Krijoni një Ndarje + Krijoni një Pjesë @@ -510,7 +510,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Partition &Type: - &Lloj Ndarjeje: + &Lloj Pjese: @@ -548,27 +548,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. &Madhësi: - + En&crypt &Fshehtëzoje - + Logical - Logjik + Logjike - + Primary - Parësor + Parësore - + GPT GPT - + Mountpoint already in use. Please select another one. 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. Create new %2MB partition on %4 (%3) with file system %1. - Krijo ndarje të re %2MB te %4 (%3) me sistem kartelash %1. + Krijo pjesë të re %2MB te %4 (%3) me sistem kartelash %1. Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>. - 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>. Creating new %1 partition on %2. - Po krijohet ndarje e re %1 te %2. + Po krijohet pjesë e re %1 te %2. The installer failed to create partition on disk '%1'. - 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. Create Partition Table - Krijo Tabelë Ndarjesh + Krijo Tabelë Pjesësh Creating a new partition table will delete all existing data on the disk. - 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. What kind of partition table do you want to create? - Ç’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. GUID Partition Table (GPT) - Tabelë Ndarjesh GUID (GPT) + Tabelë Pjesësh GUID (GPT) @@ -629,22 +629,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Create new %1 partition table on %2. - Krijo tabelë të re ndarjesh %1 te %2. + Krijo tabelë të re pjesësh %1 te %2. Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3). - 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). Creating new %1 partition table on %2. - Po krijohet tabelë e re ndarjesh %1 te %2. + Po krijohet tabelë e re pjesësh %1 te %2. The installer failed to create a partition table on %1. - 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. Delete partition %1. - Fshije ndarjen %1. + Fshije pjesën %1. Delete partition <strong>%1</strong>. - Fshije ndarjen <strong>%1</strong>. + Fshije pjesën <strong>%1</strong>. Deleting partition %1. - Po fshihet ndarja %1. + Po fshihet pjesa %1. The installer failed to delete partition %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. The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred. - 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. This device has a <strong>%1</strong> partition table. - Kjo pajisje ka një tabelë ndarjesh <strong>%1</strong>. + Kjo pajisje ka një tabelë pjesësh <strong>%1</strong>. This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem. - 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. This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page. - 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>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment. - <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>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions. - <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. Skip writing LUKS configuration for Dracut: "/" partition is not encrypted - 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 Failed to open %1 - 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. Edit Existing Partition - Përpuno Ndarje Ekzistuese + Përpuno Pjesën Ekzistuese @@ -830,7 +830,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. Warning: Formatting the partition will erase all existing data. - 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: - + Mountpoint already in use. Please select another one. 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. Set partition information - Caktoni të dhëna ndarjeje + Caktoni të dhëna pjese Install %1 on <strong>new</strong> %2 system partition. - Instaloje %1 në ndarje sistemi <strong>të re</strong> %2. + Instaloje %1 në pjesë sistemi <strong>të re</strong> %2. Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>. - 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>. Install %2 on %3 system partition <strong>%1</strong>. - Instaloje %2 te ndarja e sistemit %3 <strong>%1</strong>. + Instaloje %2 te pjesa e sistemit %3 <strong>%1</strong>. Set up %3 partition <strong>%1</strong> with mount point <strong>%2</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. Format partition %1 (file system: %2, size: %3 MB) on %4. - 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. Format <strong>%3MB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>. - 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>. Formatting partition %1 with file system %2. - Po formatohet ndarja %1 me sistem kartelash %2. + Po formatohet pjesa %1 me sistem kartelash %2. The installer failed to format partition %1 on disk '%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. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, the setup procedure cannot continue. - 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. Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead. - 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. The password does not contain enough character classes - 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. The password fails the dictionary check - %1 - Fjalëkalimi s’kaloi dot kontrollin kundrejt fjalorit - %1 + Fjalëkalimi s’kalon dot kontrollin kundrejt fjalorit - %1 The password fails the dictionary check - 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. New partition for %1 - Ndarje e re për %1 + Pjesë e re për %1 New partition - Ndarje e re + Pjesë e re @@ -1616,7 +1616,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. New partition - Ndarje e re + Pjesë e re @@ -1659,7 +1659,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. New Partition &Table - &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ë: - + Are you sure you want to create a new partition table on %1? - 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? + + + + Can not create new partition + S’krijohet dot pjesë e re + + + + 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. + 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. Partitions - Ndarje + Pjesë @@ -1712,7 +1722,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej. <strong>Replace</strong> a partition with %1. - <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>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1. - <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. No EFI system partition configured - S’ka të formësuar ndarje sistemi EFI + S’ka të formësuar pjesë sistemi EFI An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>esp</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start. - 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. EFI system partition flag not set - S’është vënë flamurkë EFI ndarjeje sistemi + S’është vënë flamurkë EFI pjese sistemi An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>esp</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start. - 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. Boot partition not encrypted - Ndarje nisjesh e pafshehtëzuar + Pjesë nisjesh e pafshehtëzuar A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window. - 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. Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel. - 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: External command failed to finish. - Udhri i jashtëm s’arriti të përfundohej. + S’u arrit të përfundohej urdhër i jashtëm. Command <i>%1</i> failed to finish in %2 seconds. - 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: Unpartitioned space or unknown partition table - 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: Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition. - 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. The selected item does not appear to be a valid partition. - Objekti i përzgjedhur s’duket se është ndarje e vlefshme. + Objekti i përzgjedhur s’duket se është pjesë e vlefshme. %1 cannot be installed on empty space. Please select an existing partition. - %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 cannot be installed on an extended partition. Please select an existing primary or logical partition. - %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 cannot be installed on this partition. - %1 s’mund të instalohet në këtë ndarje. + %1 s’mund të instalohet në këtë pjesë. Data partition (%1) - Ndarje të dhënash (%1) + Pjesë të dhënash (%1) Unknown system partition (%1) - Ndarje sistemi e panjohur (%1) + Pjesë sistemi e panjohur (%1) %1 system partition (%2) - Ndarje sistemi %1 (%2) + Pjesë sistemi %1 (%2) <strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB. - <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/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1. - <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 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost. - <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: EFI system partition: - Ndarje Sistemi EFI: + Pjesë Sistemi EFI: @@ -2038,12 +2048,12 @@ Përfundim: is plugged in to a power source - është në prizë + është lidhur te një burim energjie The system is not plugged in to a power source. - Sistemi s'është i lidhur me ndonjë burim rryme. + Sistemi s'është i lidhur me ndonjë burim energjie. @@ -2071,12 +2081,12 @@ Përfundim: Resize partition %1. - Ripërmaso ndarjen %1. + Ripërmaso pjesën %1. Resize <strong>%2MB</strong> partition <strong>%1</strong> to <strong>%3MB</strong>. - 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: The installer failed to resize partition %1 on disk '%2'. - 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: Failed to write to %1 - Dështoi në shkrimin te %1 + S’u arrit të shkruhej te %1 @@ -2167,17 +2177,17 @@ Përfundim: Set flags on partition %1. - Caktoni flamurka në ndarjen %1. + Caktoni flamurka në pjesën %1. Set flags on %1MB %2 partition. - Caktoni flamurka në ndarjen %1MB %2.` + Caktoni flamurka në pjesën %1MB %2.` Set flags on new partition. - Caktoni flamurka në ndarje të re. + Caktoni flamurka në pjesë të re. @@ -2197,52 +2207,52 @@ Përfundim: Flag partition <strong>%1</strong> as <strong>%2</strong>. - I vini shenjë ndarjes <strong>%1</strong> si <strong>%2</strong>. + I vini shenjë pjesës <strong>%1</strong> si <strong>%2</strong>. Flag %1MB <strong>%2</strong> partition as <strong>%3</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>. Flag new partition as <strong>%1</strong>. - I vini shenjë ndarjes së re si <strong>%1</strong>. + I vini shenjë pjesës së re si <strong>%1</strong>. Clearing flags on partition <strong>%1</strong>. - Po hiqen shenjat në ndarjen <strong>%1</strong>. + Po hiqen shenjat në pjesën <strong>%1</strong>. Clearing flags on %1MB <strong>%2</strong> partition. - Po hiqen shenjat në ndarjen %1MB <strong>%2</strong>. + Po hiqen shenjat në pjesën %1MB <strong>%2</strong>. Clearing flags on new partition. - Po hiqen shenjat në ndarjen e re. + Po hiqen shenjat në pjesën e re. Setting flags <strong>%2</strong> on partition <strong>%1</strong>. - Po vihen flamurkat <strong>%2</strong> në ndarjen <strong>%1</strong>. + Po vihen flamurkat <strong>%2</strong> në pjesën <strong>%1</strong>. Setting flags <strong>%3</strong> on %1MB <strong>%2</strong> partition. - 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>. Setting flags <strong>%1</strong> on new partition. - Po vihen flamurkat <strong>%1</strong> në ndarjen e re. + Po vihen flamurkat <strong>%1</strong> në pjesën e re. The installer failed to set flags on partition %1. - 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: By selecting this you will send information about your installation and hardware. This information will <b>only be sent once</b> after the installation finishes. - 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 &lt;teo@kde.org&gt;<br/>Të drejta Kopjimi 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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. - + %1 support 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 - + 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. Вели&чина - + En&crypt - + Logical Логичка - + Primary Примарна - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -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? + + + 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 @@ -2568,7 +2578,7 @@ Output: - + %1 support %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 - + 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 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. Veli&čina - + En&crypt - + Logical Logička - + Primary Primarna - + GPT GPT - + Mountpoint already in use. Please select another one. @@ -858,7 +858,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + Mountpoint already in use. Please select another one. @@ -1682,10 +1682,20 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene. - + 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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + 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 @@ Alla ändringar kommer att gå förlorade. Storlek: - + En&crypt Kr%yptera - + Logical Logisk - + Primary Primär - + GPT GPT - + Mountpoint already in use. Please select another one. Monteringspunkt används redan. Välj en annan. @@ -858,7 +858,7 @@ Alla ändringar kommer att gå förlorade. Flaggor: - + Mountpoint already in use. Please select another one. Monteringspunkt används redan. Välj en annan. @@ -1682,10 +1682,20 @@ Alla ändringar kommer att gå förlorade. Installera uppstartshanterare på: - + Are you sure you want to create a new partition table on %1? Är du säker på att du vill skapa en ny partitionstabell på %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support %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 - + 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. &Z ขนาด: - + En&crypt - + Logical โลจิคอล - + Primary หลัก - + GPT 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. - + Are you sure you want to create a new partition table on %1? คุณแน่ใจว่าจะสร้างตารางพาร์ทิชันใหม่บน %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support 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 - + Could not run command. Komut çalıştırılamadı. - - No rootMountPoint is defined, so command cannot be run in the target environment. - RootMountPoint kök bağlama noktası tanımlanmadığından, hedef ortamda komut çalıştırılamaz. + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -551,27 +551,27 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.Bo&yut: - + En&crypt Şif&rele - + Logical Mantıksal - + Primary Birincil - + GPT GPT - + Mountpoint already in use. Please select another one. 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: - + Mountpoint already in use. Please select another one. 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: - + Are you sure you want to create a new partition table on %1? %1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz? + + + 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 @@ -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 &lt;teo@kde.org&gt;<br/>Telif Hakkı 2017 Adriaan de Groot &lt;groot@kde.org&gt;<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 support %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 - + 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. Ро&змір: - + En&crypt За&шифрувати - + Logical Логічний - + Primary Основний - + GPT GPT - + Mountpoint already in use. Please select another one. Точка підключення наразі використовується. Оберіть, будь ласка, іншу. @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. Прапорці: - + Mountpoint already in use. Please select another one. Точка підключення наразі використовується. Оберіть, будь ласка, іншу. @@ -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? Ви впевнені, що бажаєте створити нову таблицю розділів на %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 @@ -2568,7 +2578,7 @@ Output: - + %1 support Підтримка %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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + 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. @@ -547,27 +547,27 @@ The installer will quit and all changes will be lost. - + En&crypt - + Logical - + Primary - + GPT - + Mountpoint already in use. Please select another one. @@ -857,7 +857,7 @@ The installer will quit and all changes will be lost. - + Mountpoint already in use. Please select another one. @@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost. - + 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 @@ -2567,7 +2577,7 @@ Output: - + %1 support 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 - + Could not run command. 无法运行命令 - - No rootMountPoint is defined, so command cannot be run in the target environment. - 未定义任何 rootMountPoint,无法在目标环境中运行命令。 + + The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined. + @@ -549,27 +549,27 @@ The installer will quit and all changes will be lost. 大小(&Z): - + En&crypt 加密(&C) - + Logical 逻辑分区 - + Primary 主分区 - + GPT GPT - + Mountpoint already in use. Please select another one. 挂载点已被占用。请选择另一个。 @@ -860,7 +860,7 @@ The installer will quit and all changes will be lost. 标记: - + Mountpoint already in use. Please select another one. 挂载点已被占用。请选择另一个。 @@ -1684,10 +1684,20 @@ The installer will quit and all changes will be lost. 安装引导程序于(&L): - + Are you sure you want to create a new partition table on %1? 您是否确定要在 %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 @@ -2573,7 +2583,7 @@ Output: <h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>特别感谢: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 support %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 - + Could not run command. 無法執行指令。 - - No rootMountPoint is defined, so command cannot be run in the target environment. - 未定義 rootMountPoint,所以指令無法在目標環境中執行。 + + 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. 容量大小 (&z) : - + En&crypt 加密(&C) - + Logical 邏輯磁區 - + Primary 主要磁區 - + GPT GPT - + Mountpoint already in use. Please select another one. 掛載點使用中。請選擇其他的。 @@ -858,7 +858,7 @@ The installer will quit and all changes will be lost. 旗標: - + Mountpoint already in use. Please select another one. 掛載點使用中。請選擇其他的。 @@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost. 安裝開機載入器在(&L): - + Are you sure you want to create a new partition table on %1? 您是否確定要在 %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. + 在 %1 上的分割表已有 %2 個主要分割區,無法再新增。請移除一個主要分割區並新增一個延伸分割區。 + PartitionViewStep @@ -2571,7 +2581,7 @@ Output: <h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>感謝:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。 - + %1 support %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)" );