Merge branch 'master' of https://github.com/calamares/calamares into development

This commit is contained in:
Philip 2018-05-18 20:56:34 +02:00
commit 001d6cf9d3
207 changed files with 4898 additions and 1586 deletions

View File

@ -203,7 +203,8 @@ endif()
# (sr@latin in particular) may need special handling in CalamaresUtils.cpp. # (sr@latin in particular) may need special handling in CalamaresUtils.cpp.
# #
# TODO: drop the es_ES translation from Transifex # 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 # NOTE: when updating the list from Transifex, copy these four lines
# and prefix each variable name with "p", so that the automatic # 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_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 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 ) 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 # check translation update
set( prev_tx ${p_tx_complete} ${p_tx_good} ${p_tx_ok} ${p_tx_bad} ) 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_MAJOR 3 )
set( CALAMARES_VERSION_MINOR 2 ) set( CALAMARES_VERSION_MINOR 2 )
set( CALAMARES_VERSION_PATCH 0 ) 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 ${CALAMARES_VERSION_MAJOR}.${CALAMARES_VERSION_MINOR}.${CALAMARES_VERSION_PATCH} )
set( CALAMARES_VERSION_SHORT "${CALAMARES_VERSION}" ) set( CALAMARES_VERSION_SHORT "${CALAMARES_VERSION}" )

View File

@ -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_<dir> - destination for files of a given type
# CMAKE_INSTALL_FULL_<dir> - corresponding absolute path
# where <dir> 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_<dir> 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_<dir> 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 <krnekit@gmail.com>
# 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()

View File

@ -42,6 +42,10 @@ Icon[es]=calamares
GenericName[es]=Instalador del Sistema GenericName[es]=Instalador del Sistema
Comment[es]=Calamares Instalador del Sistema Comment[es]=Calamares Instalador del Sistema
Name[es]=Instalar 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[eu]=Sistema instalatu
Name[es_PR]=Instalar el sistema Name[es_PR]=Instalar el sistema
Icon[fr]=calamares Icon[fr]=calamares
@ -144,12 +148,15 @@ Icon[ast]=calamares
GenericName[ast]=Instalador del sistema GenericName[ast]=Instalador del sistema
Comment[ast]=Calamares Instalador del sistema Comment[ast]=Calamares Instalador del sistema
Name[ast]=Instalar 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 Name[es_MX]=Instalar el Sistema
Icon[pt_PT]=calamares Icon[pt_PT]=calamares
GenericName[pt_PT]=Instalador de Sistema GenericName[pt_PT]=Instalador de Sistema
Comment[pt_PT]=Calamares - Instalador de Sistema Comment[pt_PT]=Calamares - Instalador de Sistema
Name[pt_PT]=Instalar Sistema Name[pt_PT]=Instalar Sistema
Name[es_ES]=Instalar el sistema
Icon[tr_TR]=calamares Icon[tr_TR]=calamares
GenericName[tr_TR]=Sistem Yükleyici GenericName[tr_TR]=Sistem Yükleyici
Comment[tr_TR]=Calamares Sistem Yükleyici Comment[tr_TR]=Calamares Sistem Yükleyici

15
calamares.desktop.in Normal file
View File

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

View File

@ -29,6 +29,25 @@ test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ;
export QT_SELECT=5 export QT_SELECT=5
tx pull --force --source --all 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 ### COMMIT TRANSLATIONS
# #
# Produce multiple commits (for the various parts of the i18n # Produce multiple commits (for the various parts of the i18n

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>الح&amp;جم:</translation> <translation>الح&amp;جم:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>تشفير</translation> <translation>تشفير</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>منطقيّ</translation> <translation>منطقيّ</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>أساسيّ</translation> <translation>أساسيّ</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>الشّارات:</translation> <translation>الشّارات:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation>ثبّت م&amp;حمّل الإقلاع على:</translation> <translation>ثبّت م&amp;حمّل الإقلاع على:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>أمتأكّد من إنشاء جدول تقسيم جديد على %1؟</translation> <translation>أمتأكّد من إنشاء جدول تقسيم جديد على %1؟</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>1% الدعم</translation> <translation>1% الدعم</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<translation>Tama&amp;ñu:</translation> <translation>Tama&amp;ñu:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Cifrar</translation> <translation>&amp;Cifrar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Llóxica</translation> <translation>Llóxica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaria</translation> <translation>Primaria</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Puntu de montaxe n&apos;usu. Esbilla otru, por favor.</translation> <translation>Puntu de montaxe n&apos;usu. Esbilla otru, por favor.</translation>
</message> </message>
@ -858,7 +858,7 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<translation>Banderes:</translation> <translation>Banderes:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Puntu de montaxe n&apos;usu. Esbilla otru, por favor.</translation> <translation>Puntu de montaxe n&apos;usu. Esbilla otru, por favor.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ L&apos;instalador colará y perderánse toles camudancies.</translation>
<translation>&amp;Instalar xestor d&apos;arranque en:</translation> <translation>&amp;Instalar xestor d&apos;arranque en:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>¿De xuru que quies crear una tabla particiones nueva en %1?</translation> <translation>¿De xuru que quies crear una tabla particiones nueva en %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Sofitu %1</translation> <translation>Sofitu %1</translation>
</message> </message>

View File

@ -478,13 +478,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -549,27 +549,27 @@ The installer will quit and all changes will be lost.</source>
<translation>Раз&amp;мер:</translation> <translation>Раз&amp;мер:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>En%crypt</translation> <translation>En%crypt</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Логическа</translation> <translation>Логическа</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Главна</translation> <translation>Главна</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Точката за монтиране вече се използва. Моля изберете друга.</translation> <translation>Точката за монтиране вече се използва. Моля изберете друга.</translation>
</message> </message>
@ -859,7 +859,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Флагове:</translation> <translation>Флагове:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Точката за монтиране вече се използва. Моля изберете друга.</translation> <translation>Точката за монтиране вече се използва. Моля изберете друга.</translation>
</message> </message>
@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost.</source>
<translation>Инсталирай &amp;устройството за начално зареждане върху:</translation> <translation>Инсталирай &amp;устройството за начално зареждане върху:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Сигурни ли сте че искате да създадете нова таблица на дяловете върху %1?</translation> <translation>Сигурни ли сте че искате да създадете нова таблица на дяловете върху %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2569,7 +2579,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 поддръжка</translation> <translation>%1 поддръжка</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>No s&apos;ha pogut executar l&apos;ordre.</translation> <translation>No s&apos;ha pogut executar l&apos;ordre.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>No hi ha punt de muntatge d&apos;arrel definit; per tant, no es pot executar l&apos;ordre a l&apos;entorn de destinació.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>Mi&amp;da:</translation> <translation>Mi&amp;da:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Xifra</translation> <translation>&amp;Xifra</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Lògica</translation> <translation>Lògica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primària</translation> <translation>Primària</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.</translation> <translation>El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.</translation>
</message> </message>
@ -858,7 +858,7 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>Indicadors:</translation> <translation>Indicadors:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.</translation> <translation>El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.</translation>
</message> </message>
@ -1395,7 +1395,7 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="218"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="218"/>
<source>Cannot obtain random numbers from the RNG device</source> <source>Cannot obtain random numbers from the RNG device</source>
<translation>No es poden obtenir números aleatoris del dispositiu RNG.</translation> <translation>No es poden obtenir nombres aleatoris del dispositiu RNG.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="220"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="220"/>
@ -1682,10 +1682,20 @@ L&apos;instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>&amp;Instal·la el gestor d&apos;arrencada a:</translation> <translation>&amp;Instal·la el gestor d&apos;arrencada a:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Esteu segurs que voleu crear una nova taula de particions a %1?</translation> <translation>Esteu segurs que voleu crear una nova taula de particions a %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>No es pot crear la partició nova</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2107,17 +2117,17 @@ Sortida:
<message> <message>
<location filename="../src/modules/users/SetHostNameJob.cpp" line="37"/> <location filename="../src/modules/users/SetHostNameJob.cpp" line="37"/>
<source>Set hostname %1</source> <source>Set hostname %1</source>
<translation>Assigna el nom de l&apos;equip %1</translation> <translation>Estableix el nom d&apos;amfitrió %1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/SetHostNameJob.cpp" line="44"/> <location filename="../src/modules/users/SetHostNameJob.cpp" line="44"/>
<source>Set hostname &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Set hostname &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Establir el nom de l&apos;hoste &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Estableix el nom d&apos;amfitrió &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/SetHostNameJob.cpp" line="51"/> <location filename="../src/modules/users/SetHostNameJob.cpp" line="51"/>
<source>Setting hostname %1.</source> <source>Setting hostname %1.</source>
<translation>Establint el nom de l&apos;hoste %1.</translation> <translation>Establint el nom d&apos;amfitrió %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/SetHostNameJob.cpp" line="61"/> <location filename="../src/modules/users/SetHostNameJob.cpp" line="61"/>
@ -2129,7 +2139,7 @@ Sortida:
<location filename="../src/modules/users/SetHostNameJob.cpp" line="75"/> <location filename="../src/modules/users/SetHostNameJob.cpp" line="75"/>
<location filename="../src/modules/users/SetHostNameJob.cpp" line="86"/> <location filename="../src/modules/users/SetHostNameJob.cpp" line="86"/>
<source>Cannot write hostname to target system</source> <source>Cannot write hostname to target system</source>
<translation>No s&apos;ha pogut escriure el nom de l&apos;equip al sistema de destinació</translation> <translation>No es pot escriure el nom d&apos;amfitrió al sistema de destinació</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2270,7 +2280,7 @@ Sortida:
<message> <message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/> <location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/>
<source>Cannot disable root account.</source> <source>Cannot disable root account.</source>
<translation>No es pot inhabilitar el compte d&apos;arrel.</translation> <translation>No es pot inhabilitar el compte de root.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="124"/> <location filename="../src/modules/users/SetPasswordJob.cpp" line="124"/>
@ -2280,7 +2290,7 @@ Sortida:
<message> <message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="139"/> <location filename="../src/modules/users/SetPasswordJob.cpp" line="139"/>
<source>Cannot set password for user %1.</source> <source>Cannot set password for user %1.</source>
<translation>No s&apos;ha pogut assignar la contrasenya de l&apos;usuari %1.</translation> <translation>No es pot establir la contrasenya per a l&apos;usuari %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="141"/> <location filename="../src/modules/users/SetPasswordJob.cpp" line="141"/>
@ -2491,7 +2501,7 @@ Sortida:
<message> <message>
<location filename="../src/modules/users/UsersPage.cpp" line="333"/> <location filename="../src/modules/users/UsersPage.cpp" line="333"/>
<source>Your hostname is too short.</source> <source>Your hostname is too short.</source>
<translation>El nom d&apos;usuari és massa curt.</translation> <translation>El nom d&apos;amfitrió és massa curt.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/UsersPage.cpp" line="339"/> <location filename="../src/modules/users/UsersPage.cpp" line="339"/>
@ -2501,7 +2511,7 @@ Sortida:
<message> <message>
<location filename="../src/modules/users/UsersPage.cpp" line="345"/> <location filename="../src/modules/users/UsersPage.cpp" line="345"/>
<source>Your hostname contains invalid characters. Only letters, numbers and dashes are allowed.</source> <source>Your hostname contains invalid characters. Only letters, numbers and dashes are allowed.</source>
<translation>El nom d&apos;amfitrió conté caràcters no vàlids. Només s&apos;hi admeten lletres, números i guions.</translation> <translation>El nom d&apos;amfitrió conté caràcters no vàlids. Només s&apos;admeten lletres, números i guions.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/UsersPage.cpp" line="373"/> <location filename="../src/modules/users/UsersPage.cpp" line="373"/>
@ -2553,12 +2563,12 @@ Sortida:
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the %1 installer.&lt;/h1&gt;</source> <source>&lt;h1&gt;Welcome to the %1 installer.&lt;/h1&gt;</source>
<translation>&lt;h1&gt;Benvinguts a l&apos;instal·lador %1.&lt;/h1&gt;</translation> <translation>&lt;h1&gt;Benvingut a l&apos;instal·lador de %1.&lt;/h1&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
<source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source> <source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
<translation>&lt;h1&gt;Us donem la benvinguda a l&apos;instal·lador Calamares per a %1.&lt;/h1&gt;</translation> <translation>&lt;h1&gt;Benvingut a l&apos;instal·lador Calamares per a %1.&lt;/h1&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
@ -2571,7 +2581,7 @@ Sortida:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;per a %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017, Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i l&apos;&lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Equip de traducció del Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;El desenvolupament &lt;/a&gt; del Calamares està patrocinat per &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;per a %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017, Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i l&apos;&lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Equip de traducció del Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;El desenvolupament &lt;/a&gt; del Calamares està patrocinat per &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 suport</translation> <translation>%1 suport</translation>
</message> </message>
@ -2581,7 +2591,7 @@ Sortida:
<message> <message>
<location filename="../src/modules/welcome/WelcomeViewStep.cpp" line="51"/> <location filename="../src/modules/welcome/WelcomeViewStep.cpp" line="51"/>
<source>Welcome</source> <source>Welcome</source>
<translation>Benvinguts</translation> <translation>Benvingut</translation>
</message> </message>
</context> </context>
</TS> </TS>

View File

@ -477,14 +477,14 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Nedaří se spustit příkaz.</translation> <translation>Nedaří se spustit příkaz.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>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í.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>&amp;Velikost:</translation> <translation>&amp;Velikost:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Š&amp;ifrovat</translation> <translation>Š&amp;ifrovat</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logický</translation> <translation>Logický</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primární</translation> <translation>Primární</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Tento přípojný bod je používán vyberte jiný.</translation> <translation>Tento přípojný bod je používán vyberte jiný.</translation>
</message> </message>
@ -858,7 +858,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>Příznaky:</translation> <translation>Příznaky:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Tento přípojný bod je používán vyberte jiný.</translation> <translation>Tento přípojný bod je používán vyberte jiný.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>Nainstalovat &amp;zavaděč na:</translation> <translation>Nainstalovat &amp;zavaděč na:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Opravdu chcete na %1 vytvořit novou tabulku oddílů?</translation> <translation>Opravdu chcete na %1 vytvořit novou tabulku oddílů?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Výstup:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;tým překledatelů Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; vývoj je sponzorován &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;tým překledatelů Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; vývoj je sponzorován &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 podpora</translation> <translation>%1 podpora</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Kunne ikke køre kommando.</translation> <translation>Kunne ikke køre kommando.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Der er ikke defineret nogen rootMountPoint, kommandoen kan ikke køre i målmiljøet.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>&amp;Størrelse:</translation> <translation>&amp;Størrelse:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Kryp&amp;tér</translation> <translation>Kryp&amp;tér</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logisk</translation> <translation>Logisk</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primær</translation> <translation>Primær</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Monteringspunktet er allerede i brug. Vælg venligst et andet.</translation> <translation>Monteringspunktet er allerede i brug. Vælg venligst et andet.</translation>
</message> </message>
@ -858,7 +858,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>Flag:</translation> <translation>Flag:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Monteringspunktet er allerede i brug. Vælg venligst et andet.</translation> <translation>Monteringspunktet er allerede i brug. Vælg venligst et andet.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>Installér boot&amp;loader :</translation> <translation>Installér boot&amp;loader :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Er du sikker , at du vil oprette en ny partitionstabel %1?</translation> <translation>Er du sikker , at du vil oprette en ny partitionstabel %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Output:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;til %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Ophavsret 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Ophavsret 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Tak til: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg og &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares oversætterteam&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; udvikling er sponsoreret af &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;til %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Ophavsret 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Ophavsret 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Tak til: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg og &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares oversætterteam&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; udvikling er sponsoreret af &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 support</translation> <translation>%1 support</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>Grö&amp;sse:</translation> <translation>Grö&amp;sse:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Verschlüsseln</translation> <translation>Verschlüsseln</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logisch</translation> <translation>Logisch</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primär</translation> <translation>Primär</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Dieser Einhängepunkt wird schon benuztzt. Bitte wählen Sie einen anderen.</translation> <translation>Dieser Einhängepunkt wird schon benuztzt. Bitte wählen Sie einen anderen.</translation>
</message> </message>
@ -858,7 +858,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>Markierungen:</translation> <translation>Markierungen:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Der Einhängepunkt wird schon benutzt. Bitte wählen Sie einen anderen.</translation> <translation>Der Einhängepunkt wird schon benutzt. Bitte wählen Sie einen anderen.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>Installiere Boot&amp;loader auf:</translation> <translation>Installiere Boot&amp;loader auf:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten?</translation> <translation>Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Unterstützung für %1</translation> <translation>Unterstützung für %1</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Μέγεθος:</translation> <translation>&amp;Μέγεθος:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Λογική</translation> <translation>Λογική</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Πρωτεύουσα</translation> <translation>Πρωτεύουσα</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Σημαίες:</translation> <translation>Σημαίες:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation>Εγκατάσταση προγράμματος ε&amp;κκίνησης στο:</translation> <translation>Εγκατάσταση προγράμματος ε&amp;κκίνησης στο:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %1;</translation> <translation>Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %1;</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Υποστήριξη %1</translation> <translation>Υποστήριξη %1</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Could not run command.</translation> <translation>Could not run command.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>No rootMountPoint is defined, so command cannot be run in the target environment.</translation> <translation>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</translation>
<translation>Si&amp;ze:</translation> <translation>Si&amp;ze:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>En&amp;crypt</translation> <translation>En&amp;crypt</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logical</translation> <translation>Logical</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primary</translation> <translation>Primary</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Mountpoint already in use. Please select another one.</translation> <translation>Mountpoint already in use. Please select another one.</translation>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</translation>
<translation>Flags:</translation> <translation>Flags:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Mountpoint already in use. Please select another one.</translation> <translation>Mountpoint already in use. Please select another one.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</translation>
<translation>Install boot &amp;loader on:</translation> <translation>Install boot &amp;loader on:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Are you sure you want to create a new partition table on %1?</translation> <translation>Are you sure you want to create a new partition table on %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>Can not create new partition</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>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.</translation>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Output:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 support</translation> <translation>%1 support</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</translation>
<translation>Si&amp;ze:</translation> <translation>Si&amp;ze:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logical</translation> <translation>Logical</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primary</translation> <translation>Primary</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</translation>
<translation>Flags:</translation> <translation>Flags:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Are you sure you want to create a new partition table on %1?</translation> <translation>Are you sure you want to create a new partition table on %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 support</translation> <translation>%1 support</translation>
</message> </message>

2594
lang/calamares_eo.ts Normal file

File diff suppressed because it is too large Load Diff

View File

@ -478,14 +478,14 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>No se pudo ejecutar el comando.</translation> <translation>No se pudo ejecutar el comando.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>No se ha definido ningún rootMountPoint (punto de montaje de root), así que el comando no se puede ejecutar en el entorno objetivo.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -549,27 +549,27 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<translation>&amp;Tamaño:</translation> <translation>&amp;Tamaño:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Cifrar</translation> <translation>&amp;Cifrar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Lógica</translation> <translation>Lógica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaria</translation> <translation>Primaria</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punto de montaje ya en uso. Por favor, seleccione otro.</translation> <translation>Punto de montaje ya en uso. Por favor, seleccione otro.</translation>
</message> </message>
@ -859,7 +859,7 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<translation>Banderas:</translation> <translation>Banderas:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punto de montaje ya en uso. Por favor, seleccione otro.</translation> <translation>Punto de montaje ya en uso. Por favor, seleccione otro.</translation>
</message> </message>
@ -1683,10 +1683,20 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
<translation>Instalar gestor de arranque en:</translation> <translation>Instalar gestor de arranque en:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>¿Está seguro de querer crear una nueva tabla de particiones en %1?</translation> <translation>¿Está seguro de querer crear una nueva tabla de particiones en %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2572,7 +2582,7 @@ Salida:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimientos: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg y al &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;equipo de traductores de Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt; El desarrollo &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; está patrocinado por &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberando Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimientos: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg y al &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;equipo de traductores de Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt; El desarrollo &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; está patrocinado por &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberando Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 ayuda</translation> <translation>%1 ayuda</translation>
</message> </message>

View File

@ -480,13 +480,13 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -551,27 +551,27 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>&amp;Tamaño:</translation> <translation>&amp;Tamaño:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Lógica</translation> <translation>Lógica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaria</translation> <translation>Primaria</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -861,7 +861,7 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>Banderas:</translation> <translation>Banderas:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1685,10 +1685,20 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>¿Está seguro de querer crear una nueva tabla de particiones en %1?</translation> <translation>¿Está seguro de querer crear una nueva tabla de particiones en %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2572,7 +2582,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 Soporte</translation> <translation>%1 Soporte</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

File diff suppressed because it is too large Load Diff

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation>Ta&amp;maina:</translation> <translation>Ta&amp;maina:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logikoa</translation> <translation>Logikoa</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primarioa</translation> <translation>Primarioa</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 euskarria</translation> <translation>%1 euskarria</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -477,13 +477,13 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation>K&amp;oko:</translation> <translation>K&amp;oko:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Looginen</translation> <translation>Looginen</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Ensisijainen</translation> <translation>Ensisijainen</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation>Liput:</translation> <translation>Liput:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Oletko varma, että haluat luoda uuden osion %1?</translation> <translation>Oletko varma, että haluat luoda uuden osion %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -477,14 +477,14 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>La commande n&apos;a pas pu être exécutée.</translation> <translation>La commande n&apos;a pas pu être exécutée.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Aucun point de montage racine n&apos;est défini, la commande n&apos;a pas pu être exécutée dans l&apos;environnement cible.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<translation>Ta&amp;ille :</translation> <translation>Ta&amp;ille :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Chi&amp;ffrer</translation> <translation>Chi&amp;ffrer</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logique</translation> <translation>Logique</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaire</translation> <translation>Primaire</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Le point de montage est déjà utilisé. Merci d&apos;en sélectionner un autre.</translation> <translation>Le point de montage est déjà utilisé. Merci d&apos;en sélectionner un autre.</translation>
</message> </message>
@ -858,7 +858,7 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<translation>Drapeaux:</translation> <translation>Drapeaux:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Le point de montage est déjà utilisé. Merci d&apos;en sélectionner un autre.</translation> <translation>Le point de montage est déjà utilisé. Merci d&apos;en sélectionner un autre.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ L&apos;installateur se fermera et les changements seront perdus.</translation>
<translation>Installer le chargeur de démarrage sur:</translation> <translation>Installer le chargeur de démarrage sur:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %1 ?</translation> <translation>Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %1 ?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2572,7 +2582,7 @@ Sortie
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; pour %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt; Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt; Merci à : Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg et &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;l&apos;équipe de traducteurs de Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt; Le développement de &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; est sponsorisé par &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software. </translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; pour %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt; Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt; Merci à : Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg et &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;l&apos;équipe de traducteurs de Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt; Le développement de &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; est sponsorisé par &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software. </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Support de %1</translation> <translation>Support de %1</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -478,13 +478,13 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -549,27 +549,27 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation>&amp;Tamaño:</translation> <translation>&amp;Tamaño:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Encriptar</translation> <translation>Encriptar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Lóxica</translation> <translation>Lóxica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaria</translation> <translation>Primaria</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punto de montaxe xa en uso. Faga o favor de escoller outro</translation> <translation>Punto de montaxe xa en uso. Faga o favor de escoller outro</translation>
</message> </message>
@ -859,7 +859,7 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation>Bandeiras:</translation> <translation>Bandeiras:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punto de montaxe xa en uso. Faga o favor de escoller outro.</translation> <translation>Punto de montaxe xa en uso. Faga o favor de escoller outro.</translation>
</message> </message>
@ -1683,10 +1683,20 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2569,7 +2579,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 axuda</translation> <translation>%1 axuda</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>גו&amp;דל:</translation> <translation>גו&amp;דל:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>ה&amp;צפן</translation> <translation>ה&amp;צפן</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>לוגי</translation> <translation>לוגי</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>ראשי</translation> <translation>ראשי</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.</translation> <translation>נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.</translation>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>סימונים:</translation> <translation>סימונים:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.</translation> <translation>נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation>התקן &amp;מנהל אתחול מערכת על:</translation> <translation>התקן &amp;מנהל אתחול מערכת על:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>האם אתה בטוח שברצונך ליצור טבלת מחיצות חדשה על %1?</translation> <translation>האם אתה בטוח שברצונך ליצור טבלת מחיצות חדשה על %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>תמיכה ב - %1</translation> <translation>תמיכה ב - %1</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation> run </translation> <translation> run </translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation> rootMountPoint िि , ि run ि </translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>En&amp;crypt</translation> <translation>En&amp;crypt</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Flags:</translation> <translation>Flags:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares अनुवादक टीम&lt;/a&gt; का धन्यवाद।&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares अनुवादक टीम&lt;/a&gt; का धन्यवाद।&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>

View File

@ -477,14 +477,14 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Ne mogu pokrenuti naredbu.</translation> <translation>Ne mogu pokrenuti naredbu.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Nije definirana root točka montiranja tako da se naredba ne može izvršiti na ciljanoj okolini.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>Ve&amp;ličina:</translation> <translation>Ve&amp;ličina:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Ši&amp;friraj</translation> <translation>Ši&amp;friraj</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logično</translation> <translation>Logično</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primarno</translation> <translation>Primarno</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Točka montiranja se već koristi. Odaberite drugu.</translation> <translation>Točka montiranja se već koristi. Odaberite drugu.</translation>
</message> </message>
@ -858,7 +858,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>Oznake:</translation> <translation>Oznake:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Točka montiranja se već koristi. Odaberite drugu.</translation> <translation>Točka montiranja se već koristi. Odaberite drugu.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>Instaliraj boot &amp;učitavač na:</translation> <translation>Instaliraj boot &amp;učitavač na:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Jeste li sigurni da želite stvoriti novu particijsku tablicu na %1?</translation> <translation>Jeste li sigurni da želite stvoriti novu particijsku tablicu na %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Izlaz:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;za %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Autorska prava 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Autorska prava 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares timu za prevođenje&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares sponzorira &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;za %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Autorska prava 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Autorska prava 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares timu za prevođenje&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares sponzorira &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 podrška</translation> <translation>%1 podrška</translation>
</message> </message>

View File

@ -478,13 +478,13 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>A parancsot nem lehet futtatni.</translation> <translation>A parancsot nem lehet futtatni.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -549,27 +549,27 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<translation>&amp;ret:</translation> <translation>&amp;ret:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Titkosítás</translation> <translation>Titkosítás</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logikai</translation> <translation>Logikai</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Elsődleges</translation> <translation>Elsődleges</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>A csatolási pont már használatban van. Kérlek, válassz másikat.</translation> <translation>A csatolási pont már használatban van. Kérlek, válassz másikat.</translation>
</message> </message>
@ -859,7 +859,7 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<translation>Zászlók:</translation> <translation>Zászlók:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>A csatolási pont már használatban van. Kérlek, válassz másikat.</translation> <translation>A csatolási pont már használatban van. Kérlek, válassz másikat.</translation>
</message> </message>
@ -1683,10 +1683,20 @@ Telepítés nem folytatható. &lt;a href=&quot;#details&quot;&gt;Részletek...&l
<translation>&amp;Rendszerbetöltő telepítése ide:</translation> <translation>&amp;Rendszerbetöltő telepítése ide:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %1 ?</translation> <translation>Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %1 ?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2570,7 +2580,7 @@ Calamares hiba %1.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 támogatás</translation> <translation>%1 támogatás</translation>
</message> </message>

View File

@ -479,14 +479,14 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Tidak dapat menjalankan perintah</translation> <translation>Tidak dapat menjalankan perintah</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>rootMountPoint tidak didefiniskan, sehingga perintah tidak dapat dijalankan dalam lingkungan environment</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -550,27 +550,27 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<translation>Uku&amp;ran:</translation> <translation>Uku&amp;ran:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Enkripsi</translation> <translation>Enkripsi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logikal</translation> <translation>Logikal</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Utama</translation> <translation>Utama</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Titik-kait sudah digunakan. Silakan pilih yang lainnya.</translation> <translation>Titik-kait sudah digunakan. Silakan pilih yang lainnya.</translation>
</message> </message>
@ -860,7 +860,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<translation>Bendera:</translation> <translation>Bendera:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Titik-kait sudah digunakan. Silakan pilih yang lainnya.</translation> <translation>Titik-kait sudah digunakan. Silakan pilih yang lainnya.</translation>
</message> </message>
@ -1684,10 +1684,20 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
<translation>Pasang boot %loader pada:</translation> <translation>Pasang boot %loader pada:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Apakah Anda yakin ingin membuat tabel partisi baru pada %1?</translation> <translation>Apakah Anda yakin ingin membuat tabel partisi baru pada %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2573,7 +2583,7 @@ Keluaran:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;untuk %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; Hak Cipta 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Hak Cipta 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt; Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt; tim penerjemah Calamares &lt;/a&gt;. &lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Pengembangan Calamares&lt;/a&gt;disponsori oleh &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt;- Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;untuk %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; Hak Cipta 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Hak Cipta 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt; Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt; tim penerjemah Calamares &lt;/a&gt;. &lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Pengembangan Calamares&lt;/a&gt;disponsori oleh &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt;- Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Dukungan %1</translation> <translation>Dukungan %1</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>St&amp;æ:</translation> <translation>St&amp;æ:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Dulrita</translation> <translation>&amp;Dulrita</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Rökleg</translation> <translation>Rökleg</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Aðal</translation> <translation>Aðal</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Tengipunktur er þegar í notkun. Veldu einhvern annan.</translation> <translation>Tengipunktur er þegar í notkun. Veldu einhvern annan.</translation>
</message> </message>
@ -858,7 +858,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>Flögg:</translation> <translation>Flögg:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Tengipunktur er þegar í notkun. Veldu einhvern annan.</translation> <translation>Tengipunktur er þegar í notkun. Veldu einhvern annan.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>Setja upp ræsistjóran á:</translation> <translation>Setja upp ræsistjóran á:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Ertu viss um þú viljir búa til nýja disksneið á %1?</translation> <translation>Ertu viss um þú viljir búa til nýja disksneið á %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 stuðningur</translation> <translation>%1 stuðningur</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Impossibile eseguire il comando.</translation> <translation>Impossibile eseguire il comando.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Non è stato definito alcun rootMountPoint, quindi il comando non può essere eseguito nell&apos;ambiente di destinazione.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<translation>&amp;Dimensione:</translation> <translation>&amp;Dimensione:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Cr&amp;iptare</translation> <translation>Cr&amp;iptare</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logica</translation> <translation>Logica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaria</translation> <translation>Primaria</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Il punto di mount è già in uso. Sceglierne un altro.</translation> <translation>Il punto di mount è già in uso. Sceglierne un altro.</translation>
</message> </message>
@ -858,7 +858,7 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<translation>Flag:</translation> <translation>Flag:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Il punto di mount è già in uso. Sceglierne un altro.</translation> <translation>Il punto di mount è già in uso. Sceglierne un altro.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Il programma d&apos;installazione sarà terminato e tutte le modifiche andranno
<translation>Installare il boot &amp;loader su:</translation> <translation>Installare il boot &amp;loader su:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Si è sicuri di voler creare una nuova tabella delle partizioni su %1?</translation> <translation>Si è sicuri di voler creare una nuova tabella delle partizioni su %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2570,7 +2580,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>supporto %1</translation> <translation>supporto %1</translation>
</message> </message>

View File

@ -184,7 +184,7 @@
<message> <message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="255"/> <location filename="../src/libcalamaresui/ViewManager.cpp" line="255"/>
<source>&amp;Install</source> <source>&amp;Install</source>
<translation type="unfinished"/> <translation>&amp;I</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="303"/> <location filename="../src/libcalamaresui/ViewManager.cpp" line="303"/>
@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>rootMountPoint </translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Z</translation> <translation>&amp;Z</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;C</translation> <translation>&amp;C</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>使</translation> <translation>使</translation>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>使</translation> <translation>使</translation>
</message> </message>
@ -1381,12 +1381,12 @@ The installer will quit and all changes will be lost.</source>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="213"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="213"/>
<source>The password contains monotonic sequence longer than %1 characters</source> <source>The password contains monotonic sequence longer than %1 characters</source>
<translation type="unfinished"/> <translation> %1 調</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="214"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="214"/>
<source>The password contains too long of a monotonic character sequence</source> <source>The password contains too long of a monotonic character sequence</source>
<translation type="unfinished"/> <translation>調</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="216"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="216"/>
@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost.</source>
<translation> &amp;L:</translation> <translation> &amp;L:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>1 </translation> <translation>1 </translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -1815,7 +1825,7 @@ The installer will quit and all changes will be lost.</source>
<message> <message>
<location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="67"/> <location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="67"/>
<source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source> <source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source>
<translation type="unfinished"/> <translation>KDE Plasma </translation>
</message> </message>
</context> </context>
<context> <context>
@ -2341,7 +2351,7 @@ Output:
<location filename="../src/qml/calamares/slideshow/SlideCounter.qml" line="36"/> <location filename="../src/qml/calamares/slideshow/SlideCounter.qml" line="36"/>
<source>%L1 / %L2</source> <source>%L1 / %L2</source>
<extracomment>slide counter, %1 of %2 (numeric)</extracomment> <extracomment>slide counter, %1 of %2 (numeric)</extracomment>
<translation type="unfinished"/> <translation>%L1 / %L2</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2572,7 +2582,7 @@ Output:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 қолдауы</translation> <translation>%1 қолдауы</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -477,14 +477,14 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Nepavyko paleisti komandos.</translation> <translation>Nepavyko paleisti komandos.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Nėra apibrėžta šaknies prijungimo vieta, taigi komanda negali būti įvykdyta paskirties aplinkoje.</translation> <translation>Komanda yra vykdoma serverio aplinkoje ir turi žinoti šaknies kelią, tačiau nėra apibrėžtas joks rootMountPoint.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>D&amp;ydis:</translation> <translation>D&amp;ydis:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Užši&amp;fruoti</translation> <translation>Užši&amp;fruoti</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Loginė</translation> <translation>Loginė</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Pagrindinė</translation> <translation>Pagrindinė</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.</translation> <translation>Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.</translation>
</message> </message>
@ -858,7 +858,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>Vėliavėlės:</translation> <translation>Vėliavėlės:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.</translation> <translation>Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>Įdiegti pa&amp;leidyklę skaidinyje:</translation> <translation>Įdiegti pa&amp;leidyklę skaidinyje:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Ar tikrai %1 norite sukurti naują skaidinių lentelę?</translation> <translation>Ar tikrai %1 norite sukurti naują skaidinių lentelę?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>Nepavyksta sukurti naują skaidinį</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>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į.</translation>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2265,7 +2275,7 @@ Išvestis:
<message> <message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="113"/> <location filename="../src/modules/users/SetPasswordJob.cpp" line="113"/>
<source>rootMountPoint is %1</source> <source>rootMountPoint is %1</source>
<translation>šaknies prijungimo vieta yra %1</translation> <translation>rootMountPoint yra %1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/> <location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/>
@ -2571,7 +2581,7 @@ Išvestis:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;sistemai %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Autorių teisės 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Autorių teisės 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Dėkojame: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ir &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares vertėjų komandai&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; kūrimą remia &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Išlaisvinanti programinė įranga.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;sistemai %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Autorių teisės 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Autorių teisės 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Dėkojame: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ir &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares vertėjų komandai&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; kūrimą remia &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Išlaisvinanti programinė įranga.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 palaikymas</translation> <translation>%1 palaikymas</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>ि</translation> <translation>ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>ि</translation> <translation>ि</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>

View File

@ -477,13 +477,13 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation>St&amp;ørrelse:</translation> <translation>St&amp;ørrelse:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logisk</translation> <translation>Logisk</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primær</translation> <translation>Primær</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -477,13 +477,13 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>&amp;Grootte:</translation> <translation>&amp;Grootte:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Versleutelen</translation> <translation>&amp;Versleutelen</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logisch</translation> <translation>Logisch</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primair</translation> <translation>Primair</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.</translation> <translation>Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.</translation>
</message> </message>
@ -858,7 +858,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>Vlaggen:</translation> <translation>Vlaggen:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.</translation> <translation>Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>Installeer boot&amp;loader op:</translation> <translation>Installeer boot&amp;loader op:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Weet u zeker dat u een nieuwe partitie tabel wil maken op %1?</translation> <translation>Weet u zeker dat u een nieuwe partitie tabel wil maken op %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 ondersteuning</translation> <translation>%1 ondersteuning</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Nie można wykonać polecenia.</translation> <translation>Nie można wykonać polecenia.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Nie określono rootMountPoint, więc polecenie nie może zostać wykonane w docelowym środowisku.</translation> <translation>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).</translation>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>Ro&amp;zmiar:</translation> <translation>Ro&amp;zmiar:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Zaszy%fruj</translation> <translation>Zaszy%fruj</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logiczna</translation> <translation>Logiczna</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Podstawowa</translation> <translation>Podstawowa</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punkt montowania jest już używany. Proszę wybrać inny.</translation> <translation>Punkt montowania jest już używany. Proszę wybrać inny.</translation>
</message> </message>
@ -858,7 +858,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>Flagi:</translation> <translation>Flagi:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punkt montowania jest już używany. Proszę wybrać inny.</translation> <translation>Punkt montowania jest już używany. Proszę wybrać inny.</translation>
</message> </message>
@ -1465,7 +1465,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="265"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="265"/>
<source>Fatal failure</source> <source>Fatal failure</source>
<translation>Krytyczne niepowodzenie</translation> <translation>Błąd krytyczny</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="267"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="267"/>
@ -1682,10 +1682,20 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>Zainsta&amp;luj program rozruchowy na:</translation> <translation>Zainsta&amp;luj program rozruchowy na:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Czy na pewno chcesz utworzyć nową tablicę partycji na %1?</translation> <translation>Czy na pewno chcesz utworzyć nową tablicę partycji na %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>Nie można utworzyć nowej partycji</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>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.</translation>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -1814,7 +1824,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message> <message>
<location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="67"/> <location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="67"/>
<source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source> <source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source>
<translation type="unfinished"/> <translation>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.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2387,28 +2397,28 @@ Wyjście:
<message> <message>
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="104"/> <location filename="../src/modules/tracking/TrackingJobs.cpp" line="104"/>
<source>Machine feedback</source> <source>Machine feedback</source>
<translation type="unfinished"/> <translation>Maszynowa informacja zwrotna</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="114"/> <location filename="../src/modules/tracking/TrackingJobs.cpp" line="114"/>
<source>Configuring machine feedback.</source> <source>Configuring machine feedback.</source>
<translation type="unfinished"/> <translation>Konfiguracja machine feedback</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="133"/> <location filename="../src/modules/tracking/TrackingJobs.cpp" line="133"/>
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="136"/> <location filename="../src/modules/tracking/TrackingJobs.cpp" line="136"/>
<source>Error in machine feedback configuration.</source> <source>Error in machine feedback configuration.</source>
<translation type="unfinished"/> <translation>Błąd w konfiguracji maszynowej informacji zwrotnej.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="134"/> <location filename="../src/modules/tracking/TrackingJobs.cpp" line="134"/>
<source>Could not configure machine feedback correctly, script error %1.</source> <source>Could not configure machine feedback correctly, script error %1.</source>
<translation type="unfinished"/> <translation>Nie można poprawnie skonfigurować maszynowej informacji zwrotnej, błąd skryptu %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="137"/> <location filename="../src/modules/tracking/TrackingJobs.cpp" line="137"/>
<source>Could not configure machine feedback correctly, Calamares error %1.</source> <source>Could not configure machine feedback correctly, Calamares error %1.</source>
<translation type="unfinished"/> <translation>Nie można poprawnie skonfigurować maszynowej informacji zwrotnej, błąd Calamares %1.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2571,7 +2581,7 @@ Wyjście:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;dla %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Prawa autorskie 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Prawa autorskie 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Podziękowania dla: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;zespołu tłumaczy Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Projekt Calamares&lt;/a&gt; jest sponsorowany przez &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;dla %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Prawa autorskie 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Prawa autorskie 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Podziękowania dla: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;zespołu tłumaczy Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Projekt Calamares&lt;/a&gt; jest sponsorowany przez &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Wsparcie %1</translation> <translation>Wsparcie %1</translation>
</message> </message>

View File

@ -479,14 +479,14 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Não foi possível executar o comando.</translation> <translation>Não foi possível executar o comando.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>O comando não pode ser executado no ambiente de destino porque o rootMontPoint não foi definido.</translation> <translation>O comando é executado no ambiente do hospedeiro e precisa saber o caminho root, mas nenhum rootMountPoint foi definido.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -550,27 +550,27 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<translation>&amp;Tamanho:</translation> <translation>&amp;Tamanho:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Criptografar</translation> <translation>&amp;Criptografar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Lógica</translation> <translation>Lógica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primária</translation> <translation>Primária</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Ponto de montagem em uso. Por favor, selecione outro.</translation> <translation>Ponto de montagem em uso. Por favor, selecione outro.</translation>
</message> </message>
@ -860,7 +860,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<translation>Marcadores:</translation> <translation>Marcadores:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Ponto de montagem em uso. Por favor, selecione outro.</translation> <translation>Ponto de montagem em uso. Por favor, selecione outro.</translation>
</message> </message>
@ -1684,10 +1684,20 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
<translation>Insta&amp;lar o gerenciador de inicialização em:</translation> <translation>Insta&amp;lar o gerenciador de inicialização em:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Você tem certeza de que deseja criar uma nova tabela de partições em %1?</translation> <translation>Você tem certeza de que deseja criar uma nova tabela de partições em %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>Não foi possível criar uma nova partição</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>A tabela de partições %1 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.</translation>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2573,7 +2583,7 @@ Saída:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;para %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e às &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;equipes de tradução do Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;O desenvolvimento do &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; tem apoio de &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;para %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e às &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;equipes de tradução do Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;O desenvolvimento do &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; tem apoio de &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 suporte</translation> <translation>%1 suporte</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Não foi possível correr o comando.</translation> <translation>Não foi possível correr o comando.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Não está definido o Ponto de Montagem root, portanto o comando não pode ser corrido no ambiente alvo.</translation> <translation>O comando corre no ambiente do host e precisa de conhecer o caminho root, mas nenhum Ponto de Montagem root está definido.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>Ta&amp;manho:</translation> <translation>Ta&amp;manho:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>En&amp;criptar</translation> <translation>En&amp;criptar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Lógica</translation> <translation>Lógica</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primária</translation> <translation>Primária</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Ponto de montagem em uso. Por favor selecione outro.</translation> <translation>Ponto de montagem em uso. Por favor selecione outro.</translation>
</message> </message>
@ -858,7 +858,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>Flags:</translation> <translation>Flags:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Ponto de montagem em uso. Por favor selecione outro.</translation> <translation>Ponto de montagem em uso. Por favor selecione outro.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>Instalar &amp;carregador de arranque em:</translation> <translation>Instalar &amp;carregador de arranque em:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Tem certeza de que deseja criar uma nova tabela de partições em %1?</translation> <translation>Tem certeza de que deseja criar uma nova tabela de partições em %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>Não é possível criar nova partição</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>A tabela de partições em %1 tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, por favor remova uma partição primária e adicione uma partição estendida.</translation>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Saída de Dados:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;para %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Direitos de cópia 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Direitos de cópia 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e à &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;equipa de tradutores do Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; desenvolvimento patrocinado por &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;para %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Direitos de cópia 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Direitos de cópia 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e à &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;equipa de tradutores do Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; desenvolvimento patrocinado por &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 suporte</translation> <translation>%1 suporte</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Nu s-a putut executa comanda.</translation> <translation>Nu s-a putut executa comanda.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Nu este definit niciun rootMountPoint, așadar comanda nu a putut fi executată în mediul dorit.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>&amp;rime:</translation> <translation>&amp;rime:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Criptează</translation> <translation>&amp;Criptează</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logică</translation> <translation>Logică</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primară</translation> <translation>Primară</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punct de montare existent. rugăm alegeţi altul.</translation> <translation>Punct de montare existent. rugăm alegeţi altul.</translation>
</message> </message>
@ -858,7 +858,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>Flags:</translation> <translation>Flags:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Punct de montare existent. rugăm alegeţi altul.</translation> <translation>Punct de montare existent. rugăm alegeţi altul.</translation>
</message> </message>
@ -1685,10 +1685,20 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>Instalează boot&amp;loaderul pe:</translation> <translation>Instalează boot&amp;loaderul pe:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Sigur doriți creați o nouă tabelă de partiție pe %1?</translation> <translation>Sigur doriți creați o nouă tabelă de partiție pe %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2574,7 +2584,7 @@ Output
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Mulțumiri: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg și &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;echipei de traducători Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt;, dezvoltare sponsorizată de &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Mulțumiri: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg și &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;echipei de traducători Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt;, dezvoltare sponsorizată de &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 suport</translation> <translation>%1 suport</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Не удалось выполнить команду.</translation> <translation>Не удалось выполнить команду.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation>Ра&amp;змер:</translation> <translation>Ра&amp;змер:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Ши&amp;фровать</translation> <translation>Ши&amp;фровать</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Логический</translation> <translation>Логический</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Основной</translation> <translation>Основной</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Точка монтирования уже занята. Пожалуйста, выберете другую.</translation> <translation>Точка монтирования уже занята. Пожалуйста, выберете другую.</translation>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Флаги: </translation> <translation>Флаги: </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Точка монтирования уже занята. Пожалуйста, выберете другую.</translation> <translation>Точка монтирования уже занята. Пожалуйста, выберете другую.</translation>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation>Установить &amp;загрузчик в:</translation> <translation>Установить &amp;загрузчик в:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Вы уверены, что хотите создать новую таблицу разделов на %1?</translation> <translation>Вы уверены, что хотите создать новую таблицу разделов на %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 поддержка</translation> <translation>%1 поддержка</translation>
</message> </message>

View File

@ -477,14 +477,14 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Nepodarilo sa spustiť príkaz.</translation> <translation>Nepodarilo sa spustiť príkaz.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Nie je definovaný parameter rootMountPoint, takže príkaz nemôže byť spustený v cieľovom prostredí.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Veľ&amp;kosť:</translation> <translation>Veľ&amp;kosť:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Zaši&amp;frovať</translation> <translation>Zaši&amp;frovať</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logický</translation> <translation>Logický</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primárny</translation> <translation>Primárny</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Bod pripojenia sa používa. Prosím, vyberte iný.</translation> <translation>Bod pripojenia sa používa. Prosím, vyberte iný.</translation>
</message> </message>
@ -858,7 +858,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Značky:</translation> <translation>Značky:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Bod pripojenia sa používa. Prosím, vyberte iný.</translation> <translation>Bod pripojenia sa používa. Prosím, vyberte iný.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Nainštalovať &amp;zavádzač na:</translation> <translation>Nainštalovať &amp;zavádzač na:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %1?</translation> <translation>Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Výstup:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;pre distribúciu %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Autorské práva 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Autorské práva 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Poďakovanie: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;tím prekladateľov inštalátora Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Vývoj inštalátora &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; je podporovaný spoločnosťou &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;pre distribúciu %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Autorské práva 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Autorské práva 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Poďakovanie: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;tím prekladateľov inštalátora Calamares&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Vývoj inštalátora &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; je podporovaný spoločnosťou &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Podpora distribúcie %1</translation> <translation>Podpora distribúcie %1</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation>Ve&amp;likost</translation> <translation>Ve&amp;likost</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logičen</translation> <translation>Logičen</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primaren</translation> <translation>Primaren</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation>Zastavice:</translation> <translation>Zastavice:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %1?</translation> <translation>Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -9,12 +9,12 @@
<message> <message>
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="79"/> <location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="79"/>
<source>This system was started with an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from an EFI environment, this installer must deploy a boot loader application, like &lt;strong&gt;GRUB&lt;/strong&gt; or &lt;strong&gt;systemd-boot&lt;/strong&gt; on an &lt;strong&gt;EFI System Partition&lt;/strong&gt;. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own.</source> <source>This system was started with an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from an EFI environment, this installer must deploy a boot loader application, like &lt;strong&gt;GRUB&lt;/strong&gt; or &lt;strong&gt;systemd-boot&lt;/strong&gt; on an &lt;strong&gt;EFI System Partition&lt;/strong&gt;. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own.</source>
<translation>Ky sistem qe nisur me një mjedis nisjesh &lt;strong&gt;EFI&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;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 &lt;strong&gt;GRUB&lt;/strong&gt; ose &lt;strong&gt;systemd-boot&lt;/strong&gt; në një &lt;strong&gt;Ndare EFI Sistemi&lt;/strong&gt;. Kjo bëhet vetvetiu, hiq rastin kur zgjidhni pjesëzim dorazi, rast në të cilin duhet ta zgjidhni apo krijoni ju vetë.</translation> <translation>Ky sistem qe nisur me një mjedis nisjesh &lt;strong&gt;EFI&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;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 &lt;strong&gt;GRUB&lt;/strong&gt; ose &lt;strong&gt;systemd-boot&lt;/strong&gt; në një &lt;strong&gt;Pjesë EFI Sistemi&lt;/strong&gt;. Kjo bëhet vetvetiu, hiq rastin kur zgjidhni pjesëzim dorazi, rast në të cilin duhet ta zgjidhni apo krijoni ju vetë.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="91"/> <location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="91"/>
<source>This system was started with a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from a BIOS environment, this installer must install a boot loader, like &lt;strong&gt;GRUB&lt;/strong&gt;, either at the beginning of a partition or on the &lt;strong&gt;Master Boot Record&lt;/strong&gt; 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.</source> <source>This system was started with a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from a BIOS environment, this installer must install a boot loader, like &lt;strong&gt;GRUB&lt;/strong&gt;, either at the beginning of a partition or on the &lt;strong&gt;Master Boot Record&lt;/strong&gt; 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.</source>
<translation>Ky sistem qe nisur me një mjedis nisjesh &lt;strong&gt;BIOS&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;Që të formësojë nisjen nga një mjedis BIOS, ky instalues duhet të instalojë një ngarkues nisjesh, të tillë si &lt;strong&gt;GRUB&lt;/strong&gt;, ose në krye të n jë ndarjeje, ose te &lt;strong&gt;Master Boot Record&lt;/strong&gt; 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ë.</translation> <translation>Ky sistem qe nisur me një mjedis nisjesh &lt;strong&gt;BIOS&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;Që të formësojë nisjen nga një mjedis BIOS, ky instalues duhet të instalojë një ngarkues nisjesh, të tillë si &lt;strong&gt;GRUB&lt;/strong&gt;, ose në krye të një pjese, ose te &lt;strong&gt;Master Boot Record&lt;/strong&gt; 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ë.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -27,12 +27,12 @@
<message> <message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="76"/> <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="76"/>
<source>Boot Partition</source> <source>Boot Partition</source>
<translation>Ndarje Nisjesh</translation> <translation>Pjesë Nisjesh</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="81"/> <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="81"/>
<source>System Partition</source> <source>System Partition</source>
<translation>Ndarje Sistemi</translation> <translation>Pjesë Sistemi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="111"/> <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="111"/>
@ -264,7 +264,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/libcalamares/PythonHelper.cpp" line="284"/> <location filename="../src/libcalamares/PythonHelper.cpp" line="284"/>
<source>unparseable Python error</source> <source>unparseable Python error</source>
<translation>Gabim kodi Python papërtypshëm dot</translation> <translation>Gabim kod Python i papërtypshëm dot</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/PythonHelper.cpp" line="324"/> <location filename="../src/libcalamares/PythonHelper.cpp" line="324"/>
@ -310,7 +310,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="174"/> <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="174"/>
<source>For best results, please ensure that this computer:</source> <source>For best results, please ensure that this computer:</source>
<translation>Për përfundime mirë, ju lutemi, garantoni ky kompjuter:</translation> <translation>Për përfundime mira, ju lutemi, garantoni ky kompjuter:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="202"/> <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="202"/>
@ -333,7 +333,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="235"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="235"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source> <source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Ndarje dorazi&lt;/strong&gt;&lt;br/&gt;Ndarjet mund ti krijoni dhe ripërmasoni ju vetë.</translation> <translation>&lt;strong&gt;Pjesëzim dorazi&lt;/strong&gt;&lt;br/&gt;Pjesët mund ti krijoni dhe ripërmasoni ju vetë.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="998"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="998"/>
@ -343,7 +343,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="942"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="942"/>
<source>%1 will be shrunk to %2MB and a new %3MB partition will be created for %4.</source> <source>%1 will be shrunk to %2MB and a new %3MB partition will be created for %4.</source>
<translation>%1 do zvogëlohet %2MB dhe për %4 do krijohet një ndarje e re %3MB.</translation> <translation>%1 do zvogëlohet %2MB dhe për %4 do krijohet një pjesë e re %3MB.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="126"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="126"/>
@ -361,37 +361,37 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="795"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="795"/>
<source>Reuse %1 as home partition for %2.</source> <source>Reuse %1 as home partition for %2.</source>
<translation>Ripërdore %1 si ndarjen shtëpi për %2.</translation> <translation>Ripërdore %1 si pjesën shtëpi për %2.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="925"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="925"/>
<source>&lt;strong&gt;Select a partition to shrink, then drag the bottom bar to resize&lt;/strong&gt;</source> <source>&lt;strong&gt;Select a partition to shrink, then drag the bottom bar to resize&lt;/strong&gt;</source>
<translation>&lt;strong&gt;Përzgjidhni një ndarje zvogëlohet, mandej tërhiqni shtyllën e poshtme ta ripërmasoni&lt;/strong&gt;</translation> <translation>&lt;strong&gt;Përzgjidhni një pjesë zvogëlohet, mandej tërhiqni shtyllën e poshtme ta ripërmasoni&lt;/strong&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1040"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1040"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source> <source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<translation>&lt;strong&gt;Përzgjidhni një ndarje ku instalohet&lt;/strong&gt;</translation> <translation>&lt;strong&gt;Përzgjidhni një pjesë ku instalohet&lt;/strong&gt;</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1096"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1096"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source> <source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<translation> këtë sistem smund gjendet gjëkundi një ndarje EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi rregulloni %1.</translation> <translation> këtë sistem sgjendet gjëkundi një pjesë EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi rregulloni %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1105"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1105"/>
<source>The EFI system partition at %1 will be used for starting %2.</source> <source>The EFI system partition at %1 will be used for starting %2.</source>
<translation>Për nisjen e %2 do përdoret ndarja EFI e sistemit te %1.</translation> <translation>Për nisjen e %2 do përdoret pjesa EFI e sistemit te %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1113"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1113"/>
<source>EFI system partition:</source> <source>EFI system partition:</source>
<translation>Ndarje Sistemi EFI:</translation> <translation>Pjesë Sistemi EFI:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1200"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1200"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source> <source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kjo pajisje depozitimi përmban %1 . Çdo donit bënito?&lt;br/&gt;Do jeni gjendje rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit bëhet çfarëdo ndryshimi.</translation> <translation>Kjo pajisje depozitimi përmban %1 . Çdo donit bënit?&lt;br/&gt;Do jeni gjendje rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit bëhet çfarëdo ndryshimi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1205"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1205"/>
@ -412,7 +412,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1260"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1260"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1284"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1284"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source> <source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instaloje krah tij&lt;/strong&gt;&lt;br/&gt;Instaluesi do zvogëlojë një ndarje për bërë vend për %1.</translation> <translation>&lt;strong&gt;Instaloje krah tij&lt;/strong&gt;&lt;br/&gt;Instaluesi do zvogëlojë një pjesë për bërë vend për %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
@ -420,7 +420,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1268"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1268"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1292"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1292"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source> <source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Zëvendëso një ndarje&lt;/strong&gt;&lt;br/&gt;Zëvendëson një ndarje me %1.</translation> <translation>&lt;strong&gt;Zëvendëso një pjesë&lt;/strong&gt;&lt;br/&gt;Zëvendëson një pjesë me %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1255"/> <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1255"/>
@ -461,7 +461,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="49"/> <location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="49"/>
<source>Clearing all temporary mounts.</source> <source>Clearing all temporary mounts.</source>
<translation>Po hiqenn krejt montimet e përkohshme.</translation> <translation>Po hiqen krejt montimet e përkohshme.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="60"/> <location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="60"/>
@ -477,14 +477,14 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Su xhirua dot urdhri.</translation> <translation>Su xhirua dot urdhri.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>Ska caktuar rootMountPoint, ndaj urdhri smund xhirohet mjedisin e synuar.</translation> <translation>Urdhri xhirohet mjedisin strehë dhe është e nevojshme dijë shtegun për rrënjën, por nuk ka rootMountPoint përcaktuar.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -500,7 +500,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="14"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="14"/>
<source>Create a Partition</source> <source>Create a Partition</source>
<translation>Krijoni një Ndarje</translation> <translation>Krijoni një Pjesë</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
@ -510,7 +510,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
<source>Partition &amp;Type:</source> <source>Partition &amp;Type:</source>
<translation>&amp;Lloj Ndarjeje:</translation> <translation>&amp;Lloj Pjese:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="67"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="67"/>
@ -548,27 +548,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation>&amp;Madhësi:</translation> <translation>&amp;Madhësi:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>&amp;Fshehtëzoje</translation> <translation>&amp;Fshehtëzoje</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logjik</translation> <translation>Logjike</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Parësor</translation> <translation>Parësore</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.</translation> <translation>Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.</translation>
</message> </message>
@ -578,22 +578,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="44"/> <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="44"/>
<source>Create new %2MB partition on %4 (%3) with file system %1.</source> <source>Create new %2MB partition on %4 (%3) with file system %1.</source>
<translation>Krijo ndarje re %2MB te %4 (%3) me sistem kartelash %1.</translation> <translation>Krijo pjesë re %2MB te %4 (%3) me sistem kartelash %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="55"/> <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="55"/>
<source>Create new &lt;strong&gt;%2MB&lt;/strong&gt; partition on &lt;strong&gt;%4&lt;/strong&gt; (%3) with file system &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Create new &lt;strong&gt;%2MB&lt;/strong&gt; partition on &lt;strong&gt;%4&lt;/strong&gt; (%3) with file system &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Krijo ndarje re &lt;strong&gt;%2MB&lt;/strong&gt; te &lt;strong&gt;%4&lt;/strong&gt; (%3) me sistem kartelash &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Krijo pjesë re &lt;strong&gt;%2MB&lt;/strong&gt; te &lt;strong&gt;%4&lt;/strong&gt; (%3) me sistem kartelash &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="67"/> <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="67"/>
<source>Creating new %1 partition on %2.</source> <source>Creating new %1 partition on %2.</source>
<translation>Po krijohet ndarje e re %1 te %2.</translation> <translation>Po krijohet pjesë e re %1 te %2.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="79"/> <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="79"/>
<source>The installer failed to create partition on disk &apos;%1&apos;.</source> <source>The installer failed to create partition on disk &apos;%1&apos;.</source>
<translation>Instaluesi sarriti krijojë ndarje diskun &apos;%1&apos;.</translation> <translation>Instaluesi sarriti krijojë pjesë diskun &apos;%1&apos;.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -601,17 +601,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="20"/> <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="20"/>
<source>Create Partition Table</source> <source>Create Partition Table</source>
<translation>Krijo Tabelë Ndarjesh</translation> <translation>Krijo Tabelë Pjesësh</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="39"/> <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="39"/>
<source>Creating a new partition table will delete all existing data on the disk.</source> <source>Creating a new partition table will delete all existing data on the disk.</source>
<translation>Krijimi i një tabele re ndarjesh do fshijë krejt dhënat ekzistuese disk.</translation> <translation>Krijimi i një tabele re pjesësh do fshijë krejt dhënat ekzistuese disk.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="65"/> <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="65"/>
<source>What kind of partition table do you want to create?</source> <source>What kind of partition table do you want to create?</source>
<translation>Çlloj tabele ndarjesh doni krijoni?</translation> <translation>Çlloj tabele pjesësh doni krijoni?</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="72"/> <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="72"/>
@ -621,7 +621,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="82"/> <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="82"/>
<source>GUID Partition Table (GPT)</source> <source>GUID Partition Table (GPT)</source>
<translation>Tabelë Ndarjesh GUID (GPT)</translation> <translation>Tabelë Pjesësh GUID (GPT)</translation>
</message> </message>
</context> </context>
<context> <context>
@ -629,22 +629,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="45"/> <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="45"/>
<source>Create new %1 partition table on %2.</source> <source>Create new %1 partition table on %2.</source>
<translation>Krijo tabelë re ndarjesh %1 te %2.</translation> <translation>Krijo tabelë re pjesësh %1 te %2.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="52"/> <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="52"/>
<source>Create new &lt;strong&gt;%1&lt;/strong&gt; partition table on &lt;strong&gt;%2&lt;/strong&gt; (%3).</source> <source>Create new &lt;strong&gt;%1&lt;/strong&gt; partition table on &lt;strong&gt;%2&lt;/strong&gt; (%3).</source>
<translation>Krijoni tabelë ndarjeje re &lt;strong&gt;%1&lt;/strong&gt; te &lt;strong&gt;%2&lt;/strong&gt; (%3).</translation> <translation>Krijoni tabelë pjesësh re &lt;strong&gt;%1&lt;/strong&gt; te &lt;strong&gt;%2&lt;/strong&gt; (%3).</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="62"/> <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="62"/>
<source>Creating new %1 partition table on %2.</source> <source>Creating new %1 partition table on %2.</source>
<translation>Po krijohet tabelë e re ndarjesh %1 te %2.</translation> <translation>Po krijohet tabelë e re pjesësh %1 te %2.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="72"/> <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="72"/>
<source>The installer failed to create a partition table on %1.</source> <source>The installer failed to create a partition table on %1.</source>
<translation>Instaluesi sarriti krijojë tabelë ndarjesh diskun %1.</translation> <translation>Instaluesi sarriti krijojë tabelë pjesësh diskun %1.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -720,22 +720,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="40"/> <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="40"/>
<source>Delete partition %1.</source> <source>Delete partition %1.</source>
<translation>Fshije ndarjen %1.</translation> <translation>Fshije pjesën %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="48"/> <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="48"/>
<source>Delete partition &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Delete partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Fshije ndarjen &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Fshije pjesën &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="56"/> <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="56"/>
<source>Deleting partition %1.</source> <source>Deleting partition %1.</source>
<translation>Po fshihet ndarja %1.</translation> <translation>Po fshihet pjesa %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="68"/> <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="68"/>
<source>The installer failed to delete partition %1.</source> <source>The installer failed to delete partition %1.</source>
<translation>Instaluesi dështoi fshirjen e ndarjes %1.</translation> <translation>Instaluesi dështoi fshirjen e pjesës %1.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -743,32 +743,32 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="150"/> <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="150"/>
<source>The type of &lt;strong&gt;partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;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.&lt;br&gt;This installer will keep the current partition table unless you explicitly choose otherwise.&lt;br&gt;If unsure, on modern systems GPT is preferred.</source> <source>The type of &lt;strong&gt;partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;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.&lt;br&gt;This installer will keep the current partition table unless you explicitly choose otherwise.&lt;br&gt;If unsure, on modern systems GPT is preferred.</source>
<translation>Lloji i &lt;strong&gt;tabelës ndarjeve&lt;/strong&gt; në pajisjen e përzgjedhur të depozitimeve.&lt;br&gt;&lt;br&gt;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.&lt;br&gt;Ky instalues do të ruajë tabelën e tanishme të ndarjeve, veç në zgjedhshi shprehimisht ndryshe.&lt;br&gt;Nëse sjeni i sigurt, në sisteme moderne parapëlqehet GPT.</translation> <translation>Lloji i &lt;strong&gt;tabelës pjesëve&lt;/strong&gt; në pajisjen e përzgjedhur të depozitimeve.&lt;br&gt;&lt;br&gt;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.&lt;br&gt;Ky instalues do të ruajë tabelën e tanishme të pjesëve, veç në zgjedhshi shprehimisht ndryshe.&lt;br&gt;Nëse sjeni i sigurt, në sisteme moderne parapëlqehet GPT.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="107"/> <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="107"/>
<source>This device has a &lt;strong&gt;%1&lt;/strong&gt; partition table.</source> <source>This device has a &lt;strong&gt;%1&lt;/strong&gt; partition table.</source>
<translation>Kjo pajisje ka një tabelë ndarjesh &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Kjo pajisje ka një tabelë pjesësh &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="114"/> <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="114"/>
<source>This is a &lt;strong&gt;loop&lt;/strong&gt; device.&lt;br&gt;&lt;br&gt;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.</source> <source>This is a &lt;strong&gt;loop&lt;/strong&gt; device.&lt;br&gt;&lt;br&gt;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.</source>
<translation>Kjo është një pajisje &lt;strong&gt;loop&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;Ë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.</translation> <translation>Kjo është një pajisje &lt;strong&gt;loop&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;Ë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.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="121"/> <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="121"/>
<source>This installer &lt;strong&gt;cannot detect a partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;The device either has no partition table, or the partition table is corrupted or of an unknown type.&lt;br&gt;This installer can create a new partition table for you, either automatically, or through the manual partitioning page.</source> <source>This installer &lt;strong&gt;cannot detect a partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;The device either has no partition table, or the partition table is corrupted or of an unknown type.&lt;br&gt;This installer can create a new partition table for you, either automatically, or through the manual partitioning page.</source>
<translation>Ky instalues &lt;strong&gt;spikas dot tabelë ndarjesh&lt;/strong&gt; te pajisja e depozitimit e përzgjedhur.&lt;br&gt;&lt;br&gt;Ose pajisja ska tabelë ndarjesh, ose tabela e ndarjeve është e dëmtuar ose e një lloji të panjohur.&lt;br&gt;Ky instalues mund të krijojë për ju një tabelë të re ndarjesh, ose vetvetiu, ose përmes faqes së pjesëzimit dorazi.</translation> <translation>Ky instalues &lt;strong&gt;spikas dot tabelë pjesësh&lt;/strong&gt; te pajisja e depozitimit e përzgjedhur.&lt;br&gt;&lt;br&gt;Ose pajisja ska tabelë pjesësh, ose tabela e pjesëve është e dëmtuar ose e një lloji të panjohur.&lt;br&gt;Ky instalues mund të krijojë për ju një tabelë të re pjesësh, ose vetvetiu, ose përmes faqes së pjesëzimit dorazi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="131"/> <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="131"/>
<source>&lt;br&gt;&lt;br&gt;This is the recommended partition table type for modern systems which start from an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.</source> <source>&lt;br&gt;&lt;br&gt;This is the recommended partition table type for modern systems which start from an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.</source>
<translation>&lt;br&gt;&lt;br&gt;Ky është lloji i parapëlqyer tabele ndarjesh për sisteme modernë nisen nga një mjedis nisjesh &lt;strong&gt;EFI&lt;/strong&gt;.</translation> <translation>&lt;br&gt;&lt;br&gt;Ky është lloji i parapëlqyer tabele pjesësh për sisteme modernë nisen nga një mjedis nisjesh &lt;strong&gt;EFI&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="137"/> <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="137"/>
<source>&lt;br&gt;&lt;br&gt;This partition table type is only advisable on older systems which start from a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment. GPT is recommended in most other cases.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Warning:&lt;/strong&gt; the MBR partition table is an obsolete MS-DOS era standard.&lt;br&gt;Only 4 &lt;em&gt;primary&lt;/em&gt; partitions may be created, and of those 4, one can be an &lt;em&gt;extended&lt;/em&gt; partition, which may in turn contain many &lt;em&gt;logical&lt;/em&gt; partitions.</source> <source>&lt;br&gt;&lt;br&gt;This partition table type is only advisable on older systems which start from a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment. GPT is recommended in most other cases.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Warning:&lt;/strong&gt; the MBR partition table is an obsolete MS-DOS era standard.&lt;br&gt;Only 4 &lt;em&gt;primary&lt;/em&gt; partitions may be created, and of those 4, one can be an &lt;em&gt;extended&lt;/em&gt; partition, which may in turn contain many &lt;em&gt;logical&lt;/em&gt; partitions.</source>
<translation>&lt;br&gt;&lt;br&gt;Ky lloj tabele ndarjesh është i këshillueshëm vetëm sisteme vjetër cilët nisen nga një mjedis nisjesh &lt;strong&gt;BIOS&lt;/strong&gt;. Në shumicën e rasteve të tjera këshillohet GPT.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Kujdes:&lt;/strong&gt; Tabela e ndarjeve MBR është një standard i vjetruar, i erës MS-DOS.&lt;br&gt;Mund të krijohen vetëm 4 ndarje &lt;em&gt;parësore&lt;/em&gt;, dhe nga këto 4, një mund të jetë ndarje &lt;em&gt;extended&lt;/em&gt;, e cila nga ana e vet mund të përmbajë mjaft ndarje &lt;em&gt;logjike&lt;/em&gt;.</translation> <translation>&lt;br&gt;&lt;br&gt;Ky lloj tabele pjesësh është i këshillueshëm vetëm sisteme vjetër cilët nisen nga një mjedis nisjesh &lt;strong&gt;BIOS&lt;/strong&gt;. Në shumicën e rasteve të tjera këshillohet GPT.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Kujdes:&lt;/strong&gt; Tabela e pjesëve MBR është një standard i vjetruar, i erës MS-DOS.&lt;br&gt;Mund të krijohen vetëm 4 pjesë &lt;em&gt;parësore&lt;/em&gt;, dhe nga këto 4, një mund të jetë pjesë &lt;em&gt;extended&lt;/em&gt;, e cila nga ana e vet mund të përmbajë mjaft pjesë &lt;em&gt;logjike&lt;/em&gt;.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -789,12 +789,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="133"/> <location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="133"/>
<source>Skip writing LUKS configuration for Dracut: &quot;/&quot; partition is not encrypted</source> <source>Skip writing LUKS configuration for Dracut: &quot;/&quot; partition is not encrypted</source>
<translation>Anashkalo shkrim formësiim LUKS për Dracut: ndarja \&quot;/\&quot; sështë e fshehtëzuar</translation> <translation>Anashkalo shkrim formësimi LUKS për Dracut: pjesa \&quot;/\&quot; sështë e fshehtëzuar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="149"/> <location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="149"/>
<source>Failed to open %1</source> <source>Failed to open %1</source>
<translation>Sarriti hapë %1</translation> <translation>Su arrit hapet %1</translation>
</message> </message>
</context> </context>
<context> <context>
@ -810,7 +810,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="20"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="20"/>
<source>Edit Existing Partition</source> <source>Edit Existing Partition</source>
<translation>Përpuno Ndarje Ekzistuese</translation> <translation>Përpuno Pjesën Ekzistuese</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="50"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="50"/>
@ -830,7 +830,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="89"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="89"/>
<source>Warning: Formatting the partition will erase all existing data.</source> <source>Warning: Formatting the partition will erase all existing data.</source>
<translation>Kujdes: Formatimi i ndarjes do fshijë krejt dhënat ekzistuese.</translation> <translation>Kujdes: Formatimi i pjesës do fshijë krejt dhënat ekzistuese.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="99"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="99"/>
@ -858,7 +858,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation>Flamurka:</translation> <translation>Flamurka:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.</translation> <translation>Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.</translation>
</message> </message>
@ -896,27 +896,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="123"/> <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="123"/>
<source>Set partition information</source> <source>Set partition information</source>
<translation>Caktoni dhëna ndarjeje</translation> <translation>Caktoni dhëna pjese</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="147"/> <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="147"/>
<source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition.</source> <source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition.</source>
<translation>Instaloje %1 ndarje sistemi &lt;strong&gt; re&lt;/strong&gt; %2.</translation> <translation>Instaloje %1 pjesë sistemi &lt;strong&gt; re&lt;/strong&gt; %2.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="151"/> <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="151"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Rregullo ndarje &lt;strong&gt;re&lt;/strong&gt; %2 me pikë montimi &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Rregullo pjesë &lt;strong&gt;re&lt;/strong&gt; %2 me pikë montimi &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="159"/> <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="159"/>
<source>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Instaloje %2 te ndarja e sistemit %3 &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Instaloje %2 te pjesa e sistemit %3 &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="164"/> <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="164"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;.</source> <source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation>Rregullo ndarje %3 &lt;strong&gt;%1&lt;/strong&gt; me pikë montimi &lt;strong&gt;%2&lt;/strong&gt;.</translation> <translation>Rregullo pjesë %3 &lt;strong&gt;%1&lt;/strong&gt; me pikë montimi &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="176"/> <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="176"/>
@ -980,22 +980,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="41"/> <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="41"/>
<source>Format partition %1 (file system: %2, size: %3 MB) on %4.</source> <source>Format partition %1 (file system: %2, size: %3 MB) on %4.</source>
<translation>Formatoje ndarjen %1 (sistem kartelash: %2, madhësi: %3 MB) %4.</translation> <translation>Formatoje pjesën %1 (sistem kartelash: %2, madhësi: %3 MB) %4.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="52"/> <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="52"/>
<source>Format &lt;strong&gt;%3MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; with file system &lt;strong&gt;%2&lt;/strong&gt;.</source> <source>Format &lt;strong&gt;%3MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; with file system &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation>Formato ndarje &lt;strong&gt;%3MB&lt;/strong&gt; &lt;strong&gt;%1&lt;/strong&gt; me sistem kartelash &lt;strong&gt;%2&lt;/strong&gt;.</translation> <translation>Formato pjesë &lt;strong&gt;%3MB&lt;/strong&gt; &lt;strong&gt;%1&lt;/strong&gt; me sistem kartelash &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="63"/> <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="63"/>
<source>Formatting partition %1 with file system %2.</source> <source>Formatting partition %1 with file system %2.</source>
<translation>Po formatohet ndarja %1 me sistem kartelash %2.</translation> <translation>Po formatohet pjesa %1 me sistem kartelash %2.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="77"/> <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="77"/>
<source>The installer failed to format partition %1 on disk &apos;%2&apos;.</source> <source>The installer failed to format partition %1 on disk &apos;%2&apos;.</source>
<translation>Instaluesi sarriti formatojë ndarjen %1 diskun &apos;%2&apos;.</translation> <translation>Instaluesi sarriti formatojë pjesën %1 diskun &apos;%2&apos;.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -1088,7 +1088,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/license/LicensePage.cpp" line="118"/> <location filename="../src/modules/license/LicensePage.cpp" line="118"/>
<source>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, the setup procedure cannot continue.</source> <source>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, the setup procedure cannot continue.</source>
<translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues Thjeshtë (EULAs) sipër.&lt;br/&gt;Nëse nuk pajtohemi me kushtet, procedura e rregullimit smund shkojë tej.</translation> <translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues Thjeshtë (EULAs) sipër.&lt;br/&gt;Nëse nuk pajtoheni me kushtet, procedura e rregullimit smund shkojë tej.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/license/LicensePage.cpp" line="124"/> <location filename="../src/modules/license/LicensePage.cpp" line="124"/>
@ -1098,7 +1098,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/license/LicensePage.cpp" line="129"/> <location filename="../src/modules/license/LicensePage.cpp" line="129"/>
<source>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead.</source> <source>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead.</source>
<translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues Thjeshtë (EULAs) sipër.&lt;br/&gt;Nëse nuk pajtohemi me kushtet, nuk do instalohet software pronësor, dhe vend tij do përdoren alternativa nga burimi i hapët.</translation> <translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues Thjeshtë (EULAs) sipër.&lt;br/&gt;Nëse nuk pajtoheni me kushtet, nuk do instalohet software pronësor, dhe vend tij do përdoren alternativa nga burimi i hapët.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/license/LicensePage.cpp" line="159"/> <location filename="../src/modules/license/LicensePage.cpp" line="159"/>
@ -1355,7 +1355,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="202"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="202"/>
<source>The password does not contain enough character classes</source> <source>The password does not contain enough character classes</source>
<translation>Fjalëkalimi nuk përmban klasa mjaftueshme shenjash</translation> <translation>Fjalëkalimi spërmban klasa mjaftueshme shenjash</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="205"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="205"/>
@ -1405,12 +1405,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="225"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="225"/>
<source>The password fails the dictionary check - %1</source> <source>The password fails the dictionary check - %1</source>
<translation>Fjalëkalimi skaloi dot kontrollin kundrejt fjalorit - %1</translation> <translation>Fjalëkalimi skalon dot kontrollin kundrejt fjalorit - %1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="227"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="227"/>
<source>The password fails the dictionary check</source> <source>The password fails the dictionary check</source>
<translation>Fjalëkalimi skaloi dot kontrollin kundrejt fjalorit</translation> <translation>Fjalëkalimi skalon dot kontrollin kundrejt fjalorit</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/users/CheckPWQuality.cpp" line="231"/> <location filename="../src/modules/users/CheckPWQuality.cpp" line="231"/>
@ -1591,12 +1591,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="205"/> <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="205"/>
<source>New partition for %1</source> <source>New partition for %1</source>
<translation>Ndarje e re për %1</translation> <translation>Pjesë e re për %1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="207"/> <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="207"/>
<source>New partition</source> <source>New partition</source>
<translation>Ndarje e re</translation> <translation>Pjesë e re</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="224"/> <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="224"/>
@ -1616,7 +1616,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="141"/> <location filename="../src/modules/partition/core/PartitionModel.cpp" line="141"/>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="173"/> <location filename="../src/modules/partition/core/PartitionModel.cpp" line="173"/>
<source>New partition</source> <source>New partition</source>
<translation>Ndarje e re</translation> <translation>Pjesë e re</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="257"/> <location filename="../src/modules/partition/core/PartitionModel.cpp" line="257"/>
@ -1659,7 +1659,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.ui" line="87"/> <location filename="../src/modules/partition/gui/PartitionPage.ui" line="87"/>
<source>New Partition &amp;Table</source> <source>New Partition &amp;Table</source>
<translation>&amp;Tabelë e Re Ndarjesh</translation> <translation>&amp;Tabelë e Re Pjesësh</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.ui" line="107"/> <location filename="../src/modules/partition/gui/PartitionPage.ui" line="107"/>
@ -1682,9 +1682,19 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation>Instalo &amp;ngarkues nisjesh :</translation> <translation>Instalo &amp;ngarkues nisjesh :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Jeni i sigurt se doni krijoni një tabelë re ndarjesh %1?</translation> <translation>Jeni i sigurt se doni krijoni një tabelë re pjesësh %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation>Skrijohet dot pjesë e re</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>Tabela e pjesëzimit te %1 ka tashmë %2 pjesë parësore, dhe smund shtohen tjera. Ju lutemi, vend kësaj, hiqni një pjesë parësore dhe shtoni një pjesë zgjeruar.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -1697,7 +1707,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="121"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="121"/>
<source>Partitions</source> <source>Partitions</source>
<translation>Ndarje</translation> <translation>Pjesë</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="158"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="158"/>
@ -1712,7 +1722,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="166"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="166"/>
<source>&lt;strong&gt;Replace&lt;/strong&gt; a partition with %1.</source> <source>&lt;strong&gt;Replace&lt;/strong&gt; a partition with %1.</source>
<translation>&lt;strong&gt;Zëvendësojeni&lt;/strong&gt; një ndarje me %1.</translation> <translation>&lt;strong&gt;Zëvendësojeni&lt;/strong&gt; një pjesë me %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="171"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="171"/>
@ -1732,7 +1742,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="196"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="196"/>
<source>&lt;strong&gt;Replace&lt;/strong&gt; a partition on disk &lt;strong&gt;%2&lt;/strong&gt; (%3) with %1.</source> <source>&lt;strong&gt;Replace&lt;/strong&gt; a partition on disk &lt;strong&gt;%2&lt;/strong&gt; (%3) with %1.</source>
<translation>&lt;strong&gt;Zëvendëso&lt;/strong&gt; një ndarje te disku &lt;strong&gt;%2&lt;/strong&gt; (%3) me %1.</translation> <translation>&lt;strong&gt;Zëvendëso&lt;/strong&gt; një pjesë te disku &lt;strong&gt;%2&lt;/strong&gt; (%3) me %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="203"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="203"/>
@ -1757,32 +1767,32 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="399"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="399"/>
<source>No EFI system partition configured</source> <source>No EFI system partition configured</source>
<translation>Ska formësuar ndarje sistemi EFI</translation> <translation>Ska formësuar pjesë sistemi EFI</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="400"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="400"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a FAT32 filesystem with the &lt;strong&gt;esp&lt;/strong&gt; flag enabled and mount point &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;You can continue without setting up an EFI system partition but your system may fail to start.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a FAT32 filesystem with the &lt;strong&gt;esp&lt;/strong&gt; flag enabled and mount point &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;You can continue without setting up an EFI system partition but your system may fail to start.</source>
<translation> niset %1, është e domosdoshme një ndarje sistemi EFI.&lt;br/&gt;&lt;br/&gt; formësoni një ndarje sistemi EFI, kthehuni mbrapsht dhe përzgjidhni ose krijoni një sistem kartelash FAT32 me flamurkën &lt;strong&gt;esp&lt;/strong&gt; të aktivizuar dhe me pikë montimi &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Mund të vazhdoni pa rregulluar një ndarje sistemi EFI, por mundet që sistemi të mos arrijë dot të niset.</translation> <translation> niset %1, është e domosdoshme një pjesë sistemi EFI.&lt;br/&gt;&lt;br/&gt; formësoni një pjesë sistemi EFI, kthehuni mbrapsht dhe përzgjidhni ose krijoni një sistem kartelash FAT32 me flamurkën &lt;strong&gt;esp&lt;/strong&gt; të aktivizuar dhe me pikë montimi &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Mund të vazhdoni pa rregulluar një pjesë sistemi EFI, por mundet që sistemi të mos arrijë dot të niset.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="413"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="413"/>
<source>EFI system partition flag not set</source> <source>EFI system partition flag not set</source>
<translation>Sështë vënë flamurkë EFI ndarjeje sistemi</translation> <translation>Sështë vënë flamurkë EFI pjese sistemi</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="414"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="414"/>
<source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;A partition was configured with mount point &lt;strong&gt;%2&lt;/strong&gt; but its &lt;strong&gt;esp&lt;/strong&gt; flag is not set.&lt;br/&gt;To set the flag, go back and edit the partition.&lt;br/&gt;&lt;br/&gt;You can continue without setting the flag but your system may fail to start.</source> <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;A partition was configured with mount point &lt;strong&gt;%2&lt;/strong&gt; but its &lt;strong&gt;esp&lt;/strong&gt; flag is not set.&lt;br/&gt;To set the flag, go back and edit the partition.&lt;br/&gt;&lt;br/&gt;You can continue without setting the flag but your system may fail to start.</source>
<translation> niset %1, është e domosdoshme një ndarje sistemi EFI.&lt;br/&gt;&lt;br/&gt;Është formësuar një ndarje me pikë montimi &lt;strong&gt;%2&lt;/strong&gt;, por pa i vënë flamurkën &lt;strong&gt;esp&lt;/strong&gt;.&lt;br/&gt;Që tia vini, kthehuni mbrapsht dhe përpunoni ndarjen.&lt;br/&gt;&lt;br/&gt;Mund të vazhdoni pa i vënë flamurkën, por mundet që sistemi të mos arrijë dot të niset.</translation> <translation> niset %1, është e domosdoshme një pjesë sistemi EFI.&lt;br/&gt;&lt;br/&gt;Është formësuar një pjesë me pikë montimi &lt;strong&gt;%2&lt;/strong&gt;, por pa i vënë flamurkën &lt;strong&gt;esp&lt;/strong&gt;.&lt;br/&gt;Që tia vini, kthehuni mbrapsht dhe përpunoni pjesë.&lt;br/&gt;&lt;br/&gt;Mund të vazhdoni pa i vënë flamurkën, por mundet që sistemi të mos arrijë dot të niset.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="449"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="449"/>
<source>Boot partition not encrypted</source> <source>Boot partition not encrypted</source>
<translation>Ndarje nisjesh e pafshehtëzuar</translation> <translation>Pjesë nisjesh e pafshehtëzuar</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="450"/> <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="450"/>
<source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source> <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
<translation>Tok me ndarjen e fshehtëzuar &lt;em&gt;root&lt;/em&gt; qe rregulluar edhe një ndarje &lt;em&gt;boot&lt;/em&gt; veçmas, por ndarja &lt;em&gt;boot&lt;/em&gt; sështë e fshehtëzuar.&lt;br/&gt;&lt;br/&gt;Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një ndarje të pafshehtëzuar.&lt;br/&gt;Mund të vazhdoni nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.&lt;br/&gt;Që të fshehtëzoni ndarjen &lt;em&gt;boot&lt;/em&gt;, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të ndarjes &lt;strong&gt;Fshehtëzoje&lt;/strong&gt;.</translation> <translation>Tok me pjesën e fshehtëzuar &lt;em&gt;root&lt;/em&gt; qe rregulluar edhe një pjesë &lt;em&gt;boot&lt;/em&gt; veçmas, por pjesa &lt;em&gt;boot&lt;/em&gt; sështë e fshehtëzuar.&lt;br/&gt;&lt;br/&gt;Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një pjesë të pafshehtëzuar.&lt;br/&gt;Mund të vazhdoni nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.&lt;br/&gt;Që të fshehtëzoni pjesën &lt;em&gt;boot&lt;/em&gt;, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të pjesës &lt;strong&gt;Fshehtëzoje&lt;/strong&gt;.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -1814,7 +1824,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message> <message>
<location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="67"/> <location filename="../src/modules/plasmalnf/PlasmaLnfPage.cpp" line="67"/>
<source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source> <source>Please choose a look-and-feel for the KDE Plasma Desktop. You can also skip this step and configure the look-and-feel once the system is installed. Clicking on a look-and-feel selection will give you a live preview of that look-and-feel.</source>
<translation>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 jetë instaluar sistemi. Klikimi mbi një përzgjedhje look-and-feel do tju japë një paraparje atypëratyshme saj.</translation> <translation>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 jetë instaluar sistemi. Klikimi mbi një përzgjedhje për pamje dhe ndjesi do tju japë një paraparje atypëratyshme tyre.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -1876,12 +1886,12 @@ Përfundim:
<message> <message>
<location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="290"/> <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="290"/>
<source>External command failed to finish.</source> <source>External command failed to finish.</source>
<translation>Udhri i jashtëm sarriti përfundohej.</translation> <translation>Su arrit përfundohej urdhër i jashtëm.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="291"/> <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="291"/>
<source>Command &lt;i&gt;%1&lt;/i&gt; failed to finish in %2 seconds.</source> <source>Command &lt;i&gt;%1&lt;/i&gt; failed to finish in %2 seconds.</source>
<translation>Urdhri &lt;i&gt;%1&lt;/i&gt; sarriti të përfundohej në %2 sekonda.</translation> <translation>Su arrit përfundohej urdhri &lt;i&gt;%1&lt;/i&gt; në %2 sekonda.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="297"/> <location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="297"/>
@ -1930,7 +1940,7 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="49"/> <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="49"/>
<source>Unpartitioned space or unknown partition table</source> <source>Unpartitioned space or unknown partition table</source>
<translation>Hapësirë e papjesëzuar ose tabelë e panjohur ndarjesh</translation> <translation>Hapësirë e papjesëzuar ose tabelë e panjohur pjesësh</translation>
</message> </message>
</context> </context>
<context> <context>
@ -1943,59 +1953,59 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="134"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="134"/>
<source>Select where to install %1.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;this will delete all files on the selected partition.</source> <source>Select where to install %1.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;this will delete all files on the selected partition.</source>
<translation>Përzgjidhni ku instalohet %1.&lt;br/&gt;&lt;font color=\&quot;red\&quot;&gt;Kujdes: &lt;/font&gt;kjo do të sjellë fshirjen e krejt kartelave në ndarjen e përzgjedhur.</translation> <translation>Përzgjidhni ku instalohet %1.&lt;br/&gt;&lt;font color=\&quot;red\&quot;&gt;Kujdes: &lt;/font&gt;kjo do të sjellë fshirjen e krejt kartelave në pjesën e përzgjedhur.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="160"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="160"/>
<source>The selected item does not appear to be a valid partition.</source> <source>The selected item does not appear to be a valid partition.</source>
<translation>Objekti i përzgjedhur sduket se është ndarje e vlefshme.</translation> <translation>Objekti i përzgjedhur sduket se është pjesë e vlefshme.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="168"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="168"/>
<source>%1 cannot be installed on empty space. Please select an existing partition.</source> <source>%1 cannot be installed on empty space. Please select an existing partition.</source>
<translation>%1 smund instalohet hapësirë zbrazët. Ju lutemi, përzgjidhni një ndarje ekzistuese.</translation> <translation>%1 smund instalohet hapësirë zbrazët. Ju lutemi, përzgjidhni një pjesë ekzistuese.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="178"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="178"/>
<source>%1 cannot be installed on an extended partition. Please select an existing primary or logical partition.</source> <source>%1 cannot be installed on an extended partition. Please select an existing primary or logical partition.</source>
<translation>%1 smund instalohet një ndarje llojit extended. Ju lutemi, përzgjidhni një ndarje parësore ose logjike ekzistuese.</translation> <translation>%1 smund instalohet një pjesë llojit &lt;em&gt;extended&lt;/em&gt;. Ju lutemi, përzgjidhni një pjesë parësore ose logjike ekzistuese.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="188"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="188"/>
<source>%1 cannot be installed on this partition.</source> <source>%1 cannot be installed on this partition.</source>
<translation>%1 smund instalohet këtë ndarje.</translation> <translation>%1 smund instalohet këtë pjesë.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="194"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="194"/>
<source>Data partition (%1)</source> <source>Data partition (%1)</source>
<translation>Ndarje dhënash (%1)</translation> <translation>Pjesë dhënash (%1)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="211"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="211"/>
<source>Unknown system partition (%1)</source> <source>Unknown system partition (%1)</source>
<translation>Ndarje sistemi e panjohur (%1)</translation> <translation>Pjesë sistemi e panjohur (%1)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="216"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="216"/>
<source>%1 system partition (%2)</source> <source>%1 system partition (%2)</source>
<translation>Ndarje sistemi %1 (%2)</translation> <translation>Pjesë sistemi %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="227"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="227"/>
<source>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB.</source> <source>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB.</source>
<translation>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një ndarje me kapacitet paktën %3 GiB.</translation> <translation>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një pjesë me kapacitet paktën %3 GiB.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="250"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="250"/>
<source>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source> <source>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<translation>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; këtë sistem sgjendet dot ndonjë ndarje sistemi EFI. Ju lutemi, rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi.</translation> <translation>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; këtë sistem sgjendet dot ndonjë pjesë sistemi EFI. Ju lutemi, rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="261"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="261"/>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="278"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="278"/>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="302"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="302"/>
<source>&lt;strong&gt;%3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;%1 will be installed on %2.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;all data on partition %2 will be lost.</source> <source>&lt;strong&gt;%3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;%1 will be installed on %2.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;all data on partition %2 will be lost.</source>
<translation>&lt;strong&gt;%3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;%1 do instalohet %2.&lt;br/&gt;&lt;font color=\&quot;red\&quot;&gt;Kujdes: &lt;/font&gt;krejt të dhënat në ndarjen %2 do të humbin.</translation> <translation>&lt;strong&gt;%3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;%1 do instalohet %2.&lt;br/&gt;&lt;font color=\&quot;red\&quot;&gt;Kujdes: &lt;/font&gt;krejt të dhënat në pjesën %2 do të humbin.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="270"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="270"/>
@ -2005,7 +2015,7 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="286"/> <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="286"/>
<source>EFI system partition:</source> <source>EFI system partition:</source>
<translation>Ndarje Sistemi EFI:</translation> <translation>Pjesë Sistemi EFI:</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2038,12 +2048,12 @@ Përfundim:
<message> <message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="138"/> <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="138"/>
<source>is plugged in to a power source</source> <source>is plugged in to a power source</source>
<translation>është prizë</translation> <translation>është lidhur te një burim energjie</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="139"/> <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="139"/>
<source>The system is not plugged in to a power source.</source> <source>The system is not plugged in to a power source.</source>
<translation>Sistemi s&apos;është i lidhur me ndonjë burim rryme.</translation> <translation>Sistemi s&apos;është i lidhur me ndonjë burim energjie.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="146"/> <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="146"/>
@ -2071,12 +2081,12 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="48"/> <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="48"/>
<source>Resize partition %1.</source> <source>Resize partition %1.</source>
<translation>Ripërmaso ndarjen %1.</translation> <translation>Ripërmaso pjesën %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="55"/> <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="55"/>
<source>Resize &lt;strong&gt;%2MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; to &lt;strong&gt;%3MB&lt;/strong&gt;.</source> <source>Resize &lt;strong&gt;%2MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; to &lt;strong&gt;%3MB&lt;/strong&gt;.</source>
<translation>Ripërmasoje ndarjen &lt;strong&gt;%2MB&lt;/strong&gt; &lt;strong&gt;%1&lt;/strong&gt; në &lt;strong&gt;%3MB&lt;/strong&gt;.</translation> <translation>Ripërmasoje pjesën &lt;strong&gt;%2MB&lt;/strong&gt; &lt;strong&gt;%1&lt;/strong&gt; në &lt;strong&gt;%3MB&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="66"/> <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="66"/>
@ -2086,7 +2096,7 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="85"/> <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="85"/>
<source>The installer failed to resize partition %1 on disk &apos;%2&apos;.</source> <source>The installer failed to resize partition %1 on disk &apos;%2&apos;.</source>
<translation>Instaluesi sarriti ripërmasojë ndarjen %1 diskun &apos;%2&apos;.</translation> <translation>Instaluesi sarriti ripërmasojë pjesën %1 diskun &apos;%2&apos;.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2149,7 +2159,7 @@ Përfundim:
<location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="323"/> <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="323"/>
<location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="329"/> <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="329"/>
<source>Failed to write to %1</source> <source>Failed to write to %1</source>
<translation>Dështoi shkrimin te %1</translation> <translation>Su arrit shkruhej te %1</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="322"/> <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="322"/>
@ -2167,17 +2177,17 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="49"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="49"/>
<source>Set flags on partition %1.</source> <source>Set flags on partition %1.</source>
<translation>Caktoni flamurka ndarjen %1.</translation> <translation>Caktoni flamurka pjesën %1.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="52"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="52"/>
<source>Set flags on %1MB %2 partition.</source> <source>Set flags on %1MB %2 partition.</source>
<translation>Caktoni flamurka ndarjen %1MB %2.`</translation> <translation>Caktoni flamurka pjesën %1MB %2.`</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="56"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="56"/>
<source>Set flags on new partition.</source> <source>Set flags on new partition.</source>
<translation>Caktoni flamurka ndarje re.</translation> <translation>Caktoni flamurka pjesë re.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="67"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="67"/>
@ -2197,52 +2207,52 @@ Përfundim:
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="79"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="79"/>
<source>Flag partition &lt;strong&gt;%1&lt;/strong&gt; as &lt;strong&gt;%2&lt;/strong&gt;.</source> <source>Flag partition &lt;strong&gt;%1&lt;/strong&gt; as &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation>I vini shenjë ndarjes &lt;strong&gt;%1&lt;/strong&gt; si &lt;strong&gt;%2&lt;/strong&gt;.</translation> <translation>I vini shenjë pjesës &lt;strong&gt;%1&lt;/strong&gt; si &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="85"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="85"/>
<source>Flag %1MB &lt;strong&gt;%2&lt;/strong&gt; partition as &lt;strong&gt;%3&lt;/strong&gt;.</source> <source>Flag %1MB &lt;strong&gt;%2&lt;/strong&gt; partition as &lt;strong&gt;%3&lt;/strong&gt;.</source>
<translation>I vini shenjë ndarjes %1MB &lt;strong&gt;%2&lt;/strong&gt; si &lt;strong&gt;%3&lt;/strong&gt;.</translation> <translation>I vini shenjë pjesës %1MB &lt;strong&gt;%2&lt;/strong&gt; si &lt;strong&gt;%3&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="91"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="91"/>
<source>Flag new partition as &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Flag new partition as &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>I vini shenjë ndarjes re si &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>I vini shenjë pjesës re si &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="103"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="103"/>
<source>Clearing flags on partition &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Clearing flags on partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Po hiqen shenjat ndarjen &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Po hiqen shenjat pjesën &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="107"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="107"/>
<source>Clearing flags on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source> <source>Clearing flags on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source>
<translation>Po hiqen shenjat ndarjen %1MB &lt;strong&gt;%2&lt;/strong&gt;.</translation> <translation>Po hiqen shenjat pjesën %1MB &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="111"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="111"/>
<source>Clearing flags on new partition.</source> <source>Clearing flags on new partition.</source>
<translation>Po hiqen shenjat ndarjen e re.</translation> <translation>Po hiqen shenjat pjesën e re.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="115"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="115"/>
<source>Setting flags &lt;strong&gt;%2&lt;/strong&gt; on partition &lt;strong&gt;%1&lt;/strong&gt;.</source> <source>Setting flags &lt;strong&gt;%2&lt;/strong&gt; on partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
<translation>Po vihen flamurkat &lt;strong&gt;%2&lt;/strong&gt; në ndarjen &lt;strong&gt;%1&lt;/strong&gt;.</translation> <translation>Po vihen flamurkat &lt;strong&gt;%2&lt;/strong&gt; në pjesën &lt;strong&gt;%1&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="121"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="121"/>
<source>Setting flags &lt;strong&gt;%3&lt;/strong&gt; on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source> <source>Setting flags &lt;strong&gt;%3&lt;/strong&gt; on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source>
<translation>Po vihen flamurkat &lt;strong&gt;%3&lt;/strong&gt; në ndarjen %1MB &lt;strong&gt;%2&lt;/strong&gt;.</translation> <translation>Po vihen flamurkat &lt;strong&gt;%3&lt;/strong&gt; në pjesën %1MB &lt;strong&gt;%2&lt;/strong&gt;.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="127"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="127"/>
<source>Setting flags &lt;strong&gt;%1&lt;/strong&gt; on new partition.</source> <source>Setting flags &lt;strong&gt;%1&lt;/strong&gt; on new partition.</source>
<translation>Po vihen flamurkat &lt;strong&gt;%1&lt;/strong&gt; në ndarjen e re.</translation> <translation>Po vihen flamurkat &lt;strong&gt;%1&lt;/strong&gt; në pjesën e re.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="140"/> <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="140"/>
<source>The installer failed to set flags on partition %1.</source> <source>The installer failed to set flags on partition %1.</source>
<translation>Instaluesi sarriti vërë flamurka ndarjen %1.</translation> <translation>Instaluesi sarriti vërë flamurka pjesën %1.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2455,7 +2465,7 @@ Përfundim:
<message> <message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="45"/> <location filename="../src/modules/tracking/TrackingPage.cpp" line="45"/>
<source>By selecting this you will send information about your installation and hardware. This information will &lt;b&gt;only be sent once&lt;/b&gt; after the installation finishes.</source> <source>By selecting this you will send information about your installation and hardware. This information will &lt;b&gt;only be sent once&lt;/b&gt; after the installation finishes.</source>
<translation>Duke përzgjedhur këtë, di dërgoni dhëna mbi instalimin dhe hardware-in tuaj. Këto dhëna do &lt;b&gt;dërgohen vetëm një herë&lt;/b&gt;, pasi të përfundojë instalimi.</translation> <translation>Duke përzgjedhur këtë, do dërgoni dhëna mbi instalimin dhe hardware-in tuaj. Këto dhëna do &lt;b&gt;dërgohen vetëm një herë&lt;/b&gt;, pasi të përfundojë instalimi.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="46"/> <location filename="../src/modules/tracking/TrackingPage.cpp" line="46"/>
@ -2571,7 +2581,7 @@ Përfundim:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; drejta Kopjimi 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt; drejta Kopjimi 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Falënderime për: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dhe &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;ekipin e përkthyesve të Calamares-it&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Zhvillimi i &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; sponsorizohet nga &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt; drejta Kopjimi 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt; drejta Kopjimi 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Falënderime për: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dhe &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;ekipin e përkthyesve të Calamares-it&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Zhvillimi i &lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; sponsorizohet nga &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Asistencë %1</translation> <translation>Asistencë %1</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>Вели&amp;чина</translation> <translation>Вели&amp;чина</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Логичка</translation> <translation>Логичка</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Примарна</translation> <translation>Примарна</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 подршка</translation> <translation>%1 подршка</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation>Veli&amp;čina</translation> <translation>Veli&amp;čina</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logička</translation> <translation>Logička</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primarna</translation> <translation>Primarna</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -477,13 +477,13 @@ Alla ändringar kommer att gå förlorade.</translation>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>Storlek:</translation> <translation>Storlek:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Kr%yptera</translation> <translation>Kr%yptera</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Logisk</translation> <translation>Logisk</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Primär</translation> <translation>Primär</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Monteringspunkt används redan. Välj en annan.</translation> <translation>Monteringspunkt används redan. Välj en annan.</translation>
</message> </message>
@ -858,7 +858,7 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>Flaggor:</translation> <translation>Flaggor:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Monteringspunkt används redan. Välj en annan.</translation> <translation>Monteringspunkt används redan. Välj en annan.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>Installera uppstartshanterare :</translation> <translation>Installera uppstartshanterare :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Är du säker att du vill skapa en ny partitionstabell %1?</translation> <translation>Är du säker att du vill skapa en ny partitionstabell %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1-support</translation> <translation>%1-support</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Z :</translation> <translation>&amp;Z :</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Flags:</translation> <translation>Flags:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation> %1?</translation> <translation> %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -480,14 +480,14 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation>Komut çalıştırılamadı.</translation> <translation>Komut çalıştırılamadı.</translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation>RootMountPoint kök bağlama noktası tanımlanmadığından, hedef ortamda komut çalıştırılamaz.</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -551,27 +551,27 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<translation>Bo&amp;yut:</translation> <translation>Bo&amp;yut:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>Şif&amp;rele</translation> <translation>Şif&amp;rele</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Mantıksal</translation> <translation>Mantıksal</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Birincil</translation> <translation>Birincil</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.</translation> <translation>Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.</translation>
</message> </message>
@ -861,7 +861,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<translation>Bayraklar:</translation> <translation>Bayraklar:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.</translation> <translation>Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.</translation>
</message> </message>
@ -1685,10 +1685,20 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
<translation>Şuraya ön &amp;yükleyici kur:</translation> <translation>Şuraya ön &amp;yükleyici kur:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>%1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz?</translation> <translation>%1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2576,7 +2586,7 @@ Sistem güç kaynağına bağlı değil.</translation>
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;için %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Telif Hakkı 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Telif Hakkı 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Teşekkürler: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ve &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares çeviri takımı için&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; gelişim sponsoru &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Özgür Yazılım.</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;için %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Telif Hakkı 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Telif Hakkı 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Teşekkürler: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ve &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares çeviri takımı için&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; gelişim sponsoru &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Özgür Yazılım.</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 destek</translation> <translation>%1 destek</translation>
</message> </message>

View File

@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation>Ро&amp;змір:</translation> <translation>Ро&amp;змір:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>За&amp;шифрувати</translation> <translation>За&amp;шифрувати</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation>Логічний</translation> <translation>Логічний</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation>Основний</translation> <translation>Основний</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Точка підключення наразі використовується. Оберіть, будь ласка, іншу.</translation> <translation>Точка підключення наразі використовується. Оберіть, будь ласка, іншу.</translation>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Прапорці:</translation> <translation>Прапорці:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>Точка підключення наразі використовується. Оберіть, будь ласка, іншу.</translation> <translation>Точка підключення наразі використовується. Оберіть, будь ласка, іншу.</translation>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation>Встановити за&amp;вантажувач на:</translation> <translation>Встановити за&amp;вантажувач на:</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation>Ви впевнені, що бажаєте створити нову таблицю розділів на %1?</translation> <translation>Ви впевнені, що бажаєте створити нову таблицю розділів на %1?</translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2568,7 +2578,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>Підтримка %1</translation> <translation>Підтримка %1</translation>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
</context> </context>
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2567,7 +2577,7 @@ Output:
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation type="unfinished"/> <translation type="unfinished"/>
</message> </message>

View File

@ -478,14 +478,14 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation> rootMountPoint</translation> <translation type="unfinished"/>
</message> </message>
</context> </context>
<context> <context>
@ -549,27 +549,27 @@ The installer will quit and all changes will be lost.</source>
<translation>(&amp;Z)</translation> <translation>(&amp;Z)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation></translation> <translation></translation>
</message> </message>
@ -860,7 +860,7 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1684,10 +1684,20 @@ The installer will quit and all changes will be lost.</source>
<translation>(&amp;L)</translation> <translation>(&amp;L)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation type="unfinished"/>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2573,7 +2583,7 @@ Output:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares 翻译团队&lt;/a&gt;。&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; 的开发由 &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; 赞助。</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares 翻译团队&lt;/a&gt;。&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; 的开发由 &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; 赞助。</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>

View File

@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</source>
<context> <context>
<name>CommandList</name> <name>CommandList</name>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="113"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="124"/>
<source>Could not run command.</source> <source>Could not run command.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/> <location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source> <source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
<translation> rootMountPoint</translation> <translation></translation>
</message> </message>
</context> </context>
<context> <context>
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;z) </translation> <translation> (&amp;z) </translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
<source>En&amp;crypt</source> <source>En&amp;crypt</source>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="177"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="148"/>
<source>Logical</source> <source>Logical</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="182"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="153"/>
<source>Primary</source> <source>Primary</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="199"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="170"/>
<source>GPT</source> <source>GPT</source>
<translation>GPT</translation> <translation>GPT</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="288"/> <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="259"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>使</translation> <translation>使</translation>
</message> </message>
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/> <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="268"/>
<source>Mountpoint already in use. Please select another one.</source> <source>Mountpoint already in use. Please select another one.</source>
<translation>使</translation> <translation>使</translation>
</message> </message>
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
<translation>(&amp;L)</translation> <translation>(&amp;L)</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="168"/> <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="169"/>
<source>Are you sure you want to create a new partition table on %1?</source> <source>Are you sure you want to create a new partition table on %1?</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
<source>Can not create new partition</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="194"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation> %1 %2 </translation>
</message>
</context> </context>
<context> <context>
<name>PartitionViewStep</name> <name>PartitionViewStep</name>
@ -2571,7 +2581,7 @@ Output:
<translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares 翻譯團隊&lt;/a&gt;。&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; 開發由 &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software 贊助。</translation> <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt; %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares 翻譯團隊&lt;/a&gt;。&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;https://calamares.io/&quot;&gt;Calamares&lt;/a&gt; 開發由 &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software 贊助。</translation>
</message> </message>
<message> <message>
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/> <location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
<source>%1 support</source> <source>%1 support</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n" "Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: enolp <enolp@softastur.org>, 2017\n" "Last-Translator: enolp <enolp@softastur.org>, 2017\n"
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n" "Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Georgi Georgiev <georgiev_1994@abv.bg>, 2018\n" "Last-Translator: Georgi Georgiev <georgiev_1994@abv.bg>, 2018\n"
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n" "Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Davidmp <medipas@gmail.com>, 2017\n" "Last-Translator: Davidmp <medipas@gmail.com>, 2017\n"
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n" "Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2017\n" "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2017\n"
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\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-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: cs_CZ\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 #: src/modules/umount/main.py:40
msgid "Unmount file systems." msgid "Unmount file systems."
@ -50,6 +50,7 @@ msgid_plural "Installing %(num)d packages."
msgstr[0] "Je instalován jeden balíček." msgstr[0] "Je instalován jeden balíček."
msgstr[1] "Jsou instalovány %(num)d balíčky." msgstr[1] "Jsou instalovány %(num)d balíčky."
msgstr[2] "Je instalováno %(num)d balíčků." msgstr[2] "Je instalováno %(num)d balíčků."
msgstr[3] "Je instalováno %(num)d balíčků."
#: src/modules/packages/main.py:69 #: src/modules/packages/main.py:69
#, python-format #, python-format
@ -58,3 +59,4 @@ msgid_plural "Removing %(num)d packages."
msgstr[0] "Odebírá se jeden balíček." msgstr[0] "Odebírá se jeden balíček."
msgstr[1] "Odebírají se %(num)d balíčky." msgstr[1] "Odebírají se %(num)d balíčky."
msgstr[2] "Odebírá se %(num)d balíčků." msgstr[2] "Odebírá se %(num)d balíčků."
msgstr[3] "Odebírá se %(num)d balíčků."

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dan Johansen (Strit), 2017\n" "Last-Translator: Dan Johansen (Strit), 2017\n"
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n" "Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dirk Hein <bankman@posteo.de>, 2017\n" "Last-Translator: Dirk Hein <bankman@posteo.de>, 2017\n"
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n" "Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2017\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2017\n"
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n" "Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "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" "Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

Binary file not shown.

View File

@ -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 <EMAIL@ADDRESS>, 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 <kurtphoenix@tuta.io>, 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."

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: strel, 2017\n" "Last-Translator: strel, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n" "Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "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" "Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

Binary file not shown.

View File

@ -8,8 +8,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "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" "Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -19,39 +20,39 @@ msgstr ""
#: src/modules/umount/main.py:40 #: src/modules/umount/main.py:40
msgid "Unmount file systems." msgid "Unmount file systems."
msgstr "" msgstr "Haagi failisüsteemid lahti."
#: src/modules/dummypython/main.py:44 #: src/modules/dummypython/main.py:44
msgid "Dummy python job." msgid "Dummy python job."
msgstr "" msgstr "Testiv python'i töö."
#: src/modules/dummypython/main.py:97 #: src/modules/dummypython/main.py:97
msgid "Dummy python step {}" msgid "Dummy python step {}"
msgstr "" msgstr "Testiv python'i aste {}"
#: src/modules/machineid/main.py:35 #: src/modules/machineid/main.py:35
msgid "Generate machine-id." msgid "Generate machine-id."
msgstr "" msgstr "Genereeri masina-id."
#: src/modules/packages/main.py:61 #: src/modules/packages/main.py:61
#, python-format #, python-format
msgid "Processing packages (%(count)d / %(total)d)" 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 #: src/modules/packages/main.py:63 src/modules/packages/main.py:73
msgid "Install packages." msgid "Install packages."
msgstr "" msgstr "Installi pakid."
#: src/modules/packages/main.py:66 #: src/modules/packages/main.py:66
#, python-format #, python-format
msgid "Installing one package." msgid "Installing one package."
msgid_plural "Installing %(num)d packages." msgid_plural "Installing %(num)d packages."
msgstr[0] "" msgstr[0] "Installin ühe paki."
msgstr[1] "" msgstr[1] "Installin %(num)d pakki."
#: src/modules/packages/main.py:69 #: src/modules/packages/main.py:69
#, python-format #, python-format
msgid "Removing one package." msgid "Removing one package."
msgid_plural "Removing %(num)d packages." msgid_plural "Removing %(num)d packages."
msgstr[0] "" msgstr[0] "Eemaldan ühe paki."
msgstr[1] "" msgstr[1] "Eemaldan %(num)d pakki."

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n" "Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

Binary file not shown.

View File

@ -8,14 +8,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n" "Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: fa\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 #: src/modules/umount/main.py:40
msgid "Unmount file systems." msgid "Unmount file systems."
@ -47,9 +47,11 @@ msgstr ""
msgid "Installing one package." msgid "Installing one package."
msgid_plural "Installing %(num)d packages." msgid_plural "Installing %(num)d packages."
msgstr[0] "" msgstr[0] ""
msgstr[1] ""
#: src/modules/packages/main.py:69 #: src/modules/packages/main.py:69
#, python-format #, python-format
msgid "Removing one package." msgid "Removing one package."
msgid_plural "Removing %(num)d packages." msgid_plural "Removing %(num)d packages."
msgstr[0] "" msgstr[0] ""
msgstr[1] ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n" "Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Jeremy Gourmel <jgourmel@free.fr>, 2018\n" "Last-Translator: Jeremy Gourmel <jgourmel@free.fr>, 2018\n"
"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n" "Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n" "Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

Binary file not shown.

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