Merge branch 'master' of https://github.com/calamares/calamares into development
This commit is contained in:
commit
001d6cf9d3
@ -203,7 +203,8 @@ endif()
|
||||
# (sr@latin in particular) may need special handling in CalamaresUtils.cpp.
|
||||
#
|
||||
# TODO: drop the es_ES translation from Transifex
|
||||
# TODO: import Esperanto once it has some translated strings
|
||||
# TODO: move eo (Esperanto) to _ok once Qt can actually create a
|
||||
# locale for it.
|
||||
#
|
||||
# NOTE: when updating the list from Transifex, copy these four lines
|
||||
# and prefix each variable name with "p", so that the automatic
|
||||
@ -212,7 +213,7 @@ set( _tx_complete da pt_PT ro tr_TR zh_TW zh_CN pt_BR fr hr ca lt id cs_CZ )
|
||||
set( _tx_good sq es pl ja sk it_IT hu ru he de nl bg uk )
|
||||
set( _tx_ok ast is ar sv el es_MX gl en_GB th fi_FI hi eu sr nb
|
||||
sl sr@latin mr es_PR kk kn et )
|
||||
set( _tx_bad uz eo lo ur gu fr_CH fa )
|
||||
set( _tx_bad uz lo ur gu fr_CH fa eo )
|
||||
|
||||
# check translation update
|
||||
set( prev_tx ${p_tx_complete} ${p_tx_good} ${p_tx_ok} ${p_tx_bad} )
|
||||
@ -260,7 +261,7 @@ list( SORT CALAMARES_TRANSLATION_LANGUAGES )
|
||||
set( CALAMARES_VERSION_MAJOR 3 )
|
||||
set( CALAMARES_VERSION_MINOR 2 )
|
||||
set( CALAMARES_VERSION_PATCH 0 )
|
||||
set( CALAMARES_VERSION_RC 5 )
|
||||
set( CALAMARES_VERSION_RC 0 )
|
||||
|
||||
set( CALAMARES_VERSION ${CALAMARES_VERSION_MAJOR}.${CALAMARES_VERSION_MINOR}.${CALAMARES_VERSION_PATCH} )
|
||||
set( CALAMARES_VERSION_SHORT "${CALAMARES_VERSION}" )
|
||||
|
@ -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()
|
@ -42,6 +42,10 @@ Icon[es]=calamares
|
||||
GenericName[es]=Instalador del Sistema
|
||||
Comment[es]=Calamares — Instalador del Sistema
|
||||
Name[es]=Instalar Sistema
|
||||
Icon[et]=calamares
|
||||
GenericName[et]=Süsteemi installija
|
||||
Comment[et]=Calamares — Süsteemi installija
|
||||
Name[et]=Installi süsteem
|
||||
Name[eu]=Sistema instalatu
|
||||
Name[es_PR]=Instalar el sistema
|
||||
Icon[fr]=calamares
|
||||
@ -144,12 +148,15 @@ Icon[ast]=calamares
|
||||
GenericName[ast]=Instalador del sistema
|
||||
Comment[ast]=Calamares — Instalador del sistema
|
||||
Name[ast]=Instalar sistema
|
||||
Icon[eo]=calamares
|
||||
GenericName[eo]=Sistema Instalilo
|
||||
Comment[eo]=Calamares — Sistema Instalilo
|
||||
Name[eo]=Instali Sistemo
|
||||
Name[es_MX]=Instalar el Sistema
|
||||
Icon[pt_PT]=calamares
|
||||
GenericName[pt_PT]=Instalador de Sistema
|
||||
Comment[pt_PT]=Calamares - Instalador de Sistema
|
||||
Name[pt_PT]=Instalar Sistema
|
||||
Name[es_ES]=Instalar el sistema
|
||||
Icon[tr_TR]=calamares
|
||||
GenericName[tr_TR]=Sistem Yükleyici
|
||||
Comment[tr_TR]=Calamares — Sistem Yükleyici
|
||||
|
15
calamares.desktop.in
Normal file
15
calamares.desktop.in
Normal 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
|
||||
|
19
ci/txpull.sh
19
ci/txpull.sh
@ -29,6 +29,25 @@ test -f "calamares.desktop" || { echo "! Not at Calamares top-level" ; exit 1 ;
|
||||
export QT_SELECT=5
|
||||
tx pull --force --source --all
|
||||
|
||||
### CLEANUP TRANSLATIONS
|
||||
#
|
||||
# Some languages have been deprecated. They may still exist in Transifex,
|
||||
# so clean them up after pulling.
|
||||
#
|
||||
drop_language() {
|
||||
rm -rf lang/python/"$1" src/modules/dummypythonqt/lang/"$1" lang/calamares_"$1".ts
|
||||
grep -v "\\[$1]" calamares.desktop > calamares.desktop.new
|
||||
mv calamares.desktop.new calamares.desktop
|
||||
}
|
||||
|
||||
drop_language es_ES
|
||||
drop_language pl_PL
|
||||
|
||||
# Also fix the .desktop file, which has some fields removed by Transifex.
|
||||
#
|
||||
{ cat calamares.desktop.in ; grep "\\[[a-zA-Z_@]*]=" calamares.desktop ; } > calamares.desktop.new
|
||||
mv calamares.desktop.new calamares.desktop
|
||||
|
||||
### COMMIT TRANSLATIONS
|
||||
#
|
||||
# Produce multiple commits (for the various parts of the i18n
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>الح&جم:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>تشفير</translation>
|
||||
</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>
|
||||
<translation>منطقيّ</translation>
|
||||
</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>
|
||||
<translation>أساسيّ</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>الشّارات:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>ثبّت م&حمّل الإقلاع على:</translation>
|
||||
</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>
|
||||
<translation>أمتأكّد من إنشاء جدول تقسيم جديد على %1؟</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>1% الدعم</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ L'instalador colará y perderánse toles camudancies.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ L'instalador colará y perderánse toles camudancies.</translation>
|
||||
<translation>Tama&ñu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Cifrar</translation>
|
||||
</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>
|
||||
<translation>Llóxica</translation>
|
||||
</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>
|
||||
<translation>Primaria</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Puntu de montaxe yá n'usu. Esbilla otru, por favor.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ L'instalador colará y perderánse toles camudancies.</translation>
|
||||
<translation>Banderes:</translation>
|
||||
</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>
|
||||
<translation>Puntu de montaxe yá n'usu. Esbilla otru, por favor.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ L'instalador colará y perderánse toles camudancies.</translation>
|
||||
<translation>&Instalar xestor d'arranque en:</translation>
|
||||
</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>
|
||||
<translation>¿De xuru que quies crear una tabla particiones nueva en %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Sofitu %1</translation>
|
||||
</message>
|
||||
|
@ -478,13 +478,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -549,27 +549,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Раз&мер:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>En%crypt</translation>
|
||||
</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>
|
||||
<translation>Логическа</translation>
|
||||
</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>
|
||||
<translation>Главна</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Точката за монтиране вече се използва. Моля изберете друга.</translation>
|
||||
</message>
|
||||
@ -859,7 +859,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Флагове:</translation>
|
||||
</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>
|
||||
<translation>Точката за монтиране вече се използва. Моля изберете друга.</translation>
|
||||
</message>
|
||||
@ -1683,10 +1683,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Инсталирай &устройството за начално зареждане върху:</translation>
|
||||
</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>
|
||||
<translation>Сигурни ли сте че искате да създадете нова таблица на дяловете върху %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2569,7 +2579,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 поддръжка</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>No s'ha pogut executar l'ordre.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>No hi ha punt de muntatge d'arrel definit; per tant, no es pot executar l'ordre a l'entorn de destinació.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
|
||||
<translation>Mi&da:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Xifra</translation>
|
||||
</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>
|
||||
<translation>Lògica</translation>
|
||||
</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>
|
||||
<translation>Primària</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
|
||||
<translation>Indicadors:</translation>
|
||||
</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>
|
||||
<translation>El punt de muntatge ja està en ús. Si us plau, seleccioneu-ne un altre.</translation>
|
||||
</message>
|
||||
@ -1395,7 +1395,7 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="218"/>
|
||||
<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>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="220"/>
|
||||
@ -1682,10 +1682,20 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
|
||||
<translation>&Instal·la el gestor d'arrencada a:</translation>
|
||||
</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>
|
||||
<translation>Esteu segurs que voleu crear una nova taula de particions a %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2107,17 +2117,17 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetHostNameJob.cpp" line="37"/>
|
||||
<source>Set hostname %1</source>
|
||||
<translation>Assigna el nom de l'equip %1</translation>
|
||||
<translation>Estableix el nom d'amfitrió %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetHostNameJob.cpp" line="44"/>
|
||||
<source>Set hostname <strong>%1</strong>.</source>
|
||||
<translation>Establir el nom de l'hoste <strong>%1</strong>.</translation>
|
||||
<translation>Estableix el nom d'amfitrió <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetHostNameJob.cpp" line="51"/>
|
||||
<source>Setting hostname %1.</source>
|
||||
<translation>Establint el nom de l'hoste %1.</translation>
|
||||
<translation>Establint el nom d'amfitrió %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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="86"/>
|
||||
<source>Cannot write hostname to target system</source>
|
||||
<translation>No s'ha pogut escriure el nom de l'equip al sistema de destinació</translation>
|
||||
<translation>No es pot escriure el nom d'amfitrió al sistema de destinació</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2270,7 +2280,7 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/>
|
||||
<source>Cannot disable root account.</source>
|
||||
<translation>No es pot inhabilitar el compte d'arrel.</translation>
|
||||
<translation>No es pot inhabilitar el compte de root.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="124"/>
|
||||
@ -2280,7 +2290,7 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="139"/>
|
||||
<source>Cannot set password for user %1.</source>
|
||||
<translation>No s'ha pogut assignar la contrasenya de l'usuari %1.</translation>
|
||||
<translation>No es pot establir la contrasenya per a l'usuari %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="141"/>
|
||||
@ -2491,7 +2501,7 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersPage.cpp" line="333"/>
|
||||
<source>Your hostname is too short.</source>
|
||||
<translation>El nom d'usuari és massa curt.</translation>
|
||||
<translation>El nom d'amfitrió és massa curt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersPage.cpp" line="339"/>
|
||||
@ -2501,7 +2511,7 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersPage.cpp" line="345"/>
|
||||
<source>Your hostname contains invalid characters. Only letters, numbers and dashes are allowed.</source>
|
||||
<translation>El nom d'amfitrió conté caràcters no vàlids. Només s'hi admeten lletres, números i guions.</translation>
|
||||
<translation>El nom d'amfitrió conté caràcters no vàlids. Només s'admeten lletres, números i guions.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/UsersPage.cpp" line="373"/>
|
||||
@ -2553,12 +2563,12 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
||||
<source><h1>Welcome to the %1 installer.</h1></source>
|
||||
<translation><h1>Benvinguts a l'instal·lador %1.</h1></translation>
|
||||
<translation><h1>Benvingut a l'instal·lador de %1.</h1></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
|
||||
<source><h1>Welcome to the Calamares installer for %1.</h1></source>
|
||||
<translation><h1>Us donem la benvinguda a l'instal·lador Calamares per a %1.</h1></translation>
|
||||
<translation><h1>Benvingut a l'instal·lador Calamares per a %1.</h1></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
|
||||
@ -2571,7 +2581,7 @@ Sortida:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>per a %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017, Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agraïments: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i l'<a href="https://www.transifex.com/calamares/calamares/">Equip de traducció del Calamares</a>.<br/><br/><a href="http://calamares.io/">El desenvolupament </a> del Calamares està patrocinat per <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 suport</translation>
|
||||
</message>
|
||||
@ -2581,7 +2591,7 @@ Sortida:
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomeViewStep.cpp" line="51"/>
|
||||
<source>Welcome</source>
|
||||
<translation>Benvinguts</translation>
|
||||
<translation>Benvingut</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -477,14 +477,14 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Nedaří se spustit příkaz.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</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>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
|
||||
<translation>&Velikost:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Š&ifrovat</translation>
|
||||
</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>
|
||||
<translation>Logický</translation>
|
||||
</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>
|
||||
<translation>Primární</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Tento přípojný bod už je používán – vyberte jiný.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
|
||||
<translation>Příznaky:</translation>
|
||||
</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>
|
||||
<translation>Tento přípojný bod je už používán – vyberte jiný.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
|
||||
<translation>Nainstalovat &zavaděč na:</translation>
|
||||
</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>
|
||||
<translation>Opravdu chcete na %1 vytvořit novou tabulku oddílů?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Výstup:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a <a href="https://www.transifex.com/calamares/calamares/">tým překledatelů Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> vývoj je sponzorován <br/><a href="http://www.blue-systems.com/">Blue Systems</a> – Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 podpora</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Kunne ikke køre kommando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Der er ikke defineret nogen rootMountPoint, så kommandoen kan ikke køre i målmiljøet.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
|
||||
<translation>&Størrelse:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Kryp&tér</translation>
|
||||
</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>
|
||||
<translation>Logisk</translation>
|
||||
</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>
|
||||
<translation>Primær</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Monteringspunktet er allerede i brug. Vælg venligst et andet.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
|
||||
<translation>Flag:</translation>
|
||||
</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>
|
||||
<translation>Monteringspunktet er allerede i brug. Vælg venligst et andet.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
|
||||
<translation>Installér boot&loader på:</translation>
|
||||
</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>
|
||||
<translation>Er du sikker på, at du vil oprette en ny partitionstabel på %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Output:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>til %3</strong><br/><br/>Ophavsret 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Ophavsret 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Tak til: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg og <a href="https://www.transifex.com/calamares/calamares/">Calamares oversætterteam</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> udvikling er sponsoreret af <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 support</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
|
||||
<translation>Grö&sse:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Verschlüsseln</translation>
|
||||
</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>
|
||||
<translation>Logisch</translation>
|
||||
</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>
|
||||
<translation>Primär</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Dieser Einhängepunkt wird schon benuztzt. Bitte wählen Sie einen anderen.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
|
||||
<translation>Markierungen:</translation>
|
||||
</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>
|
||||
<translation>Der Einhängepunkt wird schon benutzt. Bitte wählen Sie einen anderen.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
|
||||
<translation>Installiere Boot&loader auf:</translation>
|
||||
</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>
|
||||
<translation>Sind Sie sicher, dass Sie eine neue Partitionstabelle auf %1 erstellen möchten?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Unterstützung für %1</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>&Μέγεθος:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Λογική</translation>
|
||||
</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>
|
||||
<translation>Πρωτεύουσα</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Σημαίες:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Εγκατάσταση προγράμματος ε&κκίνησης στο:</translation>
|
||||
</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>
|
||||
<translation>Θέλετε σίγουρα να δημιουργήσετε έναν νέο πίνακα κατατμήσεων στο %1;</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Υποστήριξη %1</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Could not run command.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>No rootMountPoint is defined, so command cannot be run in the target environment.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<translation>Si&ze:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>En&crypt</translation>
|
||||
</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>
|
||||
<translation>Logical</translation>
|
||||
</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>
|
||||
<translation>Primary</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Mountpoint already in use. Please select another one.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<translation>Flags:</translation>
|
||||
</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>
|
||||
<translation>Mountpoint already in use. Please select another one.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<translation>Install boot &loader on:</translation>
|
||||
</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>
|
||||
<translation>Are you sure you want to create a new partition table on %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Output:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 support</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<translation>Si&ze:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Logical</translation>
|
||||
</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>
|
||||
<translation>Primary</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<translation>Flags:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Are you sure you want to create a new partition table on %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 support</translation>
|
||||
</message>
|
||||
|
2594
lang/calamares_eo.ts
Normal file
2594
lang/calamares_eo.ts
Normal file
File diff suppressed because it is too large
Load Diff
@ -478,14 +478,14 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>No se pudo ejecutar el comando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</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>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -549,27 +549,27 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
|
||||
<translation>&Tamaño:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Cifrar</translation>
|
||||
</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>
|
||||
<translation>Lógica</translation>
|
||||
</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>
|
||||
<translation>Primaria</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Punto de montaje ya en uso. Por favor, seleccione otro.</translation>
|
||||
</message>
|
||||
@ -859,7 +859,7 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
|
||||
<translation>Banderas:</translation>
|
||||
</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>
|
||||
<translation>Punto de montaje ya en uso. Por favor, seleccione otro.</translation>
|
||||
</message>
|
||||
@ -1683,10 +1683,20 @@ Saldrá del instalador y se perderán todos los cambios.</translation>
|
||||
<translation>Instalar gestor de arranque en:</translation>
|
||||
</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>
|
||||
<translation>¿Está seguro de querer crear una nueva tabla de particiones en %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2572,7 +2582,7 @@ Salida:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimientos: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg y al <a href="https://www.transifex.com/calamares/calamares/">equipo de traductores de Calamares</a>.<br/><br/> El desarrollo <a href="https://calamares.io/">Calamares</a> está patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberando Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 ayuda</translation>
|
||||
</message>
|
||||
|
@ -480,13 +480,13 @@ El instalador terminará y se perderán todos los cambios.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -551,27 +551,27 @@ El instalador terminará y se perderán todos los cambios.</translation>
|
||||
<translation>&Tamaño:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Lógica</translation>
|
||||
</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>
|
||||
<translation>Primaria</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -861,7 +861,7 @@ El instalador terminará y se perderán todos los cambios.</translation>
|
||||
<translation>Banderas:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1685,10 +1685,20 @@ El instalador terminará y se perderán todos los cambios.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>¿Está seguro de querer crear una nueva tabla de particiones en %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2572,7 +2582,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 Soporte</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Ta&maina:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Logikoa</translation>
|
||||
</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>
|
||||
<translation>Primarioa</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 euskarria</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
|
||||
<translation>K&oko:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Looginen</translation>
|
||||
</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>
|
||||
<translation>Ensisijainen</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
|
||||
<translation>Liput:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Oletko varma, että haluat luoda uuden osion %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ L'installateur se fermera et les changements seront perdus.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>La commande n'a pas pu être exécutée.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Aucun point de montage racine n'est défini, la commande n'a pas pu être exécutée dans l'environnement cible.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ L'installateur se fermera et les changements seront perdus.</translation>
|
||||
<translation>Ta&ille :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Chi&ffrer</translation>
|
||||
</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>
|
||||
<translation>Logique</translation>
|
||||
</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>
|
||||
<translation>Primaire</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Le point de montage est déjà utilisé. Merci d'en sélectionner un autre.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ L'installateur se fermera et les changements seront perdus.</translation>
|
||||
<translation>Drapeaux:</translation>
|
||||
</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>
|
||||
<translation>Le point de montage est déjà utilisé. Merci d'en sélectionner un autre.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ L'installateur se fermera et les changements seront perdus.</translation>
|
||||
<translation>Installer le chargeur de démarrage sur:</translation>
|
||||
</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>
|
||||
<translation>Êtes-vous sûr de vouloir créer une nouvelle table de partitionnement sur %1 ?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2572,7 +2582,7 @@ Sortie
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/> pour %3</strong><br/><br/> Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/> Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/> Merci à : Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg et <a href="https://www.transifex.com/calamares/calamares/">l'équipe de traducteurs de Calamares</a>.<br/><br/> Le développement de <a href="https://calamares.io/">Calamares</a> est sponsorisé par <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Support de %1</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -478,13 +478,13 @@ O instalador pecharase e perderanse todos os cambios.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -549,27 +549,27 @@ O instalador pecharase e perderanse todos os cambios.</translation>
|
||||
<translation>&Tamaño:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Encriptar</translation>
|
||||
</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>
|
||||
<translation>Lóxica</translation>
|
||||
</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>
|
||||
<translation>Primaria</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Punto de montaxe xa en uso. Faga o favor de escoller outro</translation>
|
||||
</message>
|
||||
@ -859,7 +859,7 @@ O instalador pecharase e perderanse todos os cambios.</translation>
|
||||
<translation>Bandeiras:</translation>
|
||||
</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>
|
||||
<translation>Punto de montaxe xa en uso. Faga o favor de escoller outro.</translation>
|
||||
</message>
|
||||
@ -1683,10 +1683,20 @@ O instalador pecharase e perderanse todos os cambios.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2569,7 +2579,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 axuda</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>גו&דל:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>ה&צפן</translation>
|
||||
</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>
|
||||
<translation>לוגי</translation>
|
||||
</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>
|
||||
<translation>ראשי</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>סימונים:</translation>
|
||||
</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>
|
||||
<translation>נקודת העיגון בשימוש. אנא בחר נקודת עיגון אחרת.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>התקן &מנהל אתחול מערכת על:</translation>
|
||||
</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>
|
||||
<translation>האם אתה בטוח שברצונך ליצור טבלת מחיצות חדשה על %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>תמיכה ב - %1</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>कमांड run नहीं की जा सकी।</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>कोई rootMountPoint परिभाषित नहीं है, इसलिए कमांड को लक्ष्य वातावरण में run नहीं किया जा सकता है।</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>En&crypt</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>मुख्य</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Flags:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, रोहन गर्ग व <a href="https://www.transifex.com/calamares/calamares/">Calamares अनुवादक टीम</a> का धन्यवाद।<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 सहायता</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Ne mogu pokrenuti naredbu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Nije definirana root točka montiranja tako da se naredba ne može izvršiti na ciljanoj okolini.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
|
||||
<translation>Ve&ličina:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Ši&friraj</translation>
|
||||
</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>
|
||||
<translation>Logično</translation>
|
||||
</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>
|
||||
<translation>Primarno</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Točka montiranja se već koristi. Odaberite drugu.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
|
||||
<translation>Oznake:</translation>
|
||||
</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>
|
||||
<translation>Točka montiranja se već koristi. Odaberite drugu.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
|
||||
<translation>Instaliraj boot &učitavač na:</translation>
|
||||
</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>
|
||||
<translation>Jeste li sigurni da želite stvoriti novu particijsku tablicu na %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Izlaz:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>za %3</strong><br/><br/>Autorska prava 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorska prava 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Zahvale: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">Calamares timu za prevođenje</a>.<br/><br/><a href="https://calamares.io/">Calamares sponzorira <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 podrška</translation>
|
||||
</message>
|
||||
|
@ -478,13 +478,13 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>A parancsot nem lehet futtatni.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -549,27 +549,27 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
|
||||
<translation>Mé&ret:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Titkosítás</translation>
|
||||
</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>
|
||||
<translation>Logikai</translation>
|
||||
</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>
|
||||
<translation>Elsődleges</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>A csatolási pont már használatban van. Kérlek, válassz másikat.</translation>
|
||||
</message>
|
||||
@ -859,7 +859,7 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
|
||||
<translation>Zászlók:</translation>
|
||||
</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>
|
||||
<translation>A csatolási pont már használatban van. Kérlek, válassz másikat.</translation>
|
||||
</message>
|
||||
@ -1683,10 +1683,20 @@ Telepítés nem folytatható. <a href="#details">Részletek...&l
|
||||
<translation>&Rendszerbetöltő telepítése ide:</translation>
|
||||
</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>
|
||||
<translation>Biztos vagy benne, hogy létrehozol egy új partíciós táblát itt %1 ?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2570,7 +2580,7 @@ Calamares hiba %1.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 támogatás</translation>
|
||||
</message>
|
||||
|
@ -479,14 +479,14 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Tidak dapat menjalankan perintah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>rootMountPoint tidak didefiniskan, sehingga perintah tidak dapat dijalankan dalam lingkungan environment</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -550,27 +550,27 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
|
||||
<translation>Uku&ran:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Enkripsi</translation>
|
||||
</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>
|
||||
<translation>Logikal</translation>
|
||||
</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>
|
||||
<translation>Utama</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Titik-kait sudah digunakan. Silakan pilih yang lainnya.</translation>
|
||||
</message>
|
||||
@ -860,7 +860,7 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
|
||||
<translation>Bendera:</translation>
|
||||
</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>
|
||||
<translation>Titik-kait sudah digunakan. Silakan pilih yang lainnya.</translation>
|
||||
</message>
|
||||
@ -1684,10 +1684,20 @@ Pemasangan dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</transla
|
||||
<translation>Pasang boot %loader pada:</translation>
|
||||
</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>
|
||||
<translation>Apakah Anda yakin ingin membuat tabel partisi baru pada %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2573,7 +2583,7 @@ Keluaran:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>untuk %3</strong><br/><br/> Hak Cipta 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Hak Cipta 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/> Terimakasih kepada: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dan <a href="https://www.transifex.com/calamares/calamares/"> tim penerjemah Calamares </a>. <br/><br/><a href="https://calamares.io/">Pengembangan Calamares</a>disponsori oleh <br/><a href="http://www.blue-systems.com/">Blue Systems</a>- Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Dukungan %1</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
|
||||
<translation>St&ærð:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Dulrita</translation>
|
||||
</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>
|
||||
<translation>Rökleg</translation>
|
||||
</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>
|
||||
<translation>Aðal</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Tengipunktur er þegar í notkun. Veldu einhvern annan.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
|
||||
<translation>Flögg:</translation>
|
||||
</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>
|
||||
<translation>Tengipunktur er þegar í notkun. Veldu einhvern annan.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
|
||||
<translation>Setja upp ræsistjóran á:</translation>
|
||||
</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>
|
||||
<translation>Ertu viss um að þú viljir búa til nýja disksneið á %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 stuðningur</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Impossibile eseguire il comando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Non è stato definito alcun rootMountPoint, quindi il comando non può essere eseguito nell'ambiente di destinazione.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
||||
<translation>&Dimensione:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Cr&iptare</translation>
|
||||
</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>
|
||||
<translation>Logica</translation>
|
||||
</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>
|
||||
<translation>Primaria</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Il punto di mount è già in uso. Sceglierne un altro.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
||||
<translation>Flag:</translation>
|
||||
</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>
|
||||
<translation>Il punto di mount è già in uso. Sceglierne un altro.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno
|
||||
<translation>Installare il boot &loader su:</translation>
|
||||
</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>
|
||||
<translation>Si è sicuri di voler creare una nuova tabella delle partizioni su %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2570,7 +2580,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>supporto %1</translation>
|
||||
</message>
|
||||
|
@ -184,7 +184,7 @@
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="255"/>
|
||||
<source>&Install</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>インストール(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamaresui/ViewManager.cpp" line="303"/>
|
||||
@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>コマンドを実行できませんでした。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>rootMountPoint が定義されていません、それでターゲットとする環境でコマンドが起動しません。</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>サイズ(&Z)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>暗号化(&C)</translation>
|
||||
</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>
|
||||
<translation>論理</translation>
|
||||
</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>
|
||||
<translation>プライマリ</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>マウントポイントは既に使用されています。他を選択してください。</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>フラグ:</translation>
|
||||
</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>
|
||||
<translation>マウントポイントは既に使用されています。他を選択してください。</translation>
|
||||
</message>
|
||||
@ -1381,12 +1381,12 @@ The installer will quit and all changes will be lost.</source>
|
||||
<message>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="213"/>
|
||||
<source>The password contains monotonic sequence longer than %1 characters</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>パスワードに %1 文字以上の単調な文字列が含まれています</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="214"/>
|
||||
<source>The password contains too long of a monotonic character sequence</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>パスワードに限度を超えた単調な文字列が含まれています</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>ブートローダーインストール先 (&L):</translation>
|
||||
</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>
|
||||
<translation>%1 上で新しいパーティションテーブルを作成します。よろしいですか?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -1815,7 +1825,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<message>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
<translation>KDE Plasma デスクトップの外観を選んでください。この作業はスキップでき、インストール後に外観を設定することができます。外観を選択し、クリックすることにより外観のプレビューが表示されます。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2341,7 +2351,7 @@ Output:
|
||||
<location filename="../src/qml/calamares/slideshow/SlideCounter.qml" line="36"/>
|
||||
<source>%L1 / %L2</source>
|
||||
<extracomment>slide counter, %1 of %2 (numeric)</extracomment>
|
||||
<translation type="unfinished"/>
|
||||
<translation>%L1 / %L2</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2572,7 +2582,7 @@ Output:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the <a href="https://www.transifex.com/calamares/calamares/">Calamares translators team</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> development is sponsored by <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 サポート</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 қолдауы</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Nepavyko paleisti komandos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Nėra apibrėžta šaknies prijungimo vieta, taigi komanda negali būti įvykdyta paskirties aplinkoje.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation>Komanda yra vykdoma serverio aplinkoje ir turi žinoti šaknies kelią, tačiau nėra apibrėžtas joks rootMountPoint.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
|
||||
<translation>D&ydis:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Užši&fruoti</translation>
|
||||
</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>
|
||||
<translation>Loginė</translation>
|
||||
</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>
|
||||
<translation>Pagrindinė</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
|
||||
<translation>Vėliavėlės:</translation>
|
||||
</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>
|
||||
<translation>Prijungimo taškas jau yra naudojamas. Prašome pasirinkti kitą.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
|
||||
<translation>Įdiegti pa&leidyklę skaidinyje:</translation>
|
||||
</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>
|
||||
<translation>Ar tikrai %1 norite sukurti naują skaidinių lentelę?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2265,7 +2275,7 @@ Išvestis:
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="113"/>
|
||||
<source>rootMountPoint is %1</source>
|
||||
<translation>šaknies prijungimo vieta yra %1</translation>
|
||||
<translation>rootMountPoint yra %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/>
|
||||
@ -2571,7 +2581,7 @@ Išvestis:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>sistemai %3</strong><br/><br/>Autorių teisės 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorių teisės 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Dėkojame: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ir <a href="https://www.transifex.com/calamares/calamares/">Calamares vertėjų komandai</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> kūrimą remia <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Išlaisvinanti programinė įranga.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 palaikymas</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>तार्किक</translation>
|
||||
</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>
|
||||
<translation>प्राथमिक</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 पाठबळ</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
|
||||
<translation>St&ørrelse:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Logisk</translation>
|
||||
</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>
|
||||
<translation>Primær</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
|
||||
<translation>&Grootte:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Versleutelen</translation>
|
||||
</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>
|
||||
<translation>Logisch</translation>
|
||||
</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>
|
||||
<translation>Primair</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
|
||||
<translation>Vlaggen:</translation>
|
||||
</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>
|
||||
<translation>Aankoppelpunt reeds in gebruik. Gelieve een andere te kiezen.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
|
||||
<translation>Installeer boot&loader op:</translation>
|
||||
</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>
|
||||
<translation>Weet u zeker dat u een nieuwe partitie tabel wil maken op %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 ondersteuning</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Nie można wykonać polecenia.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Nie określono rootMountPoint, więc polecenie nie może zostać wykonane w docelowym środowisku.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<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>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
|
||||
<translation>Ro&zmiar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Zaszy%fruj</translation>
|
||||
</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>
|
||||
<translation>Logiczna</translation>
|
||||
</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>
|
||||
<translation>Podstawowa</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Punkt montowania jest już używany. Proszę wybrać inny.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
|
||||
<translation>Flagi:</translation>
|
||||
</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>
|
||||
<translation>Punkt montowania jest już używany. Proszę wybrać inny.</translation>
|
||||
</message>
|
||||
@ -1465,7 +1465,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
|
||||
<message>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="265"/>
|
||||
<source>Fatal failure</source>
|
||||
<translation>Krytyczne niepowodzenie</translation>
|
||||
<translation>Błąd krytyczny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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&luj program rozruchowy na:</translation>
|
||||
</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>
|
||||
<translation>Czy na pewno chcesz utworzyć nową tablicę partycji na %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -1814,7 +1824,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
|
||||
<message>
|
||||
<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>
|
||||
<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>
|
||||
</context>
|
||||
<context>
|
||||
@ -2387,28 +2397,28 @@ Wyjście:
|
||||
<message>
|
||||
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="104"/>
|
||||
<source>Machine feedback</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Maszynowa informacja zwrotna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="114"/>
|
||||
<source>Configuring machine feedback.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Konfiguracja machine feedback</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="133"/>
|
||||
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="136"/>
|
||||
<source>Error in machine feedback configuration.</source>
|
||||
<translation type="unfinished"/>
|
||||
<translation>Błąd w konfiguracji maszynowej informacji zwrotnej.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="134"/>
|
||||
<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>
|
||||
<location filename="../src/modules/tracking/TrackingJobs.cpp" line="137"/>
|
||||
<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>
|
||||
</context>
|
||||
<context>
|
||||
@ -2571,7 +2581,7 @@ Wyjście:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>dla %3</strong><br/><br/>Prawa autorskie 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Prawa autorskie 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Podziękowania dla: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg i <a href="https://www.transifex.com/calamares/calamares/">zespołu tłumaczy Calamares</a>.<br/><br/><a href="https://calamares.io/">Projekt Calamares</a> jest sponsorowany przez <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Wsparcie %1</translation>
|
||||
</message>
|
||||
|
@ -479,14 +479,14 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Não foi possível executar o comando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>O comando não pode ser executado no ambiente de destino porque o rootMontPoint não foi definido.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation>O comando é executado no ambiente do hospedeiro e precisa saber o caminho root, mas nenhum rootMountPoint foi definido.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -550,27 +550,27 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
|
||||
<translation>&Tamanho:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Criptografar</translation>
|
||||
</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>
|
||||
<translation>Lógica</translation>
|
||||
</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>
|
||||
<translation>Primária</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Ponto de montagem já em uso. Por favor, selecione outro.</translation>
|
||||
</message>
|
||||
@ -860,7 +860,7 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
|
||||
<translation>Marcadores:</translation>
|
||||
</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>
|
||||
<translation>Ponto de montagem já em uso. Por favor, selecione outro.</translation>
|
||||
</message>
|
||||
@ -1684,10 +1684,20 @@ A instalação pode continuar, mas alguns recursos podem ser desativados.</trans
|
||||
<translation>Insta&lar o gerenciador de inicialização em:</translation>
|
||||
</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>
|
||||
<translation>Você tem certeza de que deseja criar uma nova tabela de partições em %1?</translation>
|
||||
</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 já tem %2 partições primárias, e nenhuma a mais pode ser adicionada. Por favor, remova uma partição primária e adicione uma partição estendida no lugar.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2573,7 +2583,7 @@ Saída:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e às <a href="https://www.transifex.com/calamares/calamares/">equipes de tradução do Calamares</a>.<br/><br/>O desenvolvimento do <a href="https://calamares.io/">Calamares</a> tem apoio de <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 suporte</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Não foi possível correr o comando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Não está definido o Ponto de Montagem root, portanto o comando não pode ser corrido no ambiente alvo.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<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>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
|
||||
<translation>Ta&manho:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>En&criptar</translation>
|
||||
</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>
|
||||
<translation>Lógica</translation>
|
||||
</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>
|
||||
<translation>Primária</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Ponto de montagem já em uso. Por favor selecione outro.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
|
||||
<translation>Flags:</translation>
|
||||
</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>
|
||||
<translation>Ponto de montagem já em uso. Por favor selecione outro.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
|
||||
<translation>Instalar &carregador de arranque em:</translation>
|
||||
</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>
|
||||
<translation>Tem certeza de que deseja criar uma nova tabela de partições em %1?</translation>
|
||||
</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 já tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, por favor remova uma partição primária e adicione uma partição estendida.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Saída de Dados:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>para %3</strong><br/><br/>Direitos de cópia 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Direitos de cópia 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Agradecimentos a: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg e à <a href="https://www.transifex.com/calamares/calamares/">equipa de tradutores do Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> desenvolvimento patrocinado por <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 suporte</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Nu s-a putut executa comanda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Nu este definit niciun rootMountPoint, așadar comanda nu a putut fi executată în mediul dorit.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
|
||||
<translation>Mă&rime:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Criptează</translation>
|
||||
</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>
|
||||
<translation>Logică</translation>
|
||||
</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>
|
||||
<translation>Primară</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Punct de montare existent. Vă rugăm alegeţi altul.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
|
||||
<translation>Flags:</translation>
|
||||
</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>
|
||||
<translation>Punct de montare existent. Vă rugăm alegeţi altul.</translation>
|
||||
</message>
|
||||
@ -1685,10 +1685,20 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
|
||||
<translation>Instalează boot&loaderul pe:</translation>
|
||||
</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>
|
||||
<translation>Sigur doriți să creați o nouă tabelă de partiție pe %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2574,7 +2584,7 @@ Output
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Mulțumiri: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg și <a href="https://www.transifex.com/calamares/calamares/">echipei de traducători Calamares</a>.<br/><br/><a href="https://calamares.io/">Calamares</a>, dezvoltare sponsorizată de <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 suport</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Не удалось выполнить команду.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Ра&змер:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Ши&фровать</translation>
|
||||
</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>
|
||||
<translation>Логический</translation>
|
||||
</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>
|
||||
<translation>Основной</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Точка монтирования уже занята. Пожалуйста, выберете другую.</translation>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Флаги: </translation>
|
||||
</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>
|
||||
<translation>Точка монтирования уже занята. Пожалуйста, выберете другую.</translation>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Установить &загрузчик в:</translation>
|
||||
</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>
|
||||
<translation>Вы уверены, что хотите создать новую таблицу разделов на %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 поддержка</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Nepodarilo sa spustiť príkaz.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>Nie je definovaný parameter rootMountPoint, takže príkaz nemôže byť spustený v cieľovom prostredí.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
|
||||
<translation>Veľ&kosť:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Zaši&frovať</translation>
|
||||
</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>
|
||||
<translation>Logický</translation>
|
||||
</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>
|
||||
<translation>Primárny</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Bod pripojenia sa už používa. Prosím, vyberte iný.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
|
||||
<translation>Značky:</translation>
|
||||
</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>
|
||||
<translation>Bod pripojenia sa už používa. Prosím, vyberte iný.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
|
||||
<translation>Nainštalovať &zavádzač na:</translation>
|
||||
</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>
|
||||
<translation>Naozaj chcete vytvoriť novú tabuľku oddielov na zariadení %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Výstup:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>pre distribúciu %3</strong><br/><br/>Autorské práva 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Autorské práva 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Poďakovanie: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg a <a href="https://www.transifex.com/calamares/calamares/">tím prekladateľov inštalátora Calamares</a>.<br/><br/>Vývoj inštalátora <a href="https://calamares.io/">Calamares</a> je podporovaný spoločnosťou <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Podpora distribúcie %1</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
|
||||
<translation>Ve&likost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Logičen</translation>
|
||||
</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>
|
||||
<translation>Primaren</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
|
||||
<translation>Zastavice:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Ali ste prepričani, da želite ustvariti novo razpredelnico razdelkov na %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -9,12 +9,12 @@
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="79"/>
|
||||
<source>This system was started with an <strong>EFI</strong> boot environment.<br><br>To configure startup from an EFI environment, this installer must deploy a boot loader application, like <strong>GRUB</strong> or <strong>systemd-boot</strong> on an <strong>EFI System Partition</strong>. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own.</source>
|
||||
<translation>Ky sistem qe nisur me një mjedis nisjesh <strong>EFI</strong>.<br><br>Që të formësojë nisjen nga një mjedis EFI, ky instalues duhet të vërë në punë një aplikacion ngarkuesi nisësi, të tillë si <strong>GRUB</strong> ose <strong>systemd-boot</strong> në një <strong>Ndare EFI Sistemi</strong>. Kjo bëhet vetvetiu, hiq rastin kur zgjidhni pjesëzim dorazi, rast në të cilin duhet ta zgjidhni apo krijoni ju vetë.</translation>
|
||||
<translation>Ky sistem qe nisur me një mjedis nisjesh <strong>EFI</strong>.<br><br>Që të formësojë nisjen nga një mjedis EFI, ky instalues duhet të vërë në punë një aplikacion ngarkuesi nisësi, të tillë si <strong>GRUB</strong> ose <strong>systemd-boot</strong> në një <strong>Pjesë EFI Sistemi</strong>. Kjo bëhet vetvetiu, hiq rastin kur zgjidhni pjesëzim dorazi, rast në të cilin duhet ta zgjidhni apo krijoni ju vetë.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="91"/>
|
||||
<source>This system was started with a <strong>BIOS</strong> boot environment.<br><br>To configure startup from a BIOS environment, this installer must install a boot loader, like <strong>GRUB</strong>, either at the beginning of a partition or on the <strong>Master Boot Record</strong> near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own.</source>
|
||||
<translation>Ky sistem qe nisur me një mjedis nisjesh <strong>BIOS</strong>.<br><br>Që të formësojë nisjen nga një mjedis BIOS, ky instalues duhet të instalojë një ngarkues nisjesh, të tillë si <strong>GRUB</strong>, ose në krye të n jë ndarjeje, ose te <strong>Master Boot Record</strong> pranë fillimit të tabelës së ndarjeve (e parapëlqyer). Kjo bëhet vetvetiu, veç në zgjedhshi ndarje dorazi, rast në të cilin duhet ta rregulloni ju vetë.</translation>
|
||||
<translation>Ky sistem qe nisur me një mjedis nisjesh <strong>BIOS</strong>.<br><br>Që të formësojë nisjen nga një mjedis BIOS, ky instalues duhet të instalojë një ngarkues nisjesh, të tillë si <strong>GRUB</strong>, ose në krye të një pjese, ose te <strong>Master Boot Record</strong> pranë fillimit të tabelës së pjesëve (e parapëlqyer). Kjo bëhet vetvetiu, veç në zgjedhshi pjesëzim dorazi, rast në të cilin duhet ta rregulloni ju vetë.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -27,12 +27,12 @@
|
||||
<message>
|
||||
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="76"/>
|
||||
<source>Boot Partition</source>
|
||||
<translation>Ndarje Nisjesh</translation>
|
||||
<translation>Pjesë Nisjesh</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="81"/>
|
||||
<source>System Partition</source>
|
||||
<translation>Ndarje Sistemi</translation>
|
||||
<translation>Pjesë Sistemi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/libcalamares/PythonHelper.cpp" line="284"/>
|
||||
<source>unparseable Python error</source>
|
||||
<translation>Gabim kodi Python të papërtypshëm dot</translation>
|
||||
<translation>Gabim kod Python i papërtypshëm dot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="174"/>
|
||||
<source>For best results, please ensure that this computer:</source>
|
||||
<translation>Për përfundime më të mirë, ju lutemi, garantoni që ky kompjuter:</translation>
|
||||
<translation>Për përfundime më të mira, ju lutemi, garantoni që ky kompjuter:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="235"/>
|
||||
<source><strong>Manual partitioning</strong><br/>You can create or resize partitions yourself.</source>
|
||||
<translation><strong>Ndarje dorazi</strong><br/>Ndarjet mund t’i krijoni dhe ripërmasoni ju vetë.</translation>
|
||||
<translation><strong>Pjesëzim dorazi</strong><br/>Pjesët mund t’i krijoni dhe ripërmasoni ju vetë.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<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>
|
||||
<translation>%1 do të zvogëlohet në %2MB dhe për %4 do të krijohet një ndarje e re %3MB.</translation>
|
||||
<translation>%1 do të zvogëlohet në %2MB dhe për %4 do të krijohet një pjesë e re %3MB.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="795"/>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="925"/>
|
||||
<source><strong>Select a partition to shrink, then drag the bottom bar to resize</strong></source>
|
||||
<translation><strong>Përzgjidhni një ndarje që të zvogëlohet, mandej tërhiqni shtyllën e poshtme që ta ripërmasoni</strong></translation>
|
||||
<translation><strong>Përzgjidhni një pjesë që të zvogëlohet, mandej tërhiqni shtyllën e poshtme që ta ripërmasoni</strong></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1040"/>
|
||||
<source><strong>Select a partition to install on</strong></source>
|
||||
<translation><strong>Përzgjidhni një ndarje ku të instalohet</strong></translation>
|
||||
<translation><strong>Përzgjidhni një pjesë ku të instalohet</strong></translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<translation>Në këtë sistem s’mund të gjendet gjëkundi një ndarje EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi që të rregulloni %1.</translation>
|
||||
<translation>Në këtë sistem s’gjendet gjëkundi një pjesë EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëzimin dorazi që të rregulloni %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1105"/>
|
||||
<source>The EFI system partition at %1 will be used for starting %2.</source>
|
||||
<translation>Për nisjen e %2 do të përdoret ndarja EFI e sistemit te %1.</translation>
|
||||
<translation>Për nisjen e %2 do të përdoret pjesa EFI e sistemit te %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1113"/>
|
||||
<source>EFI system partition:</source>
|
||||
<translation>Ndarje Sistemi EFI:</translation>
|
||||
<translation>Pjesë Sistemi EFI:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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?<br/>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 në të. Ç’do të donit të bënito?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi.</translation>
|
||||
<translation>Kjo pajisje depozitimi përmban %1 në të. Ç’do të donit të bënit?<br/>Do të jeni në gjendje të rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se te pajisja e depozitimit të bëhet çfarëdo ndryshimi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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="1284"/>
|
||||
<source><strong>Install alongside</strong><br/>The installer will shrink a partition to make room for %1.</source>
|
||||
<translation><strong>Instaloje në krah të tij</strong><br/>Instaluesi do të zvogëlojë një ndarje për të bërë vend për %1.</translation>
|
||||
<translation><strong>Instaloje në krah të tij</strong><br/>Instaluesi do të zvogëlojë një pjesë për të bërë vend për %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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="1292"/>
|
||||
<source><strong>Replace a partition</strong><br/>Replaces a partition with %1.</source>
|
||||
<translation><strong>Zëvendëso një ndarje</strong><br/>Zëvendëson një ndarje me %1.</translation>
|
||||
<translation><strong>Zëvendëso një pjesë</strong><br/>Zëvendëson një pjesë me %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="49"/>
|
||||
<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>
|
||||
<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>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>S’u xhirua dot urdhri.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>S’ka të caktuar rootMountPoint, ndaj urdhri s’mund të xhirohet në mjedisin e synuar.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation>Urdhri xhirohet në mjedisin strehë dhe është e nevojshme të dijë shtegun për rrënjën, por nuk ka rootMountPoint të përcaktuar.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -500,7 +500,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="14"/>
|
||||
<source>Create a Partition</source>
|
||||
<translation>Krijoni një Ndarje</translation>
|
||||
<translation>Krijoni një Pjesë</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
|
||||
<source>Partition &Type:</source>
|
||||
<translation>&Lloj Ndarjeje:</translation>
|
||||
<translation>&Lloj Pjese:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>&Madhësi:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>&Fshehtëzoje</translation>
|
||||
</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>
|
||||
<translation>Logjik</translation>
|
||||
<translation>Logjike</translation>
|
||||
</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>
|
||||
<translation>Parësor</translation>
|
||||
<translation>Parësore</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.</translation>
|
||||
</message>
|
||||
@ -578,22 +578,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="44"/>
|
||||
<source>Create new %2MB partition on %4 (%3) with file system %1.</source>
|
||||
<translation>Krijo ndarje të re %2MB te %4 (%3) me sistem kartelash %1.</translation>
|
||||
<translation>Krijo pjesë të re %2MB te %4 (%3) me sistem kartelash %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="55"/>
|
||||
<source>Create new <strong>%2MB</strong> partition on <strong>%4</strong> (%3) with file system <strong>%1</strong>.</source>
|
||||
<translation>Krijo ndarje të re <strong>%2MB</strong> te <strong>%4</strong> (%3) me sistem kartelash <strong>%1</strong>.</translation>
|
||||
<translation>Krijo pjesë të re <strong>%2MB</strong> te <strong>%4</strong> (%3) me sistem kartelash <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="67"/>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="79"/>
|
||||
<source>The installer failed to create partition on disk '%1'.</source>
|
||||
<translation>Instaluesi s’arriti të krijojë ndarje në diskun '%1'.</translation>
|
||||
<translation>Instaluesi s’arriti të krijojë pjesë në diskun '%1'.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -601,17 +601,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="20"/>
|
||||
<source>Create Partition Table</source>
|
||||
<translation>Krijo Tabelë Ndarjesh</translation>
|
||||
<translation>Krijo Tabelë Pjesësh</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<translation>Krijimi i një tabele të re ndarjesh do të fshijë krejt të dhënat ekzistuese në disk.</translation>
|
||||
<translation>Krijimi i një tabele të re pjesësh do të fshijë krejt të dhënat ekzistuese në disk.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="65"/>
|
||||
<source>What kind of partition table do you want to create?</source>
|
||||
<translation>Ç’lloj tabele ndarjesh doni të krijoni?</translation>
|
||||
<translation>Ç’lloj tabele pjesësh doni të krijoni?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="82"/>
|
||||
<source>GUID Partition Table (GPT)</source>
|
||||
<translation>Tabelë Ndarjesh GUID (GPT)</translation>
|
||||
<translation>Tabelë Pjesësh GUID (GPT)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -629,22 +629,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="45"/>
|
||||
<source>Create new %1 partition table on %2.</source>
|
||||
<translation>Krijo tabelë të re ndarjesh %1 te %2.</translation>
|
||||
<translation>Krijo tabelë të re pjesësh %1 te %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="52"/>
|
||||
<source>Create new <strong>%1</strong> partition table on <strong>%2</strong> (%3).</source>
|
||||
<translation>Krijoni tabelë ndarjeje të re <strong>%1</strong> te <strong>%2</strong> (%3).</translation>
|
||||
<translation>Krijoni tabelë pjesësh të re <strong>%1</strong> te <strong>%2</strong> (%3).</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="62"/>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="72"/>
|
||||
<source>The installer failed to create a partition table on %1.</source>
|
||||
<translation>Instaluesi s’arriti të krijojë tabelë ndarjesh në diskun %1.</translation>
|
||||
<translation>Instaluesi s’arriti të krijojë tabelë pjesësh në diskun %1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -720,22 +720,22 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="40"/>
|
||||
<source>Delete partition %1.</source>
|
||||
<translation>Fshije ndarjen %1.</translation>
|
||||
<translation>Fshije pjesën %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="48"/>
|
||||
<source>Delete partition <strong>%1</strong>.</source>
|
||||
<translation>Fshije ndarjen <strong>%1</strong>.</translation>
|
||||
<translation>Fshije pjesën <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="56"/>
|
||||
<source>Deleting partition %1.</source>
|
||||
<translation>Po fshihet ndarja %1.</translation>
|
||||
<translation>Po fshihet pjesa %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="68"/>
|
||||
<source>The installer failed to delete partition %1.</source>
|
||||
<translation>Instaluesi dështoi në fshirjen e ndarjes %1.</translation>
|
||||
<translation>Instaluesi dështoi në fshirjen e pjesës %1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -743,32 +743,32 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="150"/>
|
||||
<source>The type of <strong>partition table</strong> on the selected storage device.<br><br>The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.<br>This installer will keep the current partition table unless you explicitly choose otherwise.<br>If unsure, on modern systems GPT is preferred.</source>
|
||||
<translation>Lloji i <strong>tabelës së ndarjeve</strong> në pajisjen e përzgjedhur të depozitimeve.<br><br>Mënyra e vetme për ndryshim të tabelës së ndarjeve është të fshihet dhe rikrijohet nga e para tabela e ndarjeve, çka shkatërron krejt të dhënat në pajisjen e depozitimit.<br>Ky instalues do të ruajë tabelën e tanishme të ndarjeve, veç në zgjedhshi shprehimisht ndryshe.<br>Nëse s’jeni i sigurt, në sisteme moderne parapëlqehet GPT.</translation>
|
||||
<translation>Lloji i <strong>tabelës së pjesëve</strong> në pajisjen e përzgjedhur të depozitimeve.<br><br>Mënyra e vetme për ndryshim të tabelës së pjesëve është të fshihet dhe rikrijohet nga e para tabela e pjesëve, çka shkatërron krejt të dhënat në pajisjen e depozitimit.<br>Ky instalues do të ruajë tabelën e tanishme të pjesëve, veç në zgjedhshi shprehimisht ndryshe.<br>Nëse s’jeni i sigurt, në sisteme moderne parapëlqehet GPT.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="107"/>
|
||||
<source>This device has a <strong>%1</strong> partition table.</source>
|
||||
<translation>Kjo pajisje ka një tabelë ndarjesh <strong>%1</strong>.</translation>
|
||||
<translation>Kjo pajisje ka një tabelë pjesësh <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="114"/>
|
||||
<source>This is a <strong>loop</strong> device.<br><br>It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem.</source>
|
||||
<translation>Kjo është një pajisje <strong>loop</strong>.<br><br>Është një pseudo-pajisje pa tabelë ndarjesh, që e bën një kartelë të përdorshme si një pajisje blloqesh. Kjo lloj skeme zakonisht përmban një sistem të vetëm kartelash.</translation>
|
||||
<translation>Kjo është një pajisje <strong>loop</strong>.<br><br>Është një pseudo-pajisje pa tabelë pjesësh, që e bën një kartelë të përdorshme si një pajisje blloqesh. Kjo lloj skeme zakonisht përmban një sistem të vetëm kartelash.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="121"/>
|
||||
<source>This installer <strong>cannot detect a partition table</strong> on the selected storage device.<br><br>The device either has no partition table, or the partition table is corrupted or of an unknown type.<br>This installer can create a new partition table for you, either automatically, or through the manual partitioning page.</source>
|
||||
<translation>Ky instalues <strong>s’pikas dot tabelë ndarjesh</strong> te pajisja e depozitimit e përzgjedhur.<br><br>Ose pajisja s’ka tabelë ndarjesh, ose tabela e ndarjeve është e dëmtuar ose e një lloji të panjohur.<br>Ky instalues mund të krijojë për ju një tabelë të re ndarjesh, ose vetvetiu, ose përmes faqes së pjesëzimit dorazi.</translation>
|
||||
<translation>Ky instalues <strong>s’pikas dot tabelë pjesësh</strong> te pajisja e depozitimit e përzgjedhur.<br><br>Ose pajisja s’ka tabelë pjesësh, ose tabela e pjesëve është e dëmtuar ose e një lloji të panjohur.<br>Ky instalues mund të krijojë për ju një tabelë të re pjesësh, ose vetvetiu, ose përmes faqes së pjesëzimit dorazi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="131"/>
|
||||
<source><br><br>This is the recommended partition table type for modern systems which start from an <strong>EFI</strong> boot environment.</source>
|
||||
<translation><br><br>Ky është lloji i parapëlqyer tabele ndarjesh për sisteme modernë që nisen nga një mjedis nisjesh <strong>EFI</strong>.</translation>
|
||||
<translation><br><br>Ky është lloji i parapëlqyer tabele pjesësh për sisteme modernë që nisen nga një mjedis nisjesh <strong>EFI</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="137"/>
|
||||
<source><br><br>This partition table type is only advisable on older systems which start from a <strong>BIOS</strong> boot environment. GPT is recommended in most other cases.<br><br><strong>Warning:</strong> the MBR partition table is an obsolete MS-DOS era standard.<br>Only 4 <em>primary</em> partitions may be created, and of those 4, one can be an <em>extended</em> partition, which may in turn contain many <em>logical</em> partitions.</source>
|
||||
<translation><br><br>Ky lloj tabele ndarjesh është i këshillueshëm vetëm në sisteme të vjetër të cilët nisen nga një mjedis nisjesh <strong>BIOS</strong>. Në shumicën e rasteve të tjera këshillohet GPT.<br><br><strong>Kujdes:</strong> Tabela e ndarjeve MBR është një standard i vjetruar, i erës MS-DOS.<br>Mund të krijohen vetëm 4 ndarje <em>parësore</em>, dhe nga këto 4, një mund të jetë ndarje <em>extended</em>, e cila nga ana e vet mund të përmbajë mjaft ndarje <em>logjike</em>.</translation>
|
||||
<translation><br><br>Ky lloj tabele pjesësh është i këshillueshëm vetëm në sisteme të vjetër të cilët nisen nga një mjedis nisjesh <strong>BIOS</strong>. Në shumicën e rasteve të tjera këshillohet GPT.<br><br><strong>Kujdes:</strong> Tabela e pjesëve MBR është një standard i vjetruar, i erës MS-DOS.<br>Mund të krijohen vetëm 4 pjesë <em>parësore</em>, dhe nga këto 4, një mund të jetë pjesë <em>extended</em>, e cila nga ana e vet mund të përmbajë mjaft pjesë <em>logjike</em>.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -789,12 +789,12 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="133"/>
|
||||
<source>Skip writing LUKS configuration for Dracut: "/" partition is not encrypted</source>
|
||||
<translation>Anashkalo shkrim formësiim LUKS për Dracut: ndarja \"/\" s’është e fshehtëzuar</translation>
|
||||
<translation>Anashkalo shkrim formësimi LUKS për Dracut: pjesa \"/\" s’është e fshehtëzuar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="149"/>
|
||||
<source>Failed to open %1</source>
|
||||
<translation>S’arriti të hapë %1</translation>
|
||||
<translation>S’u arrit të hapet %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -810,7 +810,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="20"/>
|
||||
<source>Edit Existing Partition</source>
|
||||
<translation>Përpuno Ndarje Ekzistuese</translation>
|
||||
<translation>Përpuno Pjesën Ekzistuese</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="89"/>
|
||||
<source>Warning: Formatting the partition will erase all existing data.</source>
|
||||
<translation>Kujdes: Formatimi i ndarjes do të fshijë krejt të dhënat ekzistuese.</translation>
|
||||
<translation>Kujdes: Formatimi i pjesës do të fshijë krejt të dhënat ekzistuese.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
</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>
|
||||
<translation>Pikë montimi tashmë e përdorur. Ju lutemi, përzgjidhni një tjetër.</translation>
|
||||
</message>
|
||||
@ -896,27 +896,27 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="123"/>
|
||||
<source>Set partition information</source>
|
||||
<translation>Caktoni të dhëna ndarjeje</translation>
|
||||
<translation>Caktoni të dhëna pjese</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="147"/>
|
||||
<source>Install %1 on <strong>new</strong> %2 system partition.</source>
|
||||
<translation>Instaloje %1 në ndarje sistemi <strong>të re</strong> %2.</translation>
|
||||
<translation>Instaloje %1 në pjesë sistemi <strong>të re</strong> %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="151"/>
|
||||
<source>Set up <strong>new</strong> %2 partition with mount point <strong>%1</strong>.</source>
|
||||
<translation>Rregullo ndarje të <strong>re</strong> %2 me pikë montimi <strong>%1</strong>.</translation>
|
||||
<translation>Rregullo pjesë të <strong>re</strong> %2 me pikë montimi <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="159"/>
|
||||
<source>Install %2 on %3 system partition <strong>%1</strong>.</source>
|
||||
<translation>Instaloje %2 te ndarja e sistemit %3 <strong>%1</strong>.</translation>
|
||||
<translation>Instaloje %2 te pjesa e sistemit %3 <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="164"/>
|
||||
<source>Set up %3 partition <strong>%1</strong> with mount point <strong>%2</strong>.</source>
|
||||
<translation>Rregullo ndarje %3 <strong>%1</strong> me pikë montimi <strong>%2</strong>.</translation>
|
||||
<translation>Rregullo pjesë %3 <strong>%1</strong> me pikë montimi <strong>%2</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="41"/>
|
||||
<source>Format partition %1 (file system: %2, size: %3 MB) on %4.</source>
|
||||
<translation>Formatoje ndarjen %1 (sistem kartelash: %2, madhësi: %3 MB) në %4.</translation>
|
||||
<translation>Formatoje pjesën %1 (sistem kartelash: %2, madhësi: %3 MB) në %4.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="52"/>
|
||||
<source>Format <strong>%3MB</strong> partition <strong>%1</strong> with file system <strong>%2</strong>.</source>
|
||||
<translation>Formato ndarje <strong>%3MB</strong> <strong>%1</strong> me sistem kartelash <strong>%2</strong>.</translation>
|
||||
<translation>Formato pjesë <strong>%3MB</strong> <strong>%1</strong> me sistem kartelash <strong>%2</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="63"/>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="77"/>
|
||||
<source>The installer failed to format partition %1 on disk '%2'.</source>
|
||||
<translation>Instaluesi s’arriti të formatojë ndarjen %1 në diskun '%2'.</translation>
|
||||
<translation>Instaluesi s’arriti të formatojë pjesën %1 në diskun '%2'.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1088,7 +1088,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/license/LicensePage.cpp" line="118"/>
|
||||
<source>Please review the End User License Agreements (EULAs) above.<br/>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 të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtohemi me kushtet, procedura e rregullimit s’mund të shkojë më tej.</translation>
|
||||
<translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtoheni me kushtet, procedura e rregullimit s’mund të shkojë më tej.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/license/LicensePage.cpp" line="129"/>
|
||||
<source>Please review the End User License Agreements (EULAs) above.<br/>If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead.</source>
|
||||
<translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtohemi me kushtet, nuk do të instalohet software pronësor, dhe në vend të tij do të përdoren alternativa nga burimi i hapët.</translation>
|
||||
<translation>Ju lutemi, shqyrtoni Marrëveshje Licencimi Për Përdorues të Thjeshtë (EULAs) më sipër.<br/>Nëse nuk pajtoheni me kushtet, nuk do të instalohet software pronësor, dhe në vend të tij do të përdoren alternativa nga burimi i hapët.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="202"/>
|
||||
<source>The password does not contain enough character classes</source>
|
||||
<translation>Fjalëkalimi nuk përmban klasa të mjaftueshme shenjash</translation>
|
||||
<translation>Fjalëkalimi s’përmban klasa të mjaftueshme shenjash</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="225"/>
|
||||
<source>The password fails the dictionary check - %1</source>
|
||||
<translation>Fjalëkalimi s’kaloi dot kontrollin kundrejt fjalorit - %1</translation>
|
||||
<translation>Fjalëkalimi s’kalon dot kontrollin kundrejt fjalorit - %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/users/CheckPWQuality.cpp" line="227"/>
|
||||
<source>The password fails the dictionary check</source>
|
||||
<translation>Fjalëkalimi s’kaloi dot kontrollin kundrejt fjalorit</translation>
|
||||
<translation>Fjalëkalimi s’kalon dot kontrollin kundrejt fjalorit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="205"/>
|
||||
<source>New partition for %1</source>
|
||||
<translation>Ndarje e re për %1</translation>
|
||||
<translation>Pjesë e re për %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="207"/>
|
||||
<source>New partition</source>
|
||||
<translation>Ndarje e re</translation>
|
||||
<translation>Pjesë e re</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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="173"/>
|
||||
<source>New partition</source>
|
||||
<translation>Ndarje e re</translation>
|
||||
<translation>Pjesë e re</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/PartitionPage.ui" line="87"/>
|
||||
<source>New Partition &Table</source>
|
||||
<translation>&Tabelë e Re Ndarjesh</translation>
|
||||
<translation>&Tabelë e Re Pjesësh</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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 &ngarkues nisjesh në:</translation>
|
||||
</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>
|
||||
<translation>Jeni i sigurt se doni të krijoni një tabelë të re ndarjesh në %1?</translation>
|
||||
<translation>Jeni i sigurt se doni të krijoni një tabelë të re pjesësh në %1?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="193"/>
|
||||
<source>Can not create new partition</source>
|
||||
<translation>S’krijohet 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 s’mund të shtohen të tjera. Ju lutemi, në vend të kësaj, hiqni një pjesë parësore dhe shtoni një pjesë të zgjeruar.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1697,7 +1707,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="121"/>
|
||||
<source>Partitions</source>
|
||||
<translation>Ndarje</translation>
|
||||
<translation>Pjesë</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="166"/>
|
||||
<source><strong>Replace</strong> a partition with %1.</source>
|
||||
<translation><strong>Zëvendësojeni</strong> një ndarje me %1.</translation>
|
||||
<translation><strong>Zëvendësojeni</strong> një pjesë me %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="196"/>
|
||||
<source><strong>Replace</strong> a partition on disk <strong>%2</strong> (%3) with %1.</source>
|
||||
<translation><strong>Zëvendëso</strong> një ndarje te disku <strong>%2</strong> (%3) me %1.</translation>
|
||||
<translation><strong>Zëvendëso</strong> një pjesë te disku <strong>%2</strong> (%3) me %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="399"/>
|
||||
<source>No EFI system partition configured</source>
|
||||
<translation>S’ka të formësuar ndarje sistemi EFI</translation>
|
||||
<translation>S’ka të formësuar pjesë sistemi EFI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="400"/>
|
||||
<source>An EFI system partition is necessary to start %1.<br/><br/>To configure an EFI system partition, go back and select or create a FAT32 filesystem with the <strong>esp</strong> flag enabled and mount point <strong>%2</strong>.<br/><br/>You can continue without setting up an EFI system partition but your system may fail to start.</source>
|
||||
<translation>Që të niset %1, është e domosdoshme një ndarje sistemi EFI.<br/><br/>Që të formësoni një ndarje sistemi EFI, kthehuni mbrapsht dhe përzgjidhni ose krijoni një sistem kartelash FAT32 me flamurkën <strong>esp</strong> të aktivizuar dhe me pikë montimi <strong>%2</strong>.<br/><br/>Mund të vazhdoni pa rregulluar një ndarje sistemi EFI, por mundet që sistemi të mos arrijë dot të niset.</translation>
|
||||
<translation>Që të niset %1, është e domosdoshme një pjesë sistemi EFI.<br/><br/>Që të formësoni një pjesë sistemi EFI, kthehuni mbrapsht dhe përzgjidhni ose krijoni një sistem kartelash FAT32 me flamurkën <strong>esp</strong> të aktivizuar dhe me pikë montimi <strong>%2</strong>.<br/><br/>Mund të vazhdoni pa rregulluar një pjesë sistemi EFI, por mundet që sistemi të mos arrijë dot të niset.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="413"/>
|
||||
<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>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="414"/>
|
||||
<source>An EFI system partition is necessary to start %1.<br/><br/>A partition was configured with mount point <strong>%2</strong> but its <strong>esp</strong> flag is not set.<br/>To set the flag, go back and edit the partition.<br/><br/>You can continue without setting the flag but your system may fail to start.</source>
|
||||
<translation>Që të niset %1, është e domosdoshme një ndarje sistemi EFI.<br/><br/>Është formësuar një ndarje me pikë montimi <strong>%2</strong>, por pa i vënë flamurkën <strong>esp</strong>.<br/>Që t’ia vini, kthehuni mbrapsht dhe përpunoni ndarjen.<br/><br/>Mund të vazhdoni pa i vënë flamurkën, por mundet që sistemi të mos arrijë dot të niset.</translation>
|
||||
<translation>Që të niset %1, është e domosdoshme një pjesë sistemi EFI.<br/><br/>Është formësuar një pjesë me pikë montimi <strong>%2</strong>, por pa i vënë flamurkën <strong>esp</strong>.<br/>Që t’ia vini, kthehuni mbrapsht dhe përpunoni pjesë.<br/><br/>Mund të vazhdoni pa i vënë flamurkën, por mundet që sistemi të mos arrijë dot të niset.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="449"/>
|
||||
<source>Boot partition not encrypted</source>
|
||||
<translation>Ndarje nisjesh e pafshehtëzuar</translation>
|
||||
<translation>Pjesë nisjesh e pafshehtëzuar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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.<br/><br/>There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.<br/>You may continue if you wish, but filesystem unlocking will happen later during system startup.<br/>To encrypt the boot partition, go back and recreate it, selecting <strong>Encrypt</strong> in the partition creation window.</source>
|
||||
<translation>Tok me ndarjen e fshehtëzuar <em>root</em> qe rregulluar edhe një ndarje <em>boot</em> veçmas, por ndarja <em>boot</em> s’është e fshehtëzuar.<br/><br/>Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një ndarje të pafshehtëzuar.<br/>Mund të vazhdoni nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.<br/>Që të fshehtëzoni ndarjen <em>boot</em>, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të ndarjes <strong>Fshehtëzoje</strong>.</translation>
|
||||
<translation>Tok me pjesën e fshehtëzuar <em>root</em> qe rregulluar edhe një pjesë <em>boot</em> veçmas, por pjesa <em>boot</em> s’është e fshehtëzuar.<br/><br/>Ka preokupime mbi sigurinë e këtij lloj rregullimi, ngaqë kartela të rëndësishme sistemi mbahen në një pjesë të pafshehtëzuar.<br/>Mund të vazhdoni nëse doni, por shkyçja e sistemit të kartelave do të ndodhë më vonë, gjatë nisjes së sistemit.<br/>Që të fshehtëzoni pjesën <em>boot</em>, kthehuni mbrapsht dhe rikrijojeni, duke përzgjedhur te skena e krijimit të pjesës <strong>Fshehtëzoje</strong>.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1814,7 +1824,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
|
||||
<message>
|
||||
<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>
|
||||
<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 të jetë instaluar sistemi. Klikimi mbi një përzgjedhje look-and-feel do t’ju japë një paraparje të atypëratyshme të 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 të jetë instaluar sistemi. Klikimi mbi një përzgjedhje për pamje dhe ndjesi do t’ju japë një paraparje të atypëratyshme të tyre.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1876,12 +1886,12 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="290"/>
|
||||
<source>External command failed to finish.</source>
|
||||
<translation>Udhri i jashtëm s’arriti të përfundohej.</translation>
|
||||
<translation>S’u arrit të përfundohej urdhër i jashtëm.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="291"/>
|
||||
<source>Command <i>%1</i> failed to finish in %2 seconds.</source>
|
||||
<translation>Urdhri <i>%1</i> s’arriti të përfundohej në %2 sekonda.</translation>
|
||||
<translation>S’u arrit të përfundohej urdhri <i>%1</i> në %2 sekonda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CalamaresUtilsSystem.cpp" line="297"/>
|
||||
@ -1930,7 +1940,7 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="49"/>
|
||||
<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>
|
||||
</context>
|
||||
<context>
|
||||
@ -1943,59 +1953,59 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="134"/>
|
||||
<source>Select where to install %1.<br/><font color="red">Warning: </font>this will delete all files on the selected partition.</source>
|
||||
<translation>Përzgjidhni ku të instalohet %1.<br/><font color=\"red\">Kujdes: </font>kjo do të sjellë fshirjen e krejt kartelave në ndarjen e përzgjedhur.</translation>
|
||||
<translation>Përzgjidhni ku të instalohet %1.<br/><font color=\"red\">Kujdes: </font>kjo do të sjellë fshirjen e krejt kartelave në pjesën e përzgjedhur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="160"/>
|
||||
<source>The selected item does not appear to be a valid partition.</source>
|
||||
<translation>Objekti i përzgjedhur s’duket se është ndarje e vlefshme.</translation>
|
||||
<translation>Objekti i përzgjedhur s’duket se është pjesë e vlefshme.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="168"/>
|
||||
<source>%1 cannot be installed on empty space. Please select an existing partition.</source>
|
||||
<translation>%1 s’mund të instalohet në hapësirë të zbrazët. Ju lutemi, përzgjidhni një ndarje ekzistuese.</translation>
|
||||
<translation>%1 s’mund të instalohet në hapësirë të zbrazët. Ju lutemi, përzgjidhni një pjesë ekzistuese.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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>
|
||||
<translation>%1 s’mund të instalohet në një ndarje të llojit extended. Ju lutemi, përzgjidhni një ndarje parësore ose logjike ekzistuese.</translation>
|
||||
<translation>%1 s’mund të instalohet në një pjesë të llojit <em>extended</em>. Ju lutemi, përzgjidhni një pjesë parësore ose logjike ekzistuese.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="188"/>
|
||||
<source>%1 cannot be installed on this partition.</source>
|
||||
<translation>%1 s’mund të instalohet në këtë ndarje.</translation>
|
||||
<translation>%1 s’mund të instalohet në këtë pjesë.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="194"/>
|
||||
<source>Data partition (%1)</source>
|
||||
<translation>Ndarje të dhënash (%1)</translation>
|
||||
<translation>Pjesë të dhënash (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="211"/>
|
||||
<source>Unknown system partition (%1)</source>
|
||||
<translation>Ndarje sistemi e panjohur (%1)</translation>
|
||||
<translation>Pjesë sistemi e panjohur (%1)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="216"/>
|
||||
<source>%1 system partition (%2)</source>
|
||||
<translation>Ndarje sistemi %1 (%2)</translation>
|
||||
<translation>Pjesë sistemi %1 (%2)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="227"/>
|
||||
<source><strong>%4</strong><br/><br/>The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB.</source>
|
||||
<translation><strong>%4</strong><br/><br/>Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një ndarje me kapacitet të paktën %3 GiB.</translation>
|
||||
<translation><strong>%4</strong><br/><br/>Ndarja %1 është shumë e vogël për %2. Ju lutemi, përzgjidhni një pjesë me kapacitet të paktën %3 GiB.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="250"/>
|
||||
<source><strong>%2</strong><br/><br/>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
|
||||
<translation><strong>%2</strong><br/><br/>Në këtë sistem s’gjendet dot ndonjë ndarje sistemi EFI. Ju lutemi, që të rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi.</translation>
|
||||
<translation><strong>%2</strong><br/><br/>Në këtë sistem s’gjendet dot ndonjë pjesë sistemi EFI. Ju lutemi, që të rregulloni %1, kthehuni mbrapsht dhe përdorni procesin e pjesëzimit dorazi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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="302"/>
|
||||
<source><strong>%3</strong><br/><br/>%1 will be installed on %2.<br/><font color="red">Warning: </font>all data on partition %2 will be lost.</source>
|
||||
<translation><strong>%3</strong><br/><br/>%1 do të instalohet në %2.<br/><font color=\"red\">Kujdes: </font>krejt të dhënat në ndarjen %2 do të humbin.</translation>
|
||||
<translation><strong>%3</strong><br/><br/>%1 do të instalohet në %2.<br/><font color=\"red\">Kujdes: </font>krejt të dhënat në pjesën %2 do të humbin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="270"/>
|
||||
@ -2005,7 +2015,7 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="286"/>
|
||||
<source>EFI system partition:</source>
|
||||
<translation>Ndarje Sistemi EFI:</translation>
|
||||
<translation>Pjesë Sistemi EFI:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2038,12 +2048,12 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="138"/>
|
||||
<source>is plugged in to a power source</source>
|
||||
<translation>është në prizë</translation>
|
||||
<translation>është lidhur te një burim energjie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="139"/>
|
||||
<source>The system is not plugged in to a power source.</source>
|
||||
<translation>Sistemi s'është i lidhur me ndonjë burim rryme.</translation>
|
||||
<translation>Sistemi s'është i lidhur me ndonjë burim energjie.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="146"/>
|
||||
@ -2071,12 +2081,12 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="48"/>
|
||||
<source>Resize partition %1.</source>
|
||||
<translation>Ripërmaso ndarjen %1.</translation>
|
||||
<translation>Ripërmaso pjesën %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="55"/>
|
||||
<source>Resize <strong>%2MB</strong> partition <strong>%1</strong> to <strong>%3MB</strong>.</source>
|
||||
<translation>Ripërmasoje ndarjen <strong>%2MB</strong> <strong>%1</strong> në <strong>%3MB</strong>.</translation>
|
||||
<translation>Ripërmasoje pjesën <strong>%2MB</strong> <strong>%1</strong> në <strong>%3MB</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="66"/>
|
||||
@ -2086,7 +2096,7 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="85"/>
|
||||
<source>The installer failed to resize partition %1 on disk '%2'.</source>
|
||||
<translation>Instaluesi s’arriti të ripërmasojë ndarjen %1 në diskun '%2'.</translation>
|
||||
<translation>Instaluesi s’arriti të ripërmasojë pjesën %1 në diskun '%2'.</translation>
|
||||
</message>
|
||||
</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="329"/>
|
||||
<source>Failed to write to %1</source>
|
||||
<translation>Dështoi në shkrimin te %1</translation>
|
||||
<translation>S’u arrit të shkruhej te %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="322"/>
|
||||
@ -2167,17 +2177,17 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="49"/>
|
||||
<source>Set flags on partition %1.</source>
|
||||
<translation>Caktoni flamurka në ndarjen %1.</translation>
|
||||
<translation>Caktoni flamurka në pjesën %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="52"/>
|
||||
<source>Set flags on %1MB %2 partition.</source>
|
||||
<translation>Caktoni flamurka në ndarjen %1MB %2.`</translation>
|
||||
<translation>Caktoni flamurka në pjesën %1MB %2.`</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="56"/>
|
||||
<source>Set flags on new partition.</source>
|
||||
<translation>Caktoni flamurka në ndarje të re.</translation>
|
||||
<translation>Caktoni flamurka në pjesë të re.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="67"/>
|
||||
@ -2197,52 +2207,52 @@ Përfundim:
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="79"/>
|
||||
<source>Flag partition <strong>%1</strong> as <strong>%2</strong>.</source>
|
||||
<translation>I vini shenjë ndarjes <strong>%1</strong> si <strong>%2</strong>.</translation>
|
||||
<translation>I vini shenjë pjesës <strong>%1</strong> si <strong>%2</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="85"/>
|
||||
<source>Flag %1MB <strong>%2</strong> partition as <strong>%3</strong>.</source>
|
||||
<translation>I vini shenjë ndarjes %1MB <strong>%2</strong> si <strong>%3</strong>.</translation>
|
||||
<translation>I vini shenjë pjesës %1MB <strong>%2</strong> si <strong>%3</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="91"/>
|
||||
<source>Flag new partition as <strong>%1</strong>.</source>
|
||||
<translation>I vini shenjë ndarjes së re si <strong>%1</strong>.</translation>
|
||||
<translation>I vini shenjë pjesës së re si <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="103"/>
|
||||
<source>Clearing flags on partition <strong>%1</strong>.</source>
|
||||
<translation>Po hiqen shenjat në ndarjen <strong>%1</strong>.</translation>
|
||||
<translation>Po hiqen shenjat në pjesën <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="107"/>
|
||||
<source>Clearing flags on %1MB <strong>%2</strong> partition.</source>
|
||||
<translation>Po hiqen shenjat në ndarjen %1MB <strong>%2</strong>.</translation>
|
||||
<translation>Po hiqen shenjat në pjesën %1MB <strong>%2</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="111"/>
|
||||
<source>Clearing flags on new partition.</source>
|
||||
<translation>Po hiqen shenjat në ndarjen e re.</translation>
|
||||
<translation>Po hiqen shenjat në pjesën e re.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="115"/>
|
||||
<source>Setting flags <strong>%2</strong> on partition <strong>%1</strong>.</source>
|
||||
<translation>Po vihen flamurkat <strong>%2</strong> në ndarjen <strong>%1</strong>.</translation>
|
||||
<translation>Po vihen flamurkat <strong>%2</strong> në pjesën <strong>%1</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="121"/>
|
||||
<source>Setting flags <strong>%3</strong> on %1MB <strong>%2</strong> partition.</source>
|
||||
<translation>Po vihen flamurkat <strong>%3</strong> në ndarjen %1MB <strong>%2</strong>.</translation>
|
||||
<translation>Po vihen flamurkat <strong>%3</strong> në pjesën %1MB <strong>%2</strong>.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="127"/>
|
||||
<source>Setting flags <strong>%1</strong> on new partition.</source>
|
||||
<translation>Po vihen flamurkat <strong>%1</strong> në ndarjen e re.</translation>
|
||||
<translation>Po vihen flamurkat <strong>%1</strong> në pjesën e re.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="140"/>
|
||||
<source>The installer failed to set flags on partition %1.</source>
|
||||
<translation>Instaluesi s’arriti të vërë flamurka në ndarjen %1.</translation>
|
||||
<translation>Instaluesi s’arriti të vërë flamurka në pjesën %1.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2455,7 +2465,7 @@ Përfundim:
|
||||
<message>
|
||||
<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 <b>only be sent once</b> after the installation finishes.</source>
|
||||
<translation>Duke përzgjedhur këtë, di të dërgoni të dhëna mbi instalimin dhe hardware-in tuaj. Këto të dhëna do të <b>dërgohen vetëm një herë</b>, pasi të përfundojë instalimi.</translation>
|
||||
<translation>Duke përzgjedhur këtë, do të dërgoni të dhëna mbi instalimin dhe hardware-in tuaj. Këto të dhëna do të <b>dërgohen vetëm një herë</b>, pasi të përfundojë instalimi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/tracking/TrackingPage.cpp" line="46"/>
|
||||
@ -2571,7 +2581,7 @@ Përfundim:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Të drejta Kopjimi 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Të drejta Kopjimi 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Falënderime për: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg dhe <a href="https://www.transifex.com/calamares/calamares/">ekipin e përkthyesve të Calamares-it</a>.<br/><br/>Zhvillimi i <a href="https://calamares.io/">Calamares</a> sponsorizohet nga <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Asistencë %1</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Вели&чина</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Логичка</translation>
|
||||
</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>
|
||||
<translation>Примарна</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 подршка</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
|
||||
<translation>Veli&čina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>Logička</translation>
|
||||
</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>
|
||||
<translation>Primarna</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ Alla ändringar kommer att gå förlorade.</translation>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ Alla ändringar kommer att gå förlorade.</translation>
|
||||
<translation>Storlek:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Kr%yptera</translation>
|
||||
</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>
|
||||
<translation>Logisk</translation>
|
||||
</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>
|
||||
<translation>Primär</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Monteringspunkt används redan. Välj en annan.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ Alla ändringar kommer att gå förlorade.</translation>
|
||||
<translation>Flaggor:</translation>
|
||||
</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>
|
||||
<translation>Monteringspunkt används redan. Välj en annan.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ Alla ändringar kommer att gå förlorade.</translation>
|
||||
<translation>Installera uppstartshanterare på:</translation>
|
||||
</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>
|
||||
<translation>Är du säker på att du vill skapa en ny partitionstabell på %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1-support</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>&Z ขนาด:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>โลจิคอล</translation>
|
||||
</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>
|
||||
<translation>หลัก</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Flags:</translation>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation>คุณแน่ใจว่าจะสร้างตารางพาร์ทิชันใหม่บน %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -480,14 +480,14 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>Komut çalıştırılamadı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>RootMountPoint kök bağlama noktası tanımlanmadığından, hedef ortamda komut çalıştırılamaz.</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -551,27 +551,27 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
|
||||
<translation>Bo&yut:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>Şif&rele</translation>
|
||||
</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>
|
||||
<translation>Mantıksal</translation>
|
||||
</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>
|
||||
<translation>Birincil</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.</translation>
|
||||
</message>
|
||||
@ -861,7 +861,7 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
|
||||
<translation>Bayraklar:</translation>
|
||||
</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>
|
||||
<translation>Bağlama noktası zaten kullanımda. Lütfen diğerini seçiniz.</translation>
|
||||
</message>
|
||||
@ -1685,10 +1685,20 @@ Kuruluma devam edebilirsiniz fakat bazı özellikler devre dışı kalabilir.</t
|
||||
<translation>Şuraya ön &yükleyici kur:</translation>
|
||||
</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>
|
||||
<translation>%1 tablosunda yeni bölüm oluşturmaya devam etmek istiyor musunuz?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2576,7 +2586,7 @@ Sistem güç kaynağına bağlı değil.</translation>
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>için %3</strong><br/><br/>Telif Hakkı 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Telif Hakkı 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>Teşekkürler: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg ve <a href="https://www.transifex.com/calamares/calamares/">Calamares çeviri takımı için</a>.<br/><br/><a href="https://calamares.io/">Calamares</a> gelişim sponsoru <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Özgür Yazılım.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 destek</translation>
|
||||
</message>
|
||||
|
@ -477,13 +477,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Ро&змір:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>За&шифрувати</translation>
|
||||
</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>
|
||||
<translation>Логічний</translation>
|
||||
</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>
|
||||
<translation>Основний</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>Точка підключення наразі використовується. Оберіть, будь ласка, іншу.</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Прапорці:</translation>
|
||||
</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>
|
||||
<translation>Точка підключення наразі використовується. Оберіть, будь ласка, іншу.</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>Встановити за&вантажувач на:</translation>
|
||||
</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>
|
||||
<translation>Ви впевнені, що бажаєте створити нову таблицю розділів на %1?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2568,7 +2578,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>Підтримка %1</translation>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -476,13 +476,13 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
@ -547,27 +547,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -857,7 +857,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
@ -1681,10 +1681,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<translation type="unfinished"/>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2567,7 +2577,7 @@ Output:
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
|
@ -478,14 +478,14 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>无法运行命令</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>未定义任何 rootMountPoint,无法在目标环境中运行命令。</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -549,27 +549,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>大小(&Z):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>加密(&C)</translation>
|
||||
</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>
|
||||
<translation>逻辑分区</translation>
|
||||
</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>
|
||||
<translation>主分区</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>挂载点已被占用。请选择另一个。</translation>
|
||||
</message>
|
||||
@ -860,7 +860,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>标记:</translation>
|
||||
</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>
|
||||
<translation>挂载点已被占用。请选择另一个。</translation>
|
||||
</message>
|
||||
@ -1684,10 +1684,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>安装引导程序于(&L):</translation>
|
||||
</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>
|
||||
<translation>您是否确定要在 %1 上创建新分区表?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2573,7 +2583,7 @@ Output:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>for %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>特别感谢:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 及 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻译团队</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 的开发由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> 赞助。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 的支持信息</translation>
|
||||
</message>
|
||||
|
@ -477,14 +477,14 @@ The installer will quit and all changes will be lost.</source>
|
||||
<context>
|
||||
<name>CommandList</name>
|
||||
<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>
|
||||
<translation>無法執行指令。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="114"/>
|
||||
<source>No rootMountPoint is defined, so command cannot be run in the target environment.</source>
|
||||
<translation>未定義 rootMountPoint,所以指令無法在目標環境中執行。</translation>
|
||||
<location filename="../src/libcalamares/utils/CommandList.cpp" line="125"/>
|
||||
<source>The command runs in the host environment and needs to know the root path, but no rootMountPoint is defined.</source>
|
||||
<translation>指令執行於主機環境中,且需要知道根路徑,但根掛載點未定義。</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -548,27 +548,27 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>容量大小 (&z) :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="68"/>
|
||||
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="69"/>
|
||||
<source>En&crypt</source>
|
||||
<translation>加密(&C)</translation>
|
||||
</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>
|
||||
<translation>邏輯磁區</translation>
|
||||
</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>
|
||||
<translation>主要磁區</translation>
|
||||
</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>
|
||||
<translation>GPT</translation>
|
||||
</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>
|
||||
<translation>掛載點使用中。請選擇其他的。</translation>
|
||||
</message>
|
||||
@ -858,7 +858,7 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>旗標:</translation>
|
||||
</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>
|
||||
<translation>掛載點使用中。請選擇其他的。</translation>
|
||||
</message>
|
||||
@ -1682,10 +1682,20 @@ The installer will quit and all changes will be lost.</source>
|
||||
<translation>安裝開機載入器在(&L):</translation>
|
||||
</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>
|
||||
<translation>您是否確定要在 %1 上建立一個新的分割區表格?</translation>
|
||||
</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>
|
||||
<name>PartitionViewStep</name>
|
||||
@ -2571,7 +2581,7 @@ Output:
|
||||
<translation><h1>%1</h1><br/><strong>%2<br/>為 %3</strong><br/><br/>Copyright 2014-2017 Teo Mrnjavac &lt;teo@kde.org&gt;<br/>Copyright 2017 Adriaan de Groot &lt;groot@kde.org&gt;<br/>感謝:Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg 與 <a href="https://www.transifex.com/calamares/calamares/">Calamares 翻譯團隊</a>。<br/><br/><a href="https://calamares.io/">Calamares</a> 開發由 <br/><a href="http://www.blue-systems.com/">Blue Systems</a> - Liberating Software 贊助。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="287"/>
|
||||
<location filename="../src/modules/welcome/WelcomePage.cpp" line="290"/>
|
||||
<source>%1 support</source>
|
||||
<translation>%1 支援</translation>
|
||||
</message>
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: enolp <enolp@softastur.org>, 2017\n"
|
||||
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Georgi Georgiev <georgiev_1994@abv.bg>, 2018\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Davidmp <medipas@gmail.com>, 2017\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2017\n"
|
||||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/calamares/teams/20061/cs_CZ/)\n"
|
||||
@ -16,7 +16,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs_CZ\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#: src/modules/umount/main.py:40
|
||||
msgid "Unmount file systems."
|
||||
@ -50,6 +50,7 @@ msgid_plural "Installing %(num)d packages."
|
||||
msgstr[0] "Je instalován jeden balíček."
|
||||
msgstr[1] "Jsou instalovány %(num)d balíčky."
|
||||
msgstr[2] "Je instalováno %(num)d balíčků."
|
||||
msgstr[3] "Je instalováno %(num)d balíčků."
|
||||
|
||||
#: src/modules/packages/main.py:69
|
||||
#, python-format
|
||||
@ -58,3 +59,4 @@ msgid_plural "Removing %(num)d packages."
|
||||
msgstr[0] "Odebírá se jeden balíček."
|
||||
msgstr[1] "Odebírají se %(num)d balíčky."
|
||||
msgstr[2] "Odebírá se %(num)d balíčků."
|
||||
msgstr[3] "Odebírá se %(num)d balíčků."
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Dan Johansen (Strit), 2017\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/calamares/teams/20061/da/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Dirk Hein <bankman@posteo.de>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/calamares/teams/20061/de/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2017\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/calamares/teams/20061/el/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/calamares/teams/20061/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
BIN
lang/python/eo/LC_MESSAGES/python.mo
Normal file
BIN
lang/python/eo/LC_MESSAGES/python.mo
Normal file
Binary file not shown.
58
lang/python/eo/LC_MESSAGES/python.po
Normal file
58
lang/python/eo/LC_MESSAGES/python.po
Normal 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.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: strel, 2017\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/calamares/teams/20061/es/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/calamares/teams/20061/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: Spanish (Puerto Rico) (https://www.transifex.com/calamares/teams/20061/es_PR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
Binary file not shown.
@ -8,8 +8,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Madis, 2018\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/calamares/teams/20061/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -19,39 +20,39 @@ msgstr ""
|
||||
|
||||
#: src/modules/umount/main.py:40
|
||||
msgid "Unmount file systems."
|
||||
msgstr ""
|
||||
msgstr "Haagi failisüsteemid lahti."
|
||||
|
||||
#: src/modules/dummypython/main.py:44
|
||||
msgid "Dummy python job."
|
||||
msgstr ""
|
||||
msgstr "Testiv python'i töö."
|
||||
|
||||
#: src/modules/dummypython/main.py:97
|
||||
msgid "Dummy python step {}"
|
||||
msgstr ""
|
||||
msgstr "Testiv python'i aste {}"
|
||||
|
||||
#: src/modules/machineid/main.py:35
|
||||
msgid "Generate machine-id."
|
||||
msgstr ""
|
||||
msgstr "Genereeri masina-id."
|
||||
|
||||
#: src/modules/packages/main.py:61
|
||||
#, python-format
|
||||
msgid "Processing packages (%(count)d / %(total)d)"
|
||||
msgstr ""
|
||||
msgstr "Pakkide töötlemine (%(count)d / %(total)d)"
|
||||
|
||||
#: src/modules/packages/main.py:63 src/modules/packages/main.py:73
|
||||
msgid "Install packages."
|
||||
msgstr ""
|
||||
msgstr "Installi pakid."
|
||||
|
||||
#: src/modules/packages/main.py:66
|
||||
#, python-format
|
||||
msgid "Installing one package."
|
||||
msgid_plural "Installing %(num)d packages."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Installin ühe paki."
|
||||
msgstr[1] "Installin %(num)d pakki."
|
||||
|
||||
#: src/modules/packages/main.py:69
|
||||
#, python-format
|
||||
msgid "Removing one package."
|
||||
msgid_plural "Removing %(num)d packages."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Eemaldan ühe paki."
|
||||
msgstr[1] "Eemaldan %(num)d pakki."
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/calamares/teams/20061/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
Binary file not shown.
@ -8,14 +8,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/calamares/teams/20061/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: src/modules/umount/main.py:40
|
||||
msgid "Unmount file systems."
|
||||
@ -47,9 +47,11 @@ msgstr ""
|
||||
msgid "Installing one package."
|
||||
msgid_plural "Installing %(num)d packages."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/modules/packages/main.py:69
|
||||
#, python-format
|
||||
msgid "Removing one package."
|
||||
msgid_plural "Removing %(num)d packages."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: Finnish (Finland) (https://www.transifex.com/calamares/teams/20061/fi_FI/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Jeremy Gourmel <jgourmel@free.fr>, 2018\n"
|
||||
"Language-Team: French (https://www.transifex.com/calamares/teams/20061/fr/)\n"
|
||||
|
Binary file not shown.
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-07 09:14-0400\n"
|
||||
"POT-Creation-Date: 2018-05-16 11:40-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/calamares/teams/20061/fr_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user