[merge] from upstream

This commit is contained in:
Philip Mueller 2024-08-14 10:10:36 +07:00
commit d9f807d464
177 changed files with 5381 additions and 5223 deletions

View File

@ -42,3 +42,6 @@ jobs:
- name: "build (extensions)"
shell: bash
run: BUILDDIR=/build/calamares-extensions SRCDIR=${SRCDIR}/calamares-extensions ./ci/build.sh
- name: "test (core)"
shell: bash
run: ctest --test-dir /build -V

View File

@ -7,14 +7,38 @@ contributors are listed. Note that Calamares does not have a historical
changelog -- this log starts with version 3.3.0. See CHANGES-3.2 for
the history of the 3.2 series (2018-05 - 2022-08).
# 3.3.9 (unreleased)
# 3.3.10 (unreleased)
This release contains contributions from (alphabetically by first name):
- You could be the one!
This release contains contributions from (alphabetically by given name):
- Nobody yet
## Core ##
- Nothing yet
## Modules ##
- Nothing yet
# 3.3.9 (2024-08-12)
Please note that if you are using the *luksbootkeyfile* module,
it must be placed before the *fstab* module in settings.conf. If it comes
after, then the keyfile will be missing from crypttab and the user will be
asked for their password multiple times.
This release contains contributions from (alphabetically by given name):
- Adriaan de Groot
- Evan James
- Luca Matei Pintilie
## Core ##
- Improved schemas for configuration files
- Support for Interlingue in Qt 6.7
## Modules ##
- Placed *luksbootkeyfile* before *fstab* in the example `settings.conf` (#2356, Evan)
- *packages* module `xbcs` package manager now logs progress messages (#2359, Luca)
- *partition* module mentions creating a swap file in its summary (#2320, Adriaan)
# 3.3.8 (2024-07-02)

View File

@ -37,6 +37,7 @@
# - SCHEMA_TESTING (requires Python, see ci/configvalidator.py)
# - TESTING (standard CMake option)
# DEBUG_<foo> : special developer flags for debugging.
# PYTHONLIBS_VERSION : if set on the command-line, use a specific Python version
#
# Example usage:
#
@ -47,7 +48,7 @@
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
set(CALAMARES_VERSION 3.3.9)
set(CALAMARES_VERSION 3.3.10)
set(CALAMARES_RELEASE_MODE OFF) # Set to ON during a release
if(CMAKE_SCRIPT_MODE_FILE)
@ -101,6 +102,14 @@ option(BUILD_CRASH_REPORTING "Enable crash reporting with KCrash." ON)
# - DEBUG_PARTITION_UNSAFE (see partition/CMakeLists.txt)
# - DEBUG_PARTITION_BAIL_OUT (see partition/CMakeLists.txt)
# Special handling for Python versions:
# - If you set PYTHONLIBS_VERSION on the command-line, then
# that **exact** version will be searched for, and no other.
# - If you do not set PYTHONLIBS_VERSION on the command-line,
# any suitable version will be found -- but this can fail if
# you have multiple Python versions installed, only some of
# which include the development headers.
### USE_*
#
# By convention, when there are multiple modules that implement similar
@ -167,6 +176,22 @@ set( _tx_incomplete bqi es_PR gu ie ja-Hira kk kn lo lv mk ne_NP
### Required versions
#
# See DEPENDENCIES section below.
# The default build is with Qt5, but that is increasingly not the
# version installed-by-default on Linux systems. Upgrade the default
# if Qt5 isn't available but Qt6 is. This also saves messing around
# with special CMake flags for every script (e.g. ci/RELEASE.sh and
# ci/abicheck.sh).
if(NOT WITH_QT6)
find_package(Qt5Core QUIET)
if(NOT TARGET Qt5::Core)
find_package(Qt6Core QUIET)
if(TARGET Qt6::Core)
message(STATUS "Default Qt version (Qt5) not found, upgrading build to Qt6")
set(WITH_QT6 ON)
endif()
endif()
endif()
if(WITH_QT6)
message(STATUS "Building Calamares with Qt6")
set(qtname "Qt6")
@ -192,7 +217,12 @@ else()
endif()
set(BOOSTPYTHON_VERSION 1.72.0)
set(PYTHONLIBS_VERSION 3.6)
if(DEFINED PYTHONLIBS_VERSION)
set(PYTHONLIBS_EXTRA "EXACT")
else()
set(PYTHONLIBS_VERSION 3.6)
set(PYTHONLIBS_EXTRA "")
endif()
set(YAMLCPP_VERSION 0.5.1)
### CMAKE SETUP
@ -200,23 +230,15 @@ set(YAMLCPP_VERSION 0.5.1)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules")
# Enable IN_LIST
if(POLICY CMP0057)
cmake_policy(SET CMP0057 NEW)
endif()
cmake_policy(SET CMP0057 NEW)
# Let ``AUTOMOC`` and ``AUTOUIC`` process ``GENERATED`` files.
if(POLICY CMP0071)
cmake_policy(SET CMP0071 NEW)
endif()
cmake_policy(SET CMP0071 NEW)
# Recognize more macros to trigger automoc
if(NOT CMAKE_VERSION VERSION_LESS "3.10.0")
list(
APPEND
CMAKE_AUTOMOC_MACRO_NAMES
list(APPEND CMAKE_AUTOMOC_MACRO_NAMES
"K_PLUGIN_FACTORY_WITH_JSON"
"K_EXPORT_PLASMA_DATAENGINE_WITH_JSON"
"K_EXPORT_PLASMA_RUNNER"
)
endif()
)
# CMake Modules
include(CMakePackageConfigHelpers)
@ -404,7 +426,7 @@ if(NOT TARGET ${kfname}::Crash)
set(BUILD_CRASH_REPORTING OFF)
endif()
find_package(Python ${PYTHONLIBS_VERSION} COMPONENTS Interpreter Development)
find_package(Python ${PYTHONLIBS_VERSION} ${PYTHONLIBS_EXTRA} COMPONENTS Interpreter Development)
set_package_properties(
Python
PROPERTIES
@ -710,7 +732,7 @@ add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_D
# The module support files -- .desc files, .conf files -- are copied into the build
# directory so that it is possible to run `calamares -d` from there. Copy the
# top-level settings.conf as well, into the build directory.
if( settings.conf IS_NEWER_THAN ${CMAKE_BINARY_DIR}/settings.conf )
if(settings.conf IS_NEWER_THAN ${CMAKE_BINARY_DIR}/settings.conf)
configure_file(settings.conf ${CMAKE_BINARY_DIR}/settings.conf COPYONLY)
endif()

View File

@ -15,7 +15,7 @@ if(NOT TARGET calapmcore)
find_package(${kfname}I18n CONFIG)
find_package(${kfname}WidgetsAddons CONFIG)
if( WITH_QT6)
if(WITH_QT6)
find_package(KPMcore 24.01.75)
else()
find_package(KPMcore 20.04.0)

View File

@ -218,6 +218,41 @@ Calamares translations are done on Transifex.
The [translator's guide](https://github.com/calamares/calamares/wiki/Translate-Guide)
on the wiki explains how to get involved there.
### Using Transifex
> This section is copied from the wiki. Please read the wiki for more details.
Calamares uses [Transifex](https://www.transifex.com/) as its translation
inrfastructure.
The [project overview](https://www.transifex.com/calamares/calamares/) for Calamares
shows which languages exist and how translated they are.
Translations are (semi-)regularly updated from the *calamares* (development)
branch of Calamares and sent to Transifex; updated translations are
imported into the same *calamares* branch.
This means that stable releases don't get translation updates --
I have not thought of a good way to do that with one Calamares
project in Transifex.
Internally, the program uses **both** Qt translations and GNU
gettext. This is invisible for the translator, but it does mean
that the same string can show up in two different Calamares string collections.
### Using Pull Requests
> Please avoid using PRs to update translations if you can.
> They **can** be merged back to Transifex, but it's somewhat
> annoying to do so. You can merge your updated translations files
> (the `.ts` files) to Transifex as described in this section.
- Log in to Transifex
- Select the language for upload (e.g. Arabic)
- Click the resource to update (e.g. *Calamares* which is the one for the
bulk of the strings from the program itself, stored as
`lang/calamares_ar.ts` in the repository)
- Click *Upload file* and pick the right `.ts` file
- Click the *Translate* button to double-check the uploaded translations.
## Testing Calamares

View File

@ -34,6 +34,7 @@
# * BUILD_CLANG set to `false` to avoid second build with clang
# * BUILD_ONLY set to `true` to break after building
# * TEST_TARBALL set to 'false' to skip build-and-test phase after tarring
# * QT_VERSION set to nothing (uses default), 5 or 6
#
### END USAGE
@ -70,11 +71,18 @@ while getopts "hBbPT" opt ; do
esac
done
if $STRING_FREEZE ; then
sh ci/txcheck.sh || { echo "! String freeze failed." ; exit 1 ; }
fi
# Via environment, not command-line
case "$QT_VERSION" in
5) extra_cmake_args="-DWITH_QT6=OFF" ;;
6) extra_cmake_args="-DWITH_QT6=ON" ;;
"") extra_cmake_args="" ;;
*) echo "Invalid QT_VERSION environment '${QT_VERSION}'" ; exit 1 ; ;;
esac
### Setup
#
#
@ -102,7 +110,7 @@ test -n "$V" || { echo "Could not obtain version in $BUILDDIR ." ; exit 1 ; }
if test "x$BUILD_DEFAULT" = "xtrue" ; then
rm -rf "$BUILDDIR"
mkdir "$BUILDDIR" || { echo "Could not create build directory." ; exit 1 ; }
( cd "$BUILDDIR" && cmake .. && make -j4 ) || { echo "Could not perform test-build in $BUILDDIR." ; exit 1 ; }
( cd "$BUILDDIR" && cmake .. $extra_cmake_args && make -j4 ) || { echo "Could not perform test-build in $BUILDDIR." ; exit 1 ; }
( cd "$BUILDDIR" && make test ) || { echo "Tests failed in $BUILDDIR ." ; exit 1 ; }
fi
@ -114,7 +122,7 @@ if test "x$BUILD_CLANG" = "xtrue" ; then
# Do build again with clang
rm -rf "$BUILDDIR"
mkdir "$BUILDDIR" || { echo "Could not create build directory." ; exit 1 ; }
( cd "$BUILDDIR" && CC=clang CXX=clang++ cmake .. && make -j4 ) || { echo "Could not perform test-build in $BUILDDIR." ; exit 1 ; }
( cd "$BUILDDIR" && CC=clang CXX=clang++ cmake .. $extra_cmake_args && make -j4 ) || { echo "Could not perform test-build in $BUILDDIR." ; exit 1 ; }
( cd "$BUILDDIR" && make test ) || { echo "Tests failed in $BUILDDIR (clang)." ; exit 1 ; }
fi
fi
@ -131,7 +139,7 @@ else
# Presumably -B was given; just do the cmake part
rm -rf "$BUILDDIR"
mkdir "$BUILDDIR" || { echo "Could not create build directory." ; exit 1 ; }
( cd "$BUILDDIR" && cmake .. ) || { echo "Could not run cmake in $BUILDDIR ." ; exit 1 ; }
( cd "$BUILDDIR" && cmake .. $extra_cmake_args ) || { echo "Could not run cmake in $BUILDDIR ." ; exit 1 ; }
fi
### Create signed tag

View File

@ -10,11 +10,22 @@
# least once, maybe twice (if it needs the base-version ABI information
# and hasn't cached it).
# The build settings can be influenced via environment variables:
# * QT_VERSION set to nothing (uses default), 5 or 6
case "$QT_VERSION" in
5) extra_cmake_args="-DWITH_QT6=OFF" ;;
6) extra_cmake_args="-DWITH_QT6=ON" ;;
"") extra_cmake_args="" ;;
*) echo "Invalid QT_VERSION environment '${QT_VERSION}'" ; exit 1 ; ;;
esac
# The base version can be a tag or git-hash; it will be checked-out
# in a worktree.
#
# Note that the hash here corresponds to v3.3.0 .
BASE_VERSION=1d8a1972422d83c36f2b934c2629ae1f564c0428
# Note that the hash here corresponds to v3.3.3 . That was a release
# with hidden visibility enabled and a first step towards more-stable ABI.
BASE_VERSION=8741c7ec1a94ee5f27e98ef3663d1a8f4738d2c2
### Build a tree and cache the ABI info into ci/
#
@ -27,9 +38,11 @@ do_build() {
rm -rf $BUILD_DIR
rm -f $BUILD_DIR.log
cmake -S $SOURCE_DIR -B $BUILD_DIR -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Og -g -gdwarf" -DCMAKE_C_FLAGS="-Og -g -gdwarf" > /dev/null 2>&1
echo "# Running CMake for $LABEL"
cmake -S $SOURCE_DIR -B $BUILD_DIR -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Og -g -gdwarf" -DCMAKE_C_FLAGS="-Og -g -gdwarf" $extra_cmake_args > /dev/null 2>&1
test -f $BUILD_DIR/Makefile || { echo "! failed to CMake $LABEL" ; exit 1 ; }
echo "# Running make for $LABEL"
# Two targets make knows about at top-level
if make -C $BUILD_DIR -j12 calamares calamaresui > $BUILD_DIR.log 2>&1
then
@ -40,6 +53,7 @@ do_build() {
cp $lib ci/`basename $lib`.$LABEL
done
rm -rf $BUILD_DIR $BUILD_DIR.log
echo "# .. build successful for $LABEL"
else
echo "! failed to build $LABEL"
exit 1

View File

@ -351,7 +351,7 @@
<location filename="../src/libcalamaresui/viewpages/QmlViewStep.cpp" line="73"/>
<source>Loading</source>
<comment>@status</comment>
<translation type="unfinished"/>
<translation>تحميل</translation>
</message>
<message>
<location filename="../src/libcalamaresui/viewpages/QmlViewStep.cpp" line="100"/>
@ -363,7 +363,7 @@
<location filename="../src/libcalamaresui/viewpages/QmlViewStep.cpp" line="286"/>
<source>Loading failed.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>فشل التحميل.</translation>
</message>
</context>
<context>
@ -372,7 +372,7 @@
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="100"/>
<source>Requirements checking for module '%1' is complete.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>التحقق من المتطلبات للقطعه '%1' قد تم.</translation>
</message>
<message numerus="yes">
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="124"/>
@ -404,8 +404,8 @@
<location filename="../src/libcalamares/modulesystem/RequirementsChecker.cpp" line="130"/>
<source>System-requirements checking is complete.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<translation>تم التأكد من متطلبات النظام</translation>
</message>
</context>
<context>
<name>Calamares::ViewManager</name>
@ -465,7 +465,7 @@ Link copied to clipboard</source>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="188"/>
<source>Calamares Initialization Failed</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation> فشل تهيئة كالاماريس</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="189"/>
@ -483,19 +483,19 @@ Link copied to clipboard</source>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="336"/>
<source>Continue with Setup?</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>أستمرّ في الإعداد</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="337"/>
<source>Continue with Installation?</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>الاستمرار في التثبيت؟</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="339"/>
<source>The %1 setup program is about to make changes to your disk in order to set up %2.&lt;br/&gt;&lt;strong&gt;You will not be able to undo these changes.&lt;/strong&gt;</source>
<comment>%1 is short product name, %2 is short product name with version</comment>
<translation type="unfinished"/>
<translation>مثبّت %1 على وشك بإجراء تعديلات على قرصك لتثبيت %2.&lt;br/&gt;&lt;strong&gt;لن تستطيع التّراجع عن هذا.&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="343"/>
@ -507,25 +507,25 @@ Link copied to clipboard</source>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="348"/>
<source>&amp;Set Up Now</source>
<comment>@button</comment>
<translation type="unfinished"/>
<translation>إعداد الآن&amp;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="348"/>
<source>&amp;Install Now</source>
<comment>@button</comment>
<translation type="unfinished"/>
<translation>&amp;ثبت الآن</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="355"/>
<source>Go &amp;Back</source>
<comment>@button</comment>
<translation type="unfinished"/>
<translation>رجوع&amp;</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="402"/>
<source>&amp;Set Up</source>
<comment>@button</comment>
<translation type="unfinished"/>
<translation>&amp;جهز</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="402"/>
@ -549,13 +549,13 @@ Link copied to clipboard</source>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="407"/>
<source>Cancel the setup process without changing the system.</source>
<comment>@tooltip</comment>
<translation type="unfinished"/>
<translation>ألغي عملية التجهيز بدون تغيير النظام.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="408"/>
<source>Cancel the installation process without changing the system.</source>
<comment>@tooltip</comment>
<translation type="unfinished"/>
<translation>إلغاء عملية التثبيت دون تغيير</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="418"/>
@ -585,13 +585,13 @@ Link copied to clipboard</source>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="524"/>
<source>Cancel Setup?</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>إلغاء التجهيز</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="524"/>
<source>Cancel Installation?</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>إلغاء التثبيت؟</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="525"/>
@ -695,8 +695,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>الحاليّ:</translation>
@ -708,7 +708,7 @@ The installer will quit and all changes will be lost.</source>
<translation>بعد:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -725,127 +725,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;اختر القسم حيث سيكون التّثبيت عليه&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>تعذّر إيجاد قسم النّظام EFI في أيّ مكان. فضلًا ارجع واستخدم التّقسيم اليدويّ لإعداد %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>سيُستخدم قسم نظام EFI على %1 لبدء %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>قسم نظام EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>لا يبدو أن في جهاز التّخزين أيّ نظام تشغيل. ما الذي تودّ فعله؟&lt;br/&gt;يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;مسح القرص&lt;/strong&gt;&lt;br/&gt;هذا س&lt;font color="red"&gt;يمسح&lt;/font&gt; كلّ البيانات الموجودة في جهاز التّخزين المحدّد.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;ثبّت جنبًا إلى جنب&lt;/strong&gt;&lt;br/&gt;سيقلّص المثبّت قسمًا لتفريغ مساحة لِ %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;استبدل قسمًا&lt;/strong&gt;&lt;br/&gt;يستبدل قسمًا مع %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>على جهاز التّخزين %1. ما الذي تودّ فعله؟&lt;br/&gt;يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>على جهاز التّخزين هذا نظام تشغيل ذأصلًا. ما الذي تودّ فعله؟&lt;br/&gt;يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>على جهاز التّخزين هذا عدّة أنظمة تشغيل. ما الذي تودّ فعله؟&lt;br/&gt;يمكنك مراجعة الاختيارات وتأكيدها قبل تطبيقها على جهاز التّخزين.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;تقسيم يدويّ&lt;/strong&gt;&lt;br/&gt;يمكنك إنشاء أو تغيير حجم الأقسام بنفسك.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>موقع محمل الإقلاع</translation>
@ -914,12 +914,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -942,13 +942,13 @@ The installer will quit and all changes will be lost.</source>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
<source>The setup of %1 did not complete successfully.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>لم يتم التجهيز %1 بي نجاح.</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="146"/>
<source>The installation of %1 did not complete successfully.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>لم يتم التثبيت %1 بي نجاح.</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="150"/>
@ -972,7 +972,7 @@ The installer will quit and all changes will be lost.</source>
<location filename="../src/modules/finished/Config.cpp" line="154"/>
<source>The installation of %1 is complete.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>التثبيت لي %1 قد تم</translation>
</message>
<message>
<location filename="../src/modules/keyboard/Config.cpp" line="506"/>
@ -996,13 +996,13 @@ The installer will quit and all changes will be lost.</source>
<location filename="../src/modules/locale/Config.cpp" line="416"/>
<source>The system language will be set to %1.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>لغة النظام سيكون %1.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="423"/>
<source>The numbers and dates locale will be set to %1.</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>سيتم تعيين الأرقام والتاريخ على %1</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="53"/>
@ -1057,7 +1057,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="247"/>
<source>None</source>
<translation type="unfinished"/>
<translation>لا شيء</translation>
</message>
<message>
<location filename="../src/modules/summary/Config.cpp" line="35"/>
@ -1068,7 +1068,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/summary/Config.cpp" line="39"/>
<source>This is an overview of what will happen once you start the setup procedure.</source>
<translation type="unfinished"/>
<translation>نظرة عامة على ما سيحدث عندما تبدأ عملية الإعداد.</translation>
</message>
<message>
<location filename="../src/modules/summary/Config.cpp" line="44"/>
@ -1083,12 +1083,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/users/Config.cpp" line="242"/>
<source>Your username must start with a lowercase letter or underscore.</source>
<translation type="unfinished"/>
<translation>يجب أن يبدأ إسم المستخدم بحرف صغير أو underscore.</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="246"/>
<source>Only lowercase letters, numbers, underscore and hyphen are allowed.</source>
<translation type="unfinished"/>
<translation>يجب أن يبدأ إسم المستخدم بحرف صغير فقط</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="252"/>
@ -1128,7 +1128,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="57"/>
<source>This computer does not satisfy the minimum requirements for setting up %1.&lt;br/&gt;Setup cannot continue.</source>
<translation type="unfinished"/>
<translation>هذا الحاسوب ليس لديه الحد الأدنى من الشروط لإنشاء %1.&lt;br/&gt;Setup cannot continue.</translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="60"/>
@ -3262,17 +3262,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation>ি:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 ি ি %2MiB 'ব আৰু %4ৰ বাবে %3MiBৰ নতুন বিভজন বনোৱা হ'</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; ি ি &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> ি EFI ি ি ' ি ি ি ি %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI ি ি %2 '</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI ি ি:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি ি ি ি ি ি ি?&lt;br/&gt;ি ি ি ি িি ি ি</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;ি &lt;/strong&gt;&lt;br/&gt; ি &lt;font color="red"&gt;ি&lt;/font&gt; '</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; %1 ি ি ি</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;ি ি &lt;/strong&gt; &lt;br/&gt; ি % ি </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি %1 &lt;br/&gt; ি ি ি ি? ি ি ি ি ি ি ি</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি ি ি ি ি ি ি ি? &lt;br/&gt; ি ি ি ি ি ি ি</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি ি ি ি ি ি ি ি? 1 ি ি ি ি ি ি ি</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt; ি&lt;/strong&gt;&lt;br/&gt;ি ি ি ি ি ি </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation> '</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;I):</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation> ি ি</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Anguaño:</translation>
@ -700,7 +700,7 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<translation>Dempués:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<translation>%1 va redimensionase a %2MB y va crease una partición de %3MB pa %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Esbilla una partición na qu'instalar&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Nun pudo alcontrase per nenyures una partición del sistema EFI. Volvi p'atrás y usa'l particionáu manual pa configurar %1, por favor.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partición del sistema EFI en %1 va usase p'aniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partición del sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esti preséu d'almacenamientu nun paez que tenga un sistema operativu nelli. ¿Qué te prestaría facer?&lt;br/&gt;Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Desaniciu d'un discu&lt;/strong&gt;&lt;br/&gt;Esto va &lt;font color="red"&gt;desaniciar&lt;/font&gt; tolos datos presentes nel preséu d'almacenamientu esbilláu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalación anexa&lt;/strong&gt;&lt;br/&gt;L'instalador va redimensionar una partición pa dexar sitiu a %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Troquéu d'una partición&lt;/strong&gt;&lt;br/&gt;Troca una parción con %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esti preséu d'almacenamientu tien %1 nelli. ¿Qué te prestaría facer?&lt;br/&gt;Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esti preséu d'almacenamientu yá tien un sistema operativu nelli. ¿Qué te prestaría facer?&lt;br/&gt;Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esti preséu d'almacenamientu tien varios sistemes operativos nelli. ¿Qué te prestaría facer?&lt;br/&gt;Vas ser a revisar y confirmar lo qu'escueyas enantes de que se faiga cualesquier cambéu nel preséu d'almacenamientu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Intercambéu (ensin ivernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Intercambéu (con ivernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Intercambéu nun ficheru</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particionáu manual&lt;/strong&gt;&lt;br/&gt;Vas poder crear o redimensionar particiones.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nun pudo executase'l comandu.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3218,17 +3218,17 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
<translation>I&amp;nstalar el xestor d'arrinque en:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>¿De xuru que quies crear una tabla de particiones nueva en %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Nun pue crease la partición nueva</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La tabla de particiones en %1 tien %2 particiones primaries y nun puen amestase más. Desanicia una partición primaria y amiesta otra estendida.</translation>
</message>

View File

@ -691,8 +691,8 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Cari:</translation>
@ -704,7 +704,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<translation>Sonra:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>%1 , ev bölməsi kimi %2 üçün təkrara istifadə edilsin</translation>
@ -721,127 +721,127 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<translation>%1 %2MB-a qədər azalacaq %4 üçün yeni bölmə %3MB disk bölməsi yaradılacaq.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Quraşdırılacaq disk bölməsini seçin&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI sistem bölməsi tapılmadı. Geriyə qayıdın %1 bölməsini əllə yaradın.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI sistemi %2 başlatmaq üçün istifadə olunacaqdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI sistem bölməsi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazıda əməliyyat sistemi görünmür. etmək istəyərdiniz?&lt;br/&gt;Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Diski təmizləmək&lt;/strong&gt;&lt;br/&gt; &lt;font color="red"&gt;Silmək&lt;/font&gt;seçimi hal-hazırda, seçilmiş diskdəki bütün verilənləri siləcəkdir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Yanına quraşdırın&lt;/strong&gt;&lt;br/&gt;Quraşdırıcı, bölməni kiçildərək %1 üçün boş disk sahəsi yaradacaqdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Bölməni başqası ilə əvəzləmək&lt;/strong&gt;&lt;br/&gt;Bölməni %1 ilə əvəzləyir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazda %1 var. etmək istəyirsiniz?&lt;br/&gt;Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazda artıq bir əməliyyat sistemi var. etmək istərdiniz?.&lt;br/&gt;Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazda bir neçə əməliyyat sistemi mövcuddur. etmək istərdiniz? Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Bu yaddaş qurğusunda artıq əməliyyat sistemi var, lakin, bölmə cədvəli &lt;strong&gt;%1&lt;/strong&gt;, lazım olan &lt;strong&gt;%2&lt;/strong&gt; ilə fərqlidir.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Bu yaddaş qurğusunda bölmələrdən biri &lt;strong&gt;quraşdırılmışdır&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Bu yaddaş qurğusu &lt;strong&gt;qeyri-aktiv RAİD&lt;/strong&gt; qurğusunun bir hissəsidir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Mübadilə bölməsi yoxdur</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Mübadilə bölməsini yenidən istifadə edin</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Mübadilə bölməsi (yuxu rejimi olmadan)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Mübadilə bölməsi (yuxu rejimi ilə)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Mübadilə faylı</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Əl ilə bölmək&lt;/strong&gt;&lt;br/&gt;Siz bölməni özünüz yarada ölçüsünü dəyişə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Önyükləmə yeri:</translation>
@ -910,12 +910,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Əmri ictra etmək mümkün olmadı.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Əmrlər müəyyən edilməmiş dəyişənlərdən istyifadə edir. Çatışmayan dəyişənlər bunlardır: %1.</translation>
</message>
@ -3226,17 +3226,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<translation>Ön yükləy&amp;icinin quraşdırılma yeri:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>%1- yeni bölmə yaratmaq istədiyinizə əminsiniz?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Yeni bölmə yaradıla bilmir</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 üzərindəki bölmə cədvəlində %2 birinci disk bölümü var artıq əlavə edilə bilməz.
Lütfən bir birinci disk bölümünü çıxarın əvəzinə genişləndirilmiş bölmə əlavə edin.</translation>

View File

@ -691,8 +691,8 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Cari:</translation>
@ -704,7 +704,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<translation>Sonra:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<translation>%1 %2MB-a qədər azalacaq %4 üçün yeni bölmə %3MB disk bölməsi yaradılacaq.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Quraşdırılacaq disk bölməsini seçin&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI sistem bölməsi tapılmadı. Geriyə qayıdın %1 bölməsini əllə yaradın.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI sistemi %2 başlatmaq üçün istifadə olunacaqdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI sistem bölməsi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazıda əməliyyat sistemi görünmür. etmək istəyərdiniz?&lt;br/&gt;Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Diski təmizləmək&lt;/strong&gt;&lt;br/&gt; &lt;font color="red"&gt;Silmək&lt;/font&gt;seçimi hal-hazırda, seçilmiş diskdəki bütün verilənləri siləcəkdir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Yanına quraşdırın&lt;/strong&gt;&lt;br/&gt;Quraşdırıcı, bölməni kiçildərək %1 üçün boş disk sahəsi yaradacaqdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Bölməni başqası ilə əvəzləmək&lt;/strong&gt;&lt;br/&gt;Bölməni %1 ilə əvəzləyir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazda %1 var. etmək istəyirsiniz?&lt;br/&gt;Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazda artıq bir əməliyyat sistemi var. etmək istərdiniz?.&lt;br/&gt;Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu cihazda bir neçə əməliyyat sistemi mövcuddur. etmək istərdiniz? Bu cihazda dəyişiklik etmədən öncə siz seçiminizi dəqiqləşdirə, dəyişə təsdiq edə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Bu yaddaş qurğusunda artıq əməliyyat sistemi var, lakin, bölmə cədvəli &lt;strong&gt;%1&lt;/strong&gt;, lazım olan &lt;strong&gt;%2&lt;/strong&gt; ilə fərqlidir.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Bu yaddaş qurğusunda bölmələrdən biri &lt;strong&gt;quraşdırılmışdır&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Bu yaddaş qurğusu &lt;strong&gt;qeyri-aktiv RAİD&lt;/strong&gt; qurğusunun bir hissəsidir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Mübadilə bölməsi (yuxu rejimi olmadan)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Mübadilə bölməsi (yuxu rejimi ilə)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Mübadilə faylı</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Əl ilə bölmək&lt;/strong&gt;&lt;br/&gt;Siz bölməni özünüz yarada ölçüsünü dəyişə bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Əmri ictra etmək mümkün olmadı.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Əmrlər müəyyən edilməmiş dəyişənlərdən istyifadə edir. Çatışmayan dəyişənlər bunlardır: %1.</translation>
</message>
@ -3226,17 +3226,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<translation>Ön yükləy&amp;icinin quraşdırılma yeri:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>%1- yeni bölmə yaratmaq istədiyinizə əminsiniz?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Yeni bölmə yaradıla bilmir</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 üzərindəki bölmə cədvəlində %2 birinci disk bölümü var artıq əlavə edilə bilməz.
Lütfən bir birinci disk bölümünü çıxarın əvəzinə genişləndirilmiş bölmə əlavə edin.</translation>

View File

@ -694,8 +694,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Зараз:</translation>
@ -707,7 +707,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Пасля:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -724,127 +724,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 будзе паменшаны да %2MiB і новы раздзел %3MiB будзе створаны для %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Абярыце раздзел для ўсталявання &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Не выяўлена сістэмнага раздзела EFI. Калі ласка, вярніцеся назад і зрабіце разметку %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Сістэмны раздзел EFI на %1 будзе выкарыстаны для запуску %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Сістэмны раздзел EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Здаецца, на гэтай прыладзе няма аперацыйнай сістэмы. Што будзеце рабіць?&lt;br/&gt;Вы зможаце змяніць альбо пацвердзіць свой выбар да таго, як на прыладзе ўжывуцца змены.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Сцерці дыск&lt;/strong&gt;&lt;br/&gt;Гэта &lt;font color="red"&gt;выдаліць&lt;/font&gt; усе даныя на абранай прыладзе.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Усталяваць побач&lt;/strong&gt;&lt;br/&gt;Праграма ўсталявання паменшыць раздзел, каб вызваліць месца для %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Замяніць раздзел &lt;/strong&gt;&lt;br/&gt;Заменіць раздзел на %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>На гэтай прыладзе ёсць %1. Што будзеце рабіць?&lt;br/&gt;Вы зможаце змяніць альбо пацвердзіць свой выбар да таго, як на прыладзе ўжывуцца змены.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>На гэтай прыладзе ўжо ёсць аперацыйная сістэма. Што будзеце рабіць?&lt;br/&gt;Вы зможаце змяніць альбо пацвердзіць свой выбар да таго, як на прыладзе ўжывуцца змены.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>На гэтай прыладзе ўжо ёсць некалькі аперацыйных сістэм. Што будзеце рабіць?&lt;br/&gt;Вы зможаце змяніць альбо пацвердзіць свой выбар да таго, як на прыладзе ўжывуцца змены.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>На гэтай прыладзе ўжо ўсталяваная аперацыйная сістэма, але табліца раздзелаў &lt;strong&gt;%1&lt;/strong&gt; не такая, як патрэбна &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Адзін з раздзелаў гэтай назапашвальнай прылады&lt;strong&gt;прымантаваны&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Гэтая назапашвальная прылада ёсць часткай&lt;strong&gt;неактыўнага RAID&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Раздзел падпампоўвання (без усыплення)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Раздзел падпампоўвання (з усыпленнем)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Раздзел падпампоўвання ў файле</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Уласнаручная разметка&lt;/strong&gt;&lt;br/&gt;Вы можаце самастойна ствараць раздзелы або змяняць іх памеры.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -913,12 +913,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Не ўдалося запусціць загад.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3247,17 +3247,17 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Усталяваць загрузчык на:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Не ўдалося стварыць новы раздзел</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Сегашен:</translation>
@ -704,7 +704,7 @@ The installer will quit and all changes will be lost.</source>
<translation>След:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ The installer will quit and all changes will be lost.</source>
<translation> %1 ще бъде намален до %2MiB и ще бъде създаден нов %3MiB дял за %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Изберете дял за инсталацията&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI системен дял не е намерен. Моля, опитайте пак като използвате ръчно поделяне за %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI системен дял в %1 ще бъде използван за стартиране на %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI системен дял:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Това устройство за съхранение няма инсталирана операционна система. Какво ще правите?&lt;br/&gt;Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Изтриване на диска&lt;/strong&gt;&lt;br/&gt;Това ще &lt;font color="red"&gt;изтрие&lt;/font&gt; всички данни върху устройството за съхранение.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Инсталирайте покрай&lt;/strong&gt;&lt;br/&gt;Инсталатора ще раздроби дяла за да направи място за %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Замени дял&lt;/strong&gt;&lt;br/&gt;Заменя този дял с %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Това устройство за съхранение има инсталиран %1. Какво ще правите?&lt;br/&gt;Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Това устройство за съхранение има инсталирана операционна система. Какво ще правите?&lt;br/&gt;Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Това устройство за съхранение има инсталирани операционни системи. Какво ще правите?&lt;br/&gt;Ще може да прегледате и потвърдите избора си, преди да се направят промени по устройството за съхранение.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Това устройство за съхранение вече има операционна система върху него, но таблицатас дялове &lt;strong&gt;%1 &lt;/strong&gt; е различна от необходимата &lt;strong&gt;%2 &lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Това устройство за съхранение има &lt;strong&gt; монтиран &lt;/strong&gt; дял.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Това устройство за съхранение е част от &lt;strong&gt; неактивно RAID &lt;/strong&gt; устройство.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (без Хибернация)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (с Хибернация)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap във файл</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Самостоятелно поделяне&lt;/strong&gt;&lt;br/&gt;Можете да създадете или преоразмерите дяловете сами.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Командата не може да се изпълни.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3226,17 +3226,17 @@ The installer will quit and all changes will be lost.</source>
<translation>И&amp; нсталиране на програма за начално зареждане на:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Не може да се създаде нов дял</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -686,8 +686,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -699,7 +699,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -716,127 +716,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; ি ি ি &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI ি ি %2 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI ি ি:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি ি ি ি ি ? &lt;br/&gt; ি ি ি িি </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;ি &lt;/strong&gt; &lt;br/&gt;ি িি ি ি &lt;font color="red"&gt; &lt;/font&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt; ি&lt;/strong&gt; &lt;br/&gt; %1 ি ি ি ি </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;ি ি ি &lt;/strong&gt;&lt;br/&gt;%1- ি ি ি </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি %1 ি ি ? &lt;br/&gt; ি ি ি িি </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি ি ি ি ি ি ? &lt;br/&gt; ি ি ি িি .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ি ি ি ি ি ি ? &lt;br/&gt; ি ি ি িি .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -905,12 +905,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3217,17 +3217,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Ara:</translation>
@ -704,7 +704,7 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>Després:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Reutilitza %1 com a partició de l'usuari per a %2.</translation>
@ -721,127 +721,127 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>%1 s'encongirà a %2 MiB i es crearà una partició nova de %3 MB per a %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Seleccioneu una partició per fer-hi la instal·lació.&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>No s'ha pogut trobar enlloc una partició EFI en aquest sistema. Si us plau, torneu enrere i use les particions manuals per configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation> La partició EFI de sistema a %1 s'usarà per iniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partició EFI de sistema:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge no sembla que tingui un sistema operatiu. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Esborra el disc&lt;/strong&gt;&lt;br/&gt;Això &lt;font color="red"&gt;suprimirà&lt;/font&gt; totes les dades del dispositiu seleccionat.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instal·la'l al costat&lt;/strong&gt;&lt;br/&gt;L'instal·lador reduirà una partició per fer espai per a %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Reemplaça una partició&lt;/strong&gt;&lt;br/&gt;Reemplaça una partició per %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge %1. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge ja un sistema operatiu. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge ja múltiples sistemes operatius. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faci cap canvi al dispositiu. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Aquest dispositiu d'emmagatzematge ja un sistema operatiu, però la taula de particions &lt;strong&gt;%1&lt;/strong&gt; és diferent de la necessària: &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Aquest dispositiu d'emmagatzematge una de les particions &lt;strong&gt;muntada&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Aquest sistema d'emmagatzematge forma part d'un dispositiu de &lt;strong&gt;RAID inactiu&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Sense intercanvi</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Reutilitza l'intercanvi</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Intercanvi (sense hibernació)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Intercanvi (amb hibernació)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Intercanvi en fitxer</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particions manuals&lt;/strong&gt;&lt;br/&gt;Podeu crear o canviar la mida de les particions vosaltres mateixos.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Ubicació del carregador d'arrencada:</translation>
@ -910,12 +910,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<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="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Les ordres usen variables que no estan definides. Les variables que falten són: %1.</translation>
</message>
@ -3226,17 +3226,17 @@ per desplaçar-s'hi i useu els botons +/- per fer ampliar-lo o reduir-lo, o bé
<translation>I&amp;nstal·la el gestor d'arrencada a:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<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="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La taula de particions de %1 ja %2 particions primàries i no se n'hi poden afegir més. Si us plau, suprimiu una partició primària i afegiu-hi una partició ampliada.</translation>
</message>

View File

@ -687,8 +687,8 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -700,7 +700,7 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>Després:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ L'instal·lador es tancarà i tots els canvis es perdran.</translation>
<translation>%1 es reduirà a %2 MiB i es crearà una partició nova de %3 MiB per a %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Seleccioneu una partició per a fer-hi la instal·lació.&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>No s'ha pogut trobar una partició EFI en cap lloc d'aquest sistema. Torneu arrere i useu les particions manuals per a configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partició EFI de sistema en %1 s'usarà per a iniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partició del sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Pareix que aquest dispositiu d'emmagatzematge no cap sistema operatiu. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faça cap canvi en el dispositiu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Esborra el disc&lt;/strong&gt;&lt;br/&gt;Això &lt;font color="red"&gt;suprimirà&lt;/font&gt; totes les dades del dispositiu seleccionat.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instal·la'l al costat&lt;/strong&gt;&lt;br/&gt;L'instal·lador reduirà una partició per a fer espai per a %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Reemplaça una partició&lt;/strong&gt;&lt;br/&gt;Reemplaça una partició per %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge %1. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faça cap canvi en el dispositiu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge ja un sistema operatiu. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faça cap canvi en el dispositiu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Aquest dispositiu d'emmagatzematge ja múltiples sistemes operatius. Què voleu fer?&lt;br/&gt;Podreu revisar i confirmar la tria abans que es faça cap canvi en el dispositiu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Aquest dispositiu d'emmagatzematge ja un sistema operatiu, però la taula de particions &lt;strong&gt;%1&lt;/strong&gt; és diferent de la necessària: &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Aquest dispositiu d'emmagatzematge una de les particions &lt;strong&gt;muntada&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Aquest dispositiu d'emmagatzematge forma part d'un dispositiu de &lt;strong&gt;RAID inactiu&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Intercanvi (sense hibernació)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Intercanvi (amb hibernació)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Intercanvi en fitxer</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particions manuals&lt;/strong&gt;&lt;br/&gt;Podeu crear particions o canviar-ne la mida pel vostre compte.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<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="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ per a desplaçar-s'hi i useu els botons +/- per a ampliar-lo o reduir-lo, o bé
<translation>I&amp;nstal·la el gestor d'arrancada en:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Segur que voleu crear una nova taula de particions en %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<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="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La taula de particions de %1 ja %2 particions primàries i no se n'hi poden afegir més. Suprimiu una partició primària i afegiu-hi una partició ampliada.</translation>
</message>

View File

@ -695,8 +695,8 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Stávající:</translation>
@ -708,7 +708,7 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>Potom:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -725,127 +725,127 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>%1 bude zmenšen na %2MiB a nový %3MiB oddíl pro %4 bude vytvořen.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Vyberte oddíl na který nainstalovat&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Nebyl nalezen žádný EFI systémový oddíl. Vraťte se zpět a nastavte %1 pomocí ručního rozdělení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Pro zavedení %2 se využije EFI systémový oddíl %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI systémový oddíl:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Zdá se, že na tomto úložném zařízení není žádný operační systém. Jak chcete postupovat?&lt;br/&gt;Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Vymazat datové úložiště&lt;/strong&gt;&lt;br/&gt;Touto volbou budou &lt;font color="red"&gt;smazána&lt;/font&gt; všechna data, která se na něm nyní nacházejí.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Nainstalovat vedle&lt;/strong&gt;&lt;br/&gt;Instalátor zmenší oddíl a vytvoří místo pro %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Nahradit oddíl&lt;/strong&gt;&lt;br/&gt;Původní oddíl bude nahrazen %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Na tomto úložném zařízení bylo nalezeno %1. Jak chcete postupovat?&lt;br/&gt;Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Na tomto úložném zařízení se nachází operační systém. Jak chcete postupovat?&lt;br/&gt;Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled a budete požádáni o jejich potvrzení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Na tomto úložném zařízení se nachází několik operačních systémů. Jak chcete postupovat?&lt;br/&gt;Než budou provedeny jakékoli změny na úložných zařízeních, bude zobrazen jejich přehled změn a budete požádáni o jejich potvrzení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Na tomto úložném zařízení se nachází operační systém, ale tabulka rozdělení &lt;strong&gt;%1&lt;/strong&gt; je jiná než potřebná &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Některé z oddílů tohoto úložného zařízení jsou &lt;strong&gt;připojené&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Toto úložné zařízení je součástí &lt;strong&gt;neaktivního RAID&lt;/strong&gt; zařízení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Odkládací prostor (bez uspávání na disk)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Odkládací prostor (s uspáváním na disk)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Odkládat do souboru</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Ruční rozdělení datového úložiště&lt;/strong&gt;&lt;br/&gt;Sami si můžete vytvořit vytvořit nebo zvětšit/zmenšit oddíly.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -914,12 +914,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nedaří se spustit příkaz.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3248,17 +3248,17 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
<translation>Zavaděč systému &amp;nainstalovat na:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Nedaří se vytvořit nový oddíl</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Tabulka oddílů na %1 obsahuje %2 hlavních oddílů a proto není možné přidat další. Odeberte jeden z hlavních oddílů a namísto něj vytvořte rozšířený oddíl.</translation>
</message>

View File

@ -687,8 +687,8 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Nuværende:</translation>
@ -700,7 +700,7 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>Efter:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>%1 vil blive skrumpet til %2 MiB og en ny %3 MiB partition vil blive oprettet for %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Vælg en partition at installere &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>En EFI-partition blev ikke fundet systemet. venligst tilbage og brug manuel partitionering til at opsætte %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI-systempartitionen ved %1 vil blive brugt til at starte %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI-systempartition:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Lagerenheden ser ikke ud til at indeholde et styresystem. Hvad ønsker du at gøre?&lt;br/&gt;Du vil mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Slet disk&lt;/strong&gt;&lt;br/&gt;Det vil &lt;font color="red"&gt;slette&lt;/font&gt; alt data på den valgte lagerenhed.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Installér ved siden af&lt;/strong&gt;&lt;br/&gt;Installationsprogrammet vil mindske en partition for at gøre plads til %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Erstat en partition&lt;/strong&gt;&lt;br/&gt;Erstatter en partition med %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Lagerenheden har %1 sig. Hvad ønsker du at gøre?&lt;br/&gt;Du vil mulighed for at se og bekræfte dine valg før det sker ændringer til lagerenheden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Lagerenheden indeholder allerede et styresystem. Hvad ønsker du at gøre?&lt;br/&gt;Du vil mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Lagerenheden indeholder flere styresystemer. Hvad ønsker du at gøre?&lt;br/&gt;Du vil mulighed for at se og bekræfte dine valg før der sker ændringer til lagerenheden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Lagerenheden har allerede et styresystem den men partitionstabellen &lt;strong&gt;%1&lt;/strong&gt; er ikke magen til den nødvendige &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Lagerenhden har en af sine partitioner &lt;strong&gt;monteret&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Lagringsenheden er en del af en &lt;strong&gt;inaktiv RAID&lt;/strong&gt;-enhed.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (ingen dvale)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (med dvale)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap til fil</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manuel partitionering&lt;/strong&gt;&lt;br/&gt;Du kan selv oprette og ændre størrelse partitioner.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Kunne ikke køre kommando.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
<translation>I&amp;nstallér bootloader :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Er du sikker , at du vil oprette en ny partitionstabel %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Kan ikke oprette ny partition</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Partitionstabellen %1 har allerede %2 primære partitioner, og der kan ikke tilføjes flere. Fjern venligst en primær partition og tilføj i stedet en udvidet partition.</translation>
</message>

View File

@ -691,8 +691,8 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Aktuell:</translation>
@ -704,7 +704,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>Nachher:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>%1 als Home-Partition für %2 wiederverwenden</translation>
@ -721,127 +721,127 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>%1 wird auf %2MiB verkleinert und eine neue Partition mit einer Größe von %3MiB wird für %4 erstellt werden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Wählen Sie eine Partition für die Installation&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Es wurde keine EFI-Systempartition auf diesem System gefunden. Bitte gehen Sie zurück und nutzen Sie die manuelle Partitionierung für das Einrichten von %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Die EFI-Systempartition %1 wird benutzt, um %2 zu starten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI-Systempartition:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Auf diesem Speichermedium scheint kein Betriebssystem installiert zu sein. Was möchten Sie tun?&lt;br/&gt;Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen auf diesem Speichermedium vorgenommen werden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Festplatte löschen&lt;/strong&gt;&lt;br/&gt;Dies wird alle vorhandenen Daten auf dem gewählten Speichermedium &lt;font color="red"&gt;löschen&lt;/font&gt;. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Parallel dazu installieren&lt;/strong&gt;&lt;br/&gt;Das Installationsprogramm wird eine Partition verkleinern, um Platz für %1 zu schaffen.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Ersetze eine Partition&lt;/strong&gt;&lt;br/&gt;Ersetzt eine Partition durch %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Auf diesem Speichermedium ist %1 installiert. Was möchten Sie tun?&lt;br/&gt;Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen werden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Dieses Speichermedium enthält bereits ein Betriebssystem. Was möchten Sie tun?&lt;br/&gt;Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen wird.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Auf diesem Speichermedium sind mehrere Betriebssysteme installiert. Was möchten Sie tun?&lt;br/&gt;Sie können Ihre Auswahl überprüfen und bestätigen, bevor Änderungen an dem Speichermedium vorgenommen werden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Auf diesem Speichergerät befindet sich bereits ein Betriebssystem, aber die Partitionstabelle &lt;strong&gt;%1&lt;/strong&gt; unterscheidet sich von den erforderlichen &lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Bei diesem Speichergerät ist eine seiner Partitionen &lt;strong&gt;eingehängt&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Dieses Speichergerät ist ein Teil eines &lt;strong&gt;inaktiven RAID&lt;/strong&gt;-Geräts.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Kein swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Wiederverwenden der swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (ohne Ruhezustand)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (mit Ruhezustand)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Auslagerungsdatei verwenden</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manuelle Partitionierung&lt;/strong&gt;&lt;br/&gt;Sie können Partitionen eigenhändig erstellen oder in der Grösse verändern.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Speicherort des Bootloaders</translation>
@ -910,12 +910,12 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Befehl konnte nicht ausgeführt werden.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Die Befehle verwenden Variablen, die nicht definiert sind. Fehlende Variablen sind: %1.</translation>
</message>
@ -3226,17 +3226,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<translation>I&amp;nstalliere Bootloader auf:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Neue Partition kann nicht erstellt werden</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Die Partitionstabelle auf %1 hat bereits %2 primäre Partitionen und weitere können nicht hinzugefügt werden. Bitte entfernen Sie eine primäre Partition und fügen Sie stattdessen eine erweiterte Partition hinzu.</translation>
</message>

View File

@ -686,8 +686,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Τρέχον:</translation>
@ -699,7 +699,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Μετά:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -716,127 +716,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Επιλέξτε διαμέρισμα για την εγκατάσταση&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Πουθενά στο σύστημα δεν μπορεί να ανιχθευθεί μία κατάτμηση EFI. Παρακαλώ επιστρέψτε πίσω και χρησιμοποιήστε τη χειροκίνητη τμηματοποίηση για την εγκατάσταση του %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Η κατάτμηση συστήματος EFI στο %1 θα χρησιμοποιηθεί για την εκκίνηση του %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Κατάτμηση συστήματος EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Η συσκευή αποθήκευσης δεν φαίνεται να διαθέτει κάποιο λειτουργικό σύστημα. Τί θα ήθελες να κάνεις;&lt;br/&gt;Θα έχεις την δυνατότητα να επιβεβαιώσεις και αναθεωρήσεις τις αλλαγές πριν γίνει οποιαδήποτε αλλαγή στην συσκευή αποθήκευσης.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Διαγραφή του δίσκου&lt;/strong&gt;&lt;br/&gt;Αυτό θα &lt;font color="red"&gt;διαγράψει&lt;/font&gt; όλα τα αρχεία στην επιλεγμένη συσκευή αποθήκευσης.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Εγκατάσταση σε επαλληλία&lt;/strong&gt;&lt;br/&gt;Η εγκατάσταση θα συρρικνώσει μία κατάτμηση για να κάνει χώρο για το %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Αντικατάσταση μίας κατάτμησης&lt;/strong&gt;&lt;br/&gt;Αντικαθιστά μία κατάτμηση με το %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Χειροκίνητη τμηματοποίηση&lt;/strong&gt;&lt;br/&gt;Μπορείτε να δημιουργήσετε κατατμήσεις ή να αλλάξετε το μέγεθός τους μόνοι σας.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -905,12 +905,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3217,17 +3217,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -686,8 +686,8 @@ The installer will quit and all changes will be lost.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Current:</translation>
@ -699,7 +699,7 @@ The installer will quit and all changes will be lost.</translation>
<translation>After:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -716,127 +716,127 @@ The installer will quit and all changes will be lost.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>The EFI system partition at %1 will be used for starting %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI system partition:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -905,12 +905,12 @@ The installer will quit and all changes will be lost.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Could not run command.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3217,17 +3217,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<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="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -690,8 +690,8 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Nune:</translation>
@ -703,7 +703,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<translation>Poste:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -720,127 +720,127 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -909,12 +909,12 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3221,17 +3221,17 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -693,8 +693,8 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Ahora:</translation>
@ -706,7 +706,7 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<translation>Después:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Reuse %1 como partición home para %2.</translation>
@ -723,127 +723,127 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<translation>%1 se reducirá a %2MiB y se creará una nueva partición de %3MiB para %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Elige una partición en la que realizar la instalación&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>No parece que haya ninguna partición del sistema EFI en el equipo. Puedes volver atrás y preparar %1 con la opción de particionado manual.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partición del sistema EFI en «%1» se va a usar para arrancar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partición del sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento no parece tener un sistema operativo dentro. ¿Qué quieres hacer?&lt;br/&gt;Podrás revisar y confirmar los cambios antes de que pase nada.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Borrar el disco&lt;/strong&gt;&lt;br/&gt;Esto &lt;font color="red"&gt;eliminará permanentemente&lt;/font&gt; todos los datos en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalar al lado&lt;/strong&gt;&lt;br/&gt;El instalador reducirá el tamaño de una partición y dejará el suficiente para instalar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Reemplazar una partición&lt;/strong&gt;&lt;br/&gt;Sustituye el espacio de una de las particiones ya existentes con %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>%1 se encuentra instalado en este dispositivo de almacenamiento. ¿Qué quieres hacer?&lt;br/&gt;Podrás revisar y confirmar tu elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Parece que este dispositivo de almacenamiento ya tiene un sistema operativo instalado. ¿Qué quieres hacer?&lt;br/&gt;Podrás revisar y confirmar tu elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento contiene múltiples sistemas operativos instalados en él. ¿Qué quieres hacer?&lt;br/&gt;Podrás revisar y confirmar tu elección antes de que cualquier cambio se haga efectivo en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Este dispositivo de almacenamiento ya tiene un sistema operativo, pero la tabla de particiones &lt;strong&gt;%1&lt;/strong&gt; es diferente de la que se necesita; &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Este dispositivo de almacenamiento tiene alguna de sus particiones &lt;strong&gt;ya montadas&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Este dispositivo de almacenamiento es parte de un &lt;strong&gt;dispositivo RAID&lt;/strong&gt; inactivo.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Sin swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Reutilizar swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Con «swap» (pero sin hibernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Con «swap» (y con hibernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap en archivo</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particionado manual&lt;/strong&gt;&lt;br/&gt; Puedes crear o cambiar el tamaño de las particiones a tu gusto.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Ubicación del cargador de arranque:</translation>
@ -912,12 +912,12 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>No se pudo ejecutar la orden.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Las órdenes utilizan variables sin definir. Las variables que faltan son: %1.</translation>
</message>
@ -3237,17 +3237,17 @@ El instalador se cerrará y todos tus cambios se perderán.</translation>
<translation>I&amp;nstalar gestor de arranque en:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>¿Estás seguro de que quieres crear una nueva tabla de particiones en %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>No se pudo crear una partición nueva</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La tabla de particiones en %1 ya tiene %2 particiones primarias, y no se puede añadir ninguna más. Quita una partición primaria y sustitúyela por una extendida para poder añadir particiones lógicas en su interior.</translation>
</message>

View File

@ -693,8 +693,8 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -706,7 +706,7 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<translation>Después:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Reuse %1 como partición HOME para %2.</translation>
@ -723,127 +723,127 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<translation>%1 será reducido a %2MiB y una nueva %3MiB partición se creará para %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Seleccione una partición para instalar&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>No se puede encontrar una partición del sistema EFI en ninguna parte de este sistema. Regrese y use la partición manual para configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partición del sistema EFI en %1 se utilizará para iniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partición de sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento no parece tener un sistema operativo. ¿Qué le gustaría hacer?&lt;br/&gt; Podrá revisar y confirmar sus opciones antes de realizar cualquier cambio en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Borrar todo el disco&lt;/strong&gt;&lt;br/&gt; Ésto &lt;font color="red"&gt;eliminará&lt;/font&gt; todos los datos actualmente presentes en el dispositivo de almacenamiento seleccionado.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalar junto a otra partición&lt;/strong&gt;&lt;br/&gt;El instalador reducirá una partición para dejar espacio para %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Reemplazar una partición&lt;/strong&gt;&lt;br/&gt;Reemplaza una partición con %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Éste dispositivo de almacenamiento tiene %1. ¿Qué le gustaría hacer?&lt;br/&gt; Podrá revisar y confirmar sus opciones antes de realizar cualquier cambio en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Éste dispositivo de almacenamiento ya tiene un sistema operativo en él ¿Qué le gustaría hacer?&lt;br/&gt; Podrá revisar y confirmar sus opciones antes de realizar cualquier cambio en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Éste dispositivo de almacenamiento tiene múltiples sistemas operativos. ¿Qué le gustaría hacer? &lt;br/&gt;Podrá revisar y confirmar sus opciones antes de realizar cualquier cambio en el dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Éste dispositivo de almacenamiento ya tiene un sistema operativo, pero la tabla de particiones &lt;strong&gt;%1&lt;/strong&gt; es diferente de la que se necesita; &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Éste dispositivo de almacenamiento tiene &lt;strong&gt;montada&lt;/strong&gt; una de sus particiones.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Este dispositivo de almacenamiento forma parte de un dispositivo &lt;strong&gt;RAID inactivo&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Sin SWAP</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Reutilizar SWAP</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>SWAP (sin hibernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>SWAP (con hibernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>SWAP en el archivo</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Partición manual&lt;/strong&gt;&lt;br/&gt; Puede crear o cambiar el tamaño de las particiones usted mismo.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Ubicación del cargador de arranque:</translation>
@ -912,12 +912,12 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>No se pudo ejecutar el comando.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>The commands use variables that are not defined. Missing variables are: %1.</translation>
</message>
@ -3237,17 +3237,17 @@ El instalador se cerrará y se perderán todos los cambios.</translation>
<translation>I&amp;nstalar gestor de arranque en:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>¿Estás seguro de que quieres crear una nueva tabla de particiones en %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>No se puede crear una nueva partición</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La tabla de particiones en %1 ya tiene %2 particiones primarias y no se pueden agregar más. Elimine una partición primaria y agregue una partición extendida en su lugar.</translation>
</message>

View File

@ -689,8 +689,8 @@ El instalador terminará y se perderán todos los cambios.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -702,7 +702,7 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>Después:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -719,128 +719,128 @@ El instalador terminará y se perderán todos los cambios.</translation>
<translation>%1 será reducido a %2MiB y una nueva %3MiB partición se creará para %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation> &lt;strong&gt;Seleccione una partición para instalar&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>No se puede encontrar en el sistema una partición EFI. Por favor vuelva atrás y use el particionamiento manual para configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partición EFI en %1 será usada para iniciar %2.
</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partición de sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento parece no tener un sistema operativo en el. ¿que le gustaría hacer?&lt;br/&gt; Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Borrar disco&lt;/strong&gt; &lt;br/&gt;Esto &lt;font color="red"&gt;borrará&lt;/font&gt; todos los datos presentes actualmente en el dispositivo de almacenamiento seleccionado.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalar junto a&lt;/strong&gt; &lt;br/&gt;El instalador reducirá una partición con el fin de hacer espacio para %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Reemplazar una partición&lt;/strong&gt; &lt;br/&gt;Reemplaza una partición con %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento tiene %1 en el. ¿Que le gustaría hacer? &lt;br/&gt;Usted podrá revisar y confirmar sus elecciones antes de que cualquier cambio se realice al dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento ya tiene un sistema operativo en el. ¿Que le gustaría hacer?&lt;br/&gt; Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de almacenamiento tiene múltiples sistemas operativos en el. ¿Que le gustaria hacer?&lt;br/&gt; Usted podrá revisar y confirmar sus elecciones antes que cualquier cambio se realice al dispositivo de almacenamiento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (sin hibernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (con hibernación)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap a archivo</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particionado manual &lt;/strong&gt;&lt;br/&gt; Puede crear o cambiar el tamaño de las particiones usted mismo.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -909,12 +909,12 @@ El instalador terminará y se perderán todos los cambios.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>No puede ejecutarse el comando.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3230,17 +3230,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>No se puede crear nueva partición</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La tabla de partición en %1 ya tiene %2 particiones primarias, y no pueden agregarse mas. Favor remover una partición primaria y en cambio, agregue una partición extendida.</translation>
</message>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3227,17 +3227,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -686,8 +686,8 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Hetkel:</translation>
@ -699,7 +699,7 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<translation>Pärast:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -716,127 +716,127 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Vali partitsioon, kuhu paigaldada&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI süsteemipartitsiooni ei leitud sellest süsteemist. Palun mine tagasi ja kasuta käsitsi partitsioonimist, et seadistada %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI süsteemipartitsioon asukohas %1 kasutatakse %2 käivitamiseks.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI süsteemipartitsioon:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Sellel mäluseadmel ei paista olevat operatsioonisüsteemi peal. Mida soovid teha?&lt;br/&gt;Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Tühjenda ketas&lt;/strong&gt;&lt;br/&gt;See &lt;font color="red"&gt;kustutab&lt;/font&gt; kõik valitud mäluseadmel olevad andmed.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Paigalda kõrvale&lt;/strong&gt;&lt;br/&gt;Paigaldaja vähendab partitsiooni, et teha ruumi operatsioonisüsteemile %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Asenda partitsioon&lt;/strong&gt;&lt;br/&gt;Asendab partitsiooni operatsioonisüsteemiga %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Sellel mäluseadmel on peal %1. Mida soovid teha?&lt;br/&gt;Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Sellel mäluseadmel on juba operatsioonisüsteem peal. Mida soovid teha?&lt;br/&gt;Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Sellel mäluseadmel on mitu operatsioonisüsteemi peal. Mida soovid teha?&lt;br/&gt;Sa saad oma valikud üle vaadata ja kinnitada enne kui mistahes muudatus saab mäluseadmele teostatud.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Käsitsi partitsioneerimine&lt;/strong&gt;&lt;br/&gt;Sa võid ise partitsioone luua või nende suurust muuta. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -905,12 +905,12 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Käsku ei saanud käivitada.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3217,17 +3217,17 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
<translation>Paigalda käivituslaadur kohta:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Kas soovid kindlasti luua uut partitsioonitabelit kettale %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Uut partitsiooni ei saa luua</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Partitsioonitabel kohas %1 juba omab %2 peamist partitsiooni ning rohkem juurde ei saa lisada. Palun eemalda selle asemel üks peamine partitsioon ja lisa juurde laiendatud partitsioon. </translation>
</message>

View File

@ -686,8 +686,8 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Unekoa: </translation>
@ -699,7 +699,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<translation>Ondoren:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -716,127 +716,127 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;aukeratu partizioa instalatzeko&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Ezin da inon aurkitu EFI sistemako partiziorik sistema honetan. Mesedez joan atzera eta erabili eskuz partizioak lantzea %1 ezartzeko.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1eko EFI partizio sistema erabiliko da abiarazteko %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI sistema-partizioa:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Biltegiratze-gailuak badirudi ez duela sistema eragilerik. Zer egin nahiko zenuke? &lt;br/&gt;Zure aukerak berrikusteko eta berresteko aukera izango duzu aldaketak gauzatu aurretik biltegiratze-gailuan</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Diskoa ezabatu&lt;/strong&gt;&lt;br/&gt;Honek orain dauden datu guztiak &lt;font color="red"&gt;ezabatuko&lt;/font&gt; ditu biltegiratze-gailutik.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalatu alboan&lt;/strong&gt;&lt;br/&gt;Instalatzaileak partizioa txikituko du lekua egiteko %1-(r)i.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Ordeztu partizioa&lt;/strong&gt;&lt;br/&gt;ordezkatu partizioa %1-(e)kin.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Biltegiratze-gailuak %1 dauka. Zer egin nahiko zenuke? &lt;br/&gt;Zure aukerak berrikusteko eta berresteko aukera izango duzu aldaketak gauzatu aurretik biltegiratze-gailuan</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Biltegiragailu honetan badaude jadanik eragile sistema bat. Zer gustatuko litzaizuke egin?&lt;br/&gt;Biltegiragailuan aldaketarik egin baino lehen zure aukerak aztertu eta konfirmatu ahal izango duzu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Biltegiragailu honetan badaude jadanik eragile sistema batzuk. Zer gustatuko litzaizuke egin?&lt;br/&gt;Biltegiragailuan aldaketarik egin baino lehen zure aukerak aztertu eta konfirmatu ahal izango duzu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Eskuz partizioak landu&lt;/strong&gt;&lt;br/&gt;Zure kasa sortu edo tamainaz alda dezakezu partizioak.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -905,12 +905,12 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Ezin izan da komandoa exekutatu.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3217,17 +3217,17 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
<translation>Abio kargatzailea I&amp;nstalatu bertan:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Ziur al zaude partizio-taula berri bat %1-(e)an sortu nahi duzula?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Ezin da partizio berririk sortu</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>فعلی:</translation>
@ -704,7 +704,7 @@ The installer will quit and all changes will be lost.</source>
<translation>بعد از:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 تغییر سایز خواهد داد به %2 مبیبایت و یک پارتیشن %3 مبیبایتی برای %4 ساخته خواهد شد.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;یک پارتیشن را برای نصب بر روی آن، انتخاب کنید&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>پارتیشن سیستم ای.اف.آی نمیتواند در هیچ جایی از این سیستم یافت شود. لطفا برگردید و از پارتیشن بندی دستی استفاده کنید تا %1 را راهاندازی کنید.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>پارتیشن سیستم ای.اف.آی در %1 برای شروع %2 استفاده خواهد شد.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>پارتیشن سیستم ای.اف.آی</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>به نظر میرسد در دستگاه ذخیرهسازی هیچ سیستمعاملی وجود ندارد. تمایل به انجام چه کاری دارید؟&lt;br/&gt;شما میتوانید انتخابهایتان را قبل از اعمال هر تغییری در دستگاه ذخیرهسازی، مرور و تأیید نمایید.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;پاک کردن دیسک&lt;/strong&gt;&lt;br/&gt;این کار تمام دادههای موجود بر روی دستگاه ذخیرهسازی انتخاب شده را &lt;font color="red"&gt;حذف میکند&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;نصب در امتداد&lt;/strong&gt;&lt;br/&gt;این نصاب از یک پارتیشن برای ساخت یک اتاق برای %1 استفاده میکند.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;جایگزینی یک افراز&lt;/strong&gt;&lt;br/&gt;افرازی را با %1 جایگزین میکند.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>این دستگاه ذخیره سازی٪ 1 روی خود دارد. دوست دارید چه کاری انجام دهید؟ قبل از اینکه تغییری در دستگاه ذخیره ایجاد شود ، می توانید انتخاب های خود را بررسی و تأیید کنید.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>این دستگاه ذخیره سازی از قبل یک سیستم عامل روی خود دارد. دوست دارید چه کاری انجام دهید؟ قبل از اینکه تغییری در دستگاه ذخیره ایجاد شود ، می توانید انتخاب های خود را بررسی و تأیید کنید.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>این دستگاه ذخیره سازی دارای چندین سیستم عامل است. دوست دارید چه کاری انجام دهید؟ قبل از اینکه تغییری در دستگاه ذخیره ایجاد شود ، می توانید انتخاب های خود را بررسی و تأیید کنید.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>این دستگاه حافظه هم اکنون یک سیستم عامل روی خود دارد، اما جدول افراز &lt;strong&gt;%1&lt;/strong&gt; با نیاز &lt;strong&gt;%2&lt;/strong&gt; متفاوت است.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>این دستگاه حافظه دارای یک افرازی بوده که هم اکنون &lt;strong&gt;سوارشده&lt;/strong&gt; است.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>یکی از بخش های این دستگاه حافظه عضوی از دستگاه &lt;strong&gt;RAID غیرفعال&lt;/strong&gt; است. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>مبادله (بدون خوابزمستانی)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>مبادله (با خوابزمستانی)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>مبادله به پرونده</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>شما می توانید پارتیشن بندی دستی ایجاد یا تغییر اندازه دهید .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>نمیتوان دستور را اجرا کرد.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;نصب بارکنندهٔ راهاندازی روی:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>نمیتوان افراز جدید ساخت</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -54,12 +54,12 @@
<message>
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="70"/>
<source>This system was started with an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from an EFI environment, this installer must deploy a boot loader application, like &lt;strong&gt;GRUB&lt;/strong&gt; or &lt;strong&gt;systemd-boot&lt;/strong&gt; on an &lt;strong&gt;EFI System Partition&lt;/strong&gt;. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own.</source>
<translation>Tämä tietokone käynnistettiin &lt;strong&gt;EFI&lt;/strong&gt; ympäristössä.&lt;br&gt;&lt;br&gt;Jos haluat määrittää EFI:n niin asennusohjelman on asennettava käynnistyslataaja, kuten &lt;strong&gt;GRUB&lt;/strong&gt; tai &lt;strong&gt;systemd-boot&lt;/strong&gt;, &lt;strong&gt;EFI-osio&lt;/strong&gt; . Tämä on automaattista, ellet valitse manuaalista osiointia, jolloin sinun on tehtävä valinnat itse.</translation>
<translation>Tämä tietokone käynnistettiin &lt;strong&gt;EFI&lt;/strong&gt; ympäristössä.&lt;br&gt;&lt;br&gt;Jos haluat määrittää EFI:llä niin asennusohjelman on tehtävä käynnistyslataaja, &lt;strong&gt;GRUB&lt;/strong&gt; tai &lt;strong&gt;systemd-boot&lt;/strong&gt;, &lt;strong&gt;EFI-osio&lt;/strong&gt; . Tämä tapahtuu automaattisesti, ellet valitse manuaalista osiointia, jolloin sinun on tehtävä valinnat itse.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="82"/>
<source>This system was started with a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from a BIOS environment, this installer must install a boot loader, like &lt;strong&gt;GRUB&lt;/strong&gt;, either at the beginning of a partition or on the &lt;strong&gt;Master Boot Record&lt;/strong&gt; near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own.</source>
<translation>Tämä tietokone käynnistettiin &lt;strong&gt;BIOS&lt;/strong&gt; ympäristössä.&lt;br&gt;&lt;br&gt;Jos haluat määrittää käynnistyksen BIOS:lla niin asennusohjelman on asennettava käynnistyslaataaja, kuten&lt;strong&gt;GRUB&lt;/strong&gt;, osion alkuun tai &lt;strong&gt;Master Boot Record&lt;/strong&gt; osiotaulun alukuun (suositus). Tämä on automaattista, ellet valitse manuaalista osiointia, jolloin sinun on tehtävä valinnat itse.</translation>
<translation>Tämä tietokone käynnistettiin &lt;strong&gt;BIOS&lt;/strong&gt; ympäristössä.&lt;br&gt;&lt;br&gt;Jos haluat määrittää käynnistymään BIOS:lla niin asennusohjelman on tehtävä käynnistyslaataaja, GRUB&lt;/strong&gt;, osion alkuun tai &lt;strong&gt;Master Boot Record&lt;/strong&gt; (suositus). Tämä tapahtuu automaattisesti, ellet valitse manuaalista osiointia, jolloin sinun on tehtävä valinnat itse.</translation>
</message>
</context>
<context>
@ -467,7 +467,7 @@ Linkki kopioitu leikepöydälle</translation>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="189"/>
<source>%1 can not be installed. Calamares was unable to load all of the configured modules. This is a problem with the way Calamares is being used by the distribution.</source>
<comment>@info</comment>
<translation>%1 ei voi asentaa. Calamares ei voinut ladata kaikkia määritettyjä moduuleja. Ongelma on siinä, miten jakelu käyttää Calamaresia.</translation>
<translation>Ei voitu asentaa %1. Calamares ei saanut ladattua kaikkia määritettyjä moduuleja. Ongelmana on, miten jakelu käyttää Calamaresia.</translation>
</message>
<message>
<location filename="../src/libcalamaresui/ViewManager.cpp" line="196"/>
@ -691,8 +691,8 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Nyt:</translation>
@ -704,7 +704,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation>Jälkeen:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Käytä uudelleen %1 kotiosiona %2</translation>
@ -721,127 +721,127 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<translation>%1 supistetaan %2Mib:iin ja uusi %3MiB-osio luodaan kohteelle %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Valitse asennettava osio&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI-järjestelmäosiota ei löydy tästä järjestelmästä. Siirry takaisin ja käytä manuaalista osiointia, kun haluat määrittää %1</translation>
<translation>Tästä järjestelmästä ei löydy osiota EFI. Palaa takaisin ja käytä manuaalista osiointia määrittääksesi %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI-järjestelmäosiota %1 käytetään %2 käynnistämiseen.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI-järjestelmäosio:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Tällä kiintolevyllä ei näytä olevan käyttöjärjestelmää. Mitä haluat tehdä?&lt;br/&gt;Voit tarkistaa valintasi ennen kuin kiintolevylle tehdään muutoksia.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Tyhjennä kiintolevy&lt;/strong&gt;&lt;br/&gt;Tämä &lt;font color="red"&gt;poistaa&lt;/font&gt; kaikki tiedot valitusta kiintolevystä.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Asenna nykyisen rinnalle&lt;/strong&gt;&lt;br/&gt;Asennusohjelma supistaa osiota tehdäkseen tilaa kohteelle %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Korvaa osio&lt;/strong&gt;&lt;br/&gt;Korvaa osion %1:llä. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kiintolevyllä on %1 dataa. Mitä haluat tehdä?&lt;br/&gt;Voit tarkistaa valintasi ennen kuin kiintolevylle tehdään muutoksia.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Tämä kiintolevy sisältää jo käyttöjärjestelmän. Mitä haluaisit tehdä?&lt;br/&gt;Voit tarkistaa valintasi, ennen kuin kiintolevylle tehdään muutoksia.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kiintolevy sisältää jo useita käyttöjärjestelmiä. Mitä haluaisit tehdä?&lt;br/&gt;Voit tarkistaa valintasi, ennen kuin kiintolevylle tehdään muutoksia.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Kiintolevyllä on jo käyttöjärjestelmä, mutta osiotaulu &lt;strong&gt;%1&lt;/strong&gt; on erilainen kuin tarvitaan &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Tähän kiintolevyyn on kiinnitys, &lt;strong&gt;liitetty&lt;/strong&gt; yksi osioista.</translation>
<translation>Tähän kiintolevyyn on kiinnitys, &lt;strong&gt;kytketty&lt;/strong&gt; yksi osioista.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Tämä kiintolevy on osa &lt;strong&gt;passiivista RAID&lt;/strong&gt; kokoonpanoa.</translation>
<translation>Tämä kiintolevy on osa passiivista &lt;strong&gt;RAID&lt;/strong&gt; levypakkaa.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Ei swappia</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Käytä swap uudellen</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (ei lepotilaa)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (lepotilan kanssa)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap tiedostona</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manuaalinen osiointi &lt;/strong&gt;&lt;br/&gt;Voit luoda tai muuttaa osioita itse.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Käynnistyslataajan sijainti:</translation>
@ -910,12 +910,12 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Komentoa ei voi suorittaa.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Komennot käyttää muuttujia, joita ei ole määritelty. Puuttuvat muuttujat ovat: %1.</translation>
</message>
@ -1064,7 +1064,7 @@ Asennusohjelma sulkeutuu ja kaikki muutoksesi katoavat.</translation>
<message>
<location filename="../src/modules/summary/Config.cpp" line="39"/>
<source>This is an overview of what will happen once you start the setup procedure.</source>
<translation>Tämä on yleiskuva siitä, mitä tapahtuu, kun asennusohjelma käynnistetään.</translation>
<translation>Tämä on yleiskatsaus siitä, mitä tapahtuu, kun aloitat asennuksen.</translation>
</message>
<message>
<location filename="../src/modules/summary/Config.cpp" line="44"/>
@ -1147,7 +1147,7 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<message>
<location filename="../src/modules/welcome/Config.cpp" line="80"/>
<source>This program will ask you some questions and set up %2 on your computer.</source>
<translation>Tämä ohjelma kysyy joitakin kysymyksiä liittyen %2 ja asentaa sen tietokoneelle.</translation>
<translation>Tämä ohjelma kysyy joitakin %2 liittyviä kysymyksiä ja asentaa sen sitten tietokoneelle.</translation>
</message>
<message>
<location filename="../src/modules/welcome/Config.cpp" line="264"/>
@ -3229,17 +3229,17 @@ Asennus voi jatkua, mutta jotkin toiminnot saattavat olla pois käytöstä.</tra
<translation>A&amp;senna käynnistyslatain:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Haluatko varmasti luoda uuden osiotaulun levylle %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Ei voi luoda uutta osiota</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 osiotaulussa on jo %2 ensisijaista osiota, eikä lisää voi lisätä. Poista yksi ensisijainen osio ja lisää laajennettu osio.</translation>
</message>
@ -5259,8 +5259,8 @@ Pystyvierityspalkki on säädettävissä, leveys on nyt asetettu arvoon 10.</tra
<location filename="../src/modules/welcomeq/welcomeq.qml" line="38"/>
<source>&lt;h3&gt;Welcome to the %1 &lt;quote&gt;%2&lt;/quote&gt; installer&lt;/h3&gt;
&lt;p&gt;This program will ask you some questions and set up %1 on your computer.&lt;/p&gt;</source>
<translation>&lt;h3&gt;Tervetuloa %1 &lt;quote&gt;%2&lt;/quote&gt; -asentajaan&lt;/h3&gt;
&lt;p&gt;Tämä ohjelma esittää sinulle joitain kysymyksiä liittyen %1 ja asentaa sen tietokoneelle.&lt;/p&gt;</translation>
<translation>&lt;h3&gt;Tervetuloa %1 &lt;quote&gt;%2&lt;/quote&gt; asentajaan&lt;/h3&gt;
&lt;p&gt;Tämä ohjelma kysyy joitakin %1 liittyviä kysymyksiä ja asentaa sen sitten tietokoneelle.&lt;/p&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcomeq/welcomeq.qml" line="69"/>
@ -5289,8 +5289,8 @@ Pystyvierityspalkki on säädettävissä, leveys on nyt asetettu arvoon 10.</tra
<location filename="../src/modules/welcomeq/welcomeq-qt6.qml" line="38"/>
<source>&lt;h3&gt;Welcome to the %1 &lt;quote&gt;%2&lt;/quote&gt; installer&lt;/h3&gt;
&lt;p&gt;This program will ask you some questions and set up %1 on your computer.&lt;/p&gt;</source>
<translation>&lt;h3&gt;Tervetuloa %1 &lt;quote&gt;%2&lt;/quote&gt; -asentajaan&lt;/h3&gt;
&lt;p&gt;Tämä ohjelma esittää sinulle joitain kysymyksiä liittyen %1 ja asentaa sen tietokoneelle.&lt;/p&gt;</translation>
<translation>&lt;h3&gt;Tervetuloa %1 &lt;quote&gt;%2&lt;/quote&gt; asentajaan&lt;/h3&gt;
&lt;p&gt;Tämä ohjelma kysyy joitakin %1 liittyviä kysymyksiä ja asentaa sen sitten tietokoneelle.&lt;/p&gt;</translation>
</message>
<message>
<location filename="../src/modules/welcomeq/welcomeq-qt6.qml" line="69"/>

View File

@ -693,8 +693,8 @@ L'installateur se fermera et les changements seront perdus.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actuel :</translation>
@ -706,7 +706,7 @@ L'installateur se fermera et les changements seront perdus.</translation>
<translation>Après :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Réutiliser %1 comme partition home pour %2</translation>
@ -723,127 +723,127 @@ L'installateur se fermera et les changements seront perdus.</translation>
<translation>%1 va être réduit à %2 Mio et une nouvelle partition de %3 Mio va être créée pour %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Sélectionner une partition pour l'installation&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Une partition système EFI n'a pas pu être trouvée sur ce système. Veuillez retourner à l'étape précédente et sélectionner le partitionnement manuel pour configurer %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partition système EFI sur %1 va être utilisée pour démarrer %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partition système EFI :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ce périphérique de stockage ne semble pas contenir de système d'exploitation. Que souhaitez-vous faire ?&lt;br/&gt;Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Effacer le disque&lt;/strong&gt;&lt;br/&gt;Ceci va &lt;font color="red"&gt;effacer&lt;/font&gt; toutes les données actuellement présentes sur le périphérique de stockage sélectionné.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Installer à côté&lt;/strong&gt;&lt;br/&gt;L'installateur va réduire une partition pour faire de la place pour %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Remplacer une partition&lt;/strong&gt;&lt;br&gt;Remplace une partition par %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ce périphérique de stockage contient %1. Que souhaitez-vous faire ?&lt;br/&gt;Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ce périphérique de stockage contient déjà un système d'exploitation. Que souhaitez-vous faire ?&lt;br/&gt;Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ce périphérique de stockage contient déjà plusieurs systèmes d'exploitation. Que souhaitez-vous faire ?&lt;br/&gt;Vous pourrez relire et confirmer vos choix avant que les modifications soient effectuées sur le périphérique de stockage.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Le périphérique de stockage contient déjà un système d'exploitation, mais la table de partition &lt;strong&gt;%1&lt;/strong&gt; est différente de celle nécessaire &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Une des partitions de ce périphérique de stockage est &lt;strong&gt;montée&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Ce périphérique de stockage fait partie d'une grappe &lt;strong&gt;RAID inactive&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Aucun Swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Réutiliser le Swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (sans hibernation)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (avec hibernation)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap dans un fichier</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Partitionnement manuel&lt;/strong&gt;&lt;br/&gt;Vous pouvez créer ou redimensionner vous-même des partitions.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Emplacement du chargeur de démarrage :</translation>
@ -912,12 +912,12 @@ L'installateur se fermera et les changements seront perdus.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<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="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Les commandes utilisent des variables qui ne sont pas définies. Variables manquantes : %1.</translation>
</message>
@ -3237,17 +3237,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Impossible de créer une nouvelle partition</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La table de partition sur %1 contient déjà %2 partitions primaires, et aucune supplémentaire ne peut être ajoutée. Veuillez supprimer une partition primaire et créer une partition étendue à la place.</translation>
</message>

View File

@ -691,8 +691,8 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Atuâl:</translation>
@ -704,7 +704,7 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<translation>Dopo:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Tornâ a doprâ %1 come partizion home par %2</translation>
@ -721,127 +721,127 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<translation>%1 e vignarà scurtade a %2MiB e une gnove partizion di %3MiB e vignarà creade par %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Selezione une partizion dulà a instalâ&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Impussibil cjatâ une partizion di sisteme EFI. Par plasê torne indaûr e dopre un partizionament manuâl par configurâ %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>La partizion di sisteme EFI su %1 e vignarà doprade par inviâ %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partizion di sisteme EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Al somee che chest dispositîf di memorie nol vedi parsore un sisteme operatîf. Ce desideristu ?&lt;br/&gt;Tu podarâs tornâ a viodi e confermâ lis tôs sieltis prime di aplicâ cualsisei modifiche al dispositîf di memorie.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Scancelâ il disc&lt;/strong&gt;&lt;br/&gt;Chest al &lt;font color="red"&gt;eliminarà&lt;/font&gt; ducj i dâts presints sul dispositîf di memorie selezionât.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalâ in bande&lt;/strong&gt;&lt;br/&gt;Il program di instalazion al scurtarà une partizion par spazi a %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Sostituî une partizion&lt;/strong&gt;&lt;br/&gt;Al sostituìs une partizion cun %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Chest dispositîf di memorie al à parsore %1. Ce desideristu ? &lt;br/&gt;Tu podarâs tornâ a viodi e confermâ lis tôs sieltis prime di aplicâ cualsisei modifiche al dispositîf di memorie.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Chest dispositîf di memorie al à za parsore un sisteme operatîf. Ce desideristu ?&lt;br/&gt;Tu podarâs tornâ a viodi e confermâ lis tôs sieltis prime di aplicâ cualsisei modifiche al dispositîf di memorie.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Chest dispositîf di memorie al à parsore plui sistemis operatîfs. Ce desideristu ?&lt;br/&gt;Tu podarâs tornâ a viodi e confermâ lis tôs sieltis prime di aplicâ cualsisei modifiche al dispositîf di memorie.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Chest dispositîf di memorie al à za un sisteme operatîf parsore, ma la tabele des partizions &lt;strong&gt;%1&lt;/strong&gt; e je diferente di chê che a covente: &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Une des partizions dal dispositîf di memorie e je &lt;strong&gt;montade&lt;/strong&gt;. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Chest dispositîf di memorie al fâs part di un dispositîf &lt;strong&gt;RAID inatîf&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Cence swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Tornâ a doprâ il swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (cence ibernazion)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (cun ibernazion)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap su file</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Partizionament manuâl&lt;/strong&gt;&lt;br/&gt;Tu puedis creâ o ridimensionâ lis partizions di bessôl.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Posizion dal Bootloader:</translation>
@ -910,12 +910,12 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Impussibil eseguî il comant.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>I comants a doprin variabilis che no son definidis. Lis variabilis che a mancjin a son: %1.</translation>
</message>
@ -3226,17 +3226,17 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
<translation>I&amp;nstale gjestôr di inviament su:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Creâ pardabon une gnove tabele des partizions su %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Impussibil creâ une gnove partizion</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>La tabele des partizions su %1 e à za %2 partizions primaris e no si pues zontâ altris. Gjave une partizion primarie e zonte une partizion estese al so puest.</translation>
</message>
@ -3820,19 +3820,19 @@ Output:
<location filename="../src/modules/partition/jobs/ResizeVolumeGroupJob.cpp" line="28"/>
<source>Resize volume group named %1 from %2 to %3</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>Ridimensionâ il grup di volums clamât %1 di %2 a %3</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ResizeVolumeGroupJob.cpp" line="37"/>
<source>Resize volume group named &lt;strong&gt;%1&lt;/strong&gt; from &lt;strong&gt;%2&lt;/strong&gt; to &lt;strong&gt;%3&lt;/strong&gt;</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>Ridimensionâ il grup di volums clamât &lt;strong&gt;%1&lt;/strong&gt; di &lt;strong&gt;%2&lt;/strong&gt; a &lt;strong&gt;%3&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ResizeVolumeGroupJob.cpp" line="47"/>
<source>Resizing volume group named %1 from %2 to %3</source>
<comment>@status</comment>
<translation type="unfinished"/>
<translation>Daûr a ridimensionâ il grup di volums clamât %1 di %2 a %3</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ResizeVolumeGroupJob.cpp" line="58"/>
@ -3854,13 +3854,13 @@ Output:
<location filename="../src/modules/partition/gui/ScanningDialog.cpp" line="69"/>
<source>Scanning storage devices</source>
<comment>@status</comment>
<translation type="unfinished"/>
<translation>Scandai dai dispositîfs di archiviazion</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ScanningDialog.cpp" line="69"/>
<source>Partitioning</source>
<comment>@status</comment>
<translation type="unfinished"/>
<translation>Daûr a partizionâ</translation>
</message>
</context>
<context>
@ -3879,7 +3879,7 @@ Output:
<location filename="../src/modules/users/SetHostNameJob.cpp" line="48"/>
<source>Setting hostname %1</source>
<comment>@status</comment>
<translation type="unfinished"/>
<translation>Daûr a stabilî il non dal host a %1</translation>
</message>
<message>
<location filename="../src/modules/users/SetHostNameJob.cpp" line="121"/>
@ -3900,7 +3900,7 @@ Output:
<location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="66"/>
<source>Setting keyboard model to %1, layout as %2-%3</source>
<comment>@status, %1 model, %2 layout, %3 variant</comment>
<translation type="unfinished"/>
<translation>Daûr a stabilî il model di tastiere a %1, disposizion come %2-%3</translation>
</message>
<message>
<location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="371"/>
@ -3945,25 +3945,25 @@ Output:
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="44"/>
<source>Set flags on partition %1</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>Stabilî lis opzions te partizion %1</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="50"/>
<source>Set flags on %1MiB %2 partition</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>Stabilî lis opzions te partizion %2 di %1MiB</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="54"/>
<source>Set flags on new partition</source>
<comment>@title</comment>
<translation type="unfinished"/>
<translation>Stabilî lis opzion te gnove partizion</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="65"/>
<source>Clear flags on partition &lt;strong&gt;%1&lt;/strong&gt;</source>
<comment>@info</comment>
<translation type="unfinished"/>
<translation>Netâ lis opzions te partizion &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="71"/>

View File

@ -687,8 +687,8 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -700,7 +700,7 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation>Despois:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Seleccione unha partición para instalar&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Non foi posible atopar unha partición de sistema de tipo EFI. Por favor, volva atrás e empregue a opción de particionado manual para crear unha en %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>A partición EFI do sistema en %1 será usada para iniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partición EFI do sistema:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esta unidade de almacenamento non semella ter un sistema operativo instalado nela. Que desexa facer?&lt;br/&gt;Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Borrar disco&lt;/strong&gt;&lt;br/&gt;Esto &lt;font color="red"&gt;eliminará&lt;/font&gt; todos os datos gardados na unidade de almacenamento seleccionada.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalar a carón&lt;/strong&gt;&lt;br/&gt;O instalador encollerá a partición para facerlle sitio a %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Substituír a partición&lt;/strong&gt;&lt;br/&gt;Substitúe a partición con %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>A unidade de almacenamento ten %1 nela. Que desexa facer?&lt;br/&gt;Poderá revisar e confirmar a súa elección antes de que se aplique algún cambio á unidade.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esta unidade de almacenamento xa ten un sistema operativo instalado nel. Que desexa facer?&lt;br/&gt;Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Esta unidade de almacenamento ten múltiples sistemas operativos instalados nela. Que desexa facer?&lt;br/&gt;Poderá revisar e confirmar as súas eleccións antes de que calquera cambio sexa feito na unidade de almacenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particionado manual&lt;/strong&gt;&lt;br/&gt; Pode crear o redimensionar particións pola súa conta.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Non foi posíbel executar a orde.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3218,17 +3218,17 @@ O instalador pecharase e perderanse todos os cambios.</translation>
<translation>I&amp;nstalar o cargador de arranque en:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Confirma que desexa crear unha táboa de particións nova en %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Non é posíbel crear a partición nova</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 táboa de particións de %1 xa ten %2 particións primarias e non é posíbel engadir máis. Retire unha partición primaria e engada unha partición estendida.</translation>
</message>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -693,8 +693,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>נוכחי:</translation>
@ -706,7 +706,7 @@ The installer will quit and all changes will be lost.</source>
<translation>לאחר:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>להשתמש ב־%1 מחדש כמחיצת הבית של %2</translation>
@ -723,127 +723,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 תכווץ לכדי %2MiB ותיווצר מחיצה חדשה בגודל %3MiB עבור %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;נא לבחור מחיצה כדי להתקין עליה&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>במערכת זו לא נמצאה מחיצת מערכת EFI. נא לחזור ולהשתמש ביצירת מחיצות באופן ידני כדי להגדיר את %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>מחיצת מערכת EFI שב־%1 תשמש לטעינת %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>מחיצת מערכת EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>לא נמצאה מערכת הפעלה על התקן אחסון זה. מה ברצונך לעשות?&lt;br/&gt; ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;מחיקת כונן&lt;/strong&gt;&lt;br/&gt; פעולה זו &lt;font color="red"&gt;תמחק&lt;/font&gt; את כל המידע השמור על התקן האחסון הנבחר.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;התקנה לצד&lt;/strong&gt;&lt;br/&gt; אשף ההתקנה יכווץ מחיצה כדי לפנות מקום לטובת %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;החלפת מחיצה&lt;/strong&gt;&lt;br/&gt; ביצוע החלפה של המחיצה ב־%1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>בהתקן אחסון זה נמצאה %1. מה ברצונך לעשות?&lt;br/&gt; ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>כבר קיימת מערכת הפעלה על התקן האחסון הזה. כיצד להמשיך?&lt;br/&gt; ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>ישנן מגוון מערכות הפעלה על התקן אחסון זה. איך להמשיך? &lt;br/&gt;ניתן לסקור ולאשר את בחירתך לפני ששינויים יתבצעו על התקן האחסון.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>בהתקן האחסון הזה כבר יש מערכת הפעלה אך טבלת המחיצות &lt;strong&gt;%1&lt;/strong&gt; שונה מהנדרשת &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>אחת המחיצות של התקן האחסון הזה &lt;strong&gt;מעוגנת&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>התקן אחסון זה הוא חלק מהתקן &lt;strong&gt;RAID בלתי פעיל&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>ללא החלפה</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>שימוש מחדש בהחלפה</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>החלפה (ללא תרדמת)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>החלפה (עם תרדמת)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>החלפה לקובץ</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;הגדרת מחיצות באופן ידני&lt;/strong&gt;&lt;br/&gt;ניתן ליצור או לשנות את גודל המחיצות בעצמך.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>מקום מנהל אתחול המערכת:</translation>
@ -912,12 +912,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>לא ניתן להריץ את הפקודה.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>הפקודות משתמשות במשתנים שאינם מוגדרים. המשתנים החסרים הם: %1</translation>
</message>
@ -3237,17 +3237,17 @@ The installer will quit and all changes will be lost.</source>
<translation>הת&amp;קנת מנהל אתחול על:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>לא ניתן ליצור מחיצה חדשה</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation> :</translation>
@ -704,7 +704,7 @@ The installer will quit and all changes will be lost.</source>
<translation> :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB ि %4 %3MiB ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; ि ि &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> ि EFI ि ि ि %1 ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI ि ि %2 ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI ि ि:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ि ि ि ि ?&lt;br/&gt; ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;ि &lt;/strong&gt;&lt;br/&gt; ि ि &lt;font color="red"&gt;&lt;/font&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; %1 ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;ि &lt;/strong&gt;&lt;br/&gt; ि %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ि %1 ?&lt;br/&gt; ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ि ि ि ?&lt;br/&gt; ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ि ि ि ि ?&lt;br/&gt; ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation> ि ि , &lt;strong&gt;%1&lt;/strong&gt; ि ि ि &lt;strong&gt;%2&lt;/strong&gt; ि &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation> ि ि &lt;strong&gt;&lt;/strong&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation> &lt;strong&gt;िि RAID&lt;/strong&gt; ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation> (/ि ि)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation> (/ि ि)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt; ि&lt;/strong&gt;&lt;br/&gt; ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation> </translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3226,17 +3226,17 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;l) :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation> ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -693,8 +693,8 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Trenutni:</translation>
@ -706,7 +706,7 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>Poslije:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Koristi %1 kao home particiju za %2</translation>
@ -723,127 +723,127 @@ Instalacijski program će izaći i sve promjene će biti izgubljene.</translatio
<translation>%1 će se smanjiti na %2MB i stvorit će se nova %3MB particija za %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Odaberite particiju za instalaciju&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI particija ne postoji na ovom sustavu. Vratite se natrag i koristite ručno particioniranje da bi ste postavili %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI particija na %1 će se koristiti za pokretanje %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI particija:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Izgleda da na ovom disku nema operacijskog sustava. Što želite učiniti?&lt;br/&gt;Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Obriši disk&lt;/strong&gt;&lt;br/&gt;To će &lt;font color="red"&gt;obrisati&lt;/font&gt; sve podatke na odabranom disku.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instaliraj uz postojeće&lt;/strong&gt;&lt;br/&gt;Instalacijski program će smanjiti particiju da bi napravio mjesto za %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Zamijeni particiju&lt;/strong&gt;&lt;br/&gt;Zamijenjuje particiju sa %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ovaj disk ima %1. Što želite učiniti?&lt;br/&gt;Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ovaj disk već ima operacijski sustav. Što želite učiniti?&lt;br/&gt;Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ovaj disk ima više operacijskih sustava. Što želite učiniti?&lt;br/&gt;Moći ćete provjeriti i potvrditi vaš odabir prije bilo kakvih promjena na disku.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Ovaj uređaj za pohranu već ima operativni sustav, ali njegova particijska tablica &lt;strong&gt;%1&lt;/strong&gt; razlikuje se od potrebne &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Ovaj uređaj za pohranu ima &lt;strong&gt;montiranu&lt;/strong&gt; jednu od particija.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Ovaj uređaj za pohranu je dio &lt;strong&gt;neaktivnog RAID&lt;/strong&gt; uređaja.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Bez swap-a</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Iskoristi postojeći swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (bez hibernacije)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (sa hibernacijom)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap datoteka</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Ručno particioniranje&lt;/strong&gt;&lt;br/&gt;Možete sami stvoriti ili promijeniti veličine particija.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Lokacija boot učitavača:</translation>
@ -912,12 +912,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Ne mogu pokrenuti naredbu.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Naredbe koriste varijable koje nisu definirane. Varijable koje nedostaju su: %1.</translation>
</message>
@ -3237,17 +3237,17 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje.</translation>
<translation>I&amp;nstaliraj boot učitavač na:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Ne mogu stvoriti novu particiju</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Particijska tablica %1 već ima %2 primarne particije i nove se više ne mogu dodati. Molimo vas da uklonite jednu primarnu particiju i umjesto nje dodate proširenu particiju.</translation>
</message>

View File

@ -691,8 +691,8 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Aktuális:</translation>
@ -704,7 +704,7 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<translation>Utána:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>%1 partíció újrahasználata mint home partíció a %2 -n</translation>
@ -721,127 +721,127 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<translation>A(z) %1 zsugorítva lesz %2MiB-ra és egy új %3MiB partíció lesz létrehozva itt: %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Válaszd ki a telepítésre szánt partíciót&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Nem található EFI partíció a rendszeren. Menj vissza a manuális partícionáláshoz és állítss be a(z) %1-t.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>A(z) %1 EFI rendszer partíció lesz használva a(z) %2 indításához.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI rendszer partíció:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Úgy tűnik ezen a tárolóeszközön nincs operációs rendszer. Mit szeretnél csinálni?&lt;br/&gt;Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Lemez törlése&lt;/strong&gt;&lt;br/&gt;Ez &lt;font color="red"&gt;törölni&lt;/font&gt; fogja a lemezen levő összes adatot.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Meglévő mellé telepíteni&lt;/strong&gt;&lt;br/&gt;A telepítő zsugorítani fogja a partíciót, hogy elférjen a %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;A partíció lecserélése&lt;/strong&gt; a következővel: %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ezen a tárolóeszközön %1 található. Mit szeretnél tenni?&lt;br/&gt;Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ez a tárolóeszköz már tartalmaz egy operációs rendszert. Mit szeretnél tenni?&lt;br/&gt;Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>A tárolóeszközön több operációs rendszer található. Mit szeretnél tenni?&lt;br/&gt;Lehetőséged lesz átnézni és megerősíteni a választásod mielőtt bármilyen változtatás történik a tárolóeszközön.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Ezen a tárolóeszközön már van operációs rendszer, de a &lt;strong&gt;%1&lt;/strong&gt; partíciós tábla eltér a szükséges &lt;strong&gt;%2&lt;/strong&gt;-től.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Ennek a tárolóeszköznek az egyik partíciója &lt;strong&gt;csatolva van&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Ez a tárolóeszköz egy &lt;strong&gt;inaktív RAID-eszköz&lt;/strong&gt; része.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Nincs cserehely</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Cserehely újrahasznosítása</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Cserehely (nincs Hibernálás)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Cserehely (Hibernálással)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Cserehely fájlba</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manuális partícionálás&lt;/strong&gt;&lt;br/&gt;Létrehozhatsz, vagy átméretezhetsz partíciókat.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>A rendszerbetöltő helye:</translation>
@ -910,12 +910,12 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>A parancsot nem lehet futtatni.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>A parancsok nem definiált változókat használnak. A hiányzó változók a következők: %1.</translation>
</message>
@ -3128,14 +3128,14 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="201"/>
<source>Free Space</source>
<comment>@title</comment>
<translation>Szabad Terület</translation>
<translation>Szabad terület</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="161"/>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="205"/>
<source>New Partition</source>
<comment>@title</comment>
<translation>Új Partíció</translation>
<translation>Új partíció</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="307"/>
@ -3153,13 +3153,13 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="311"/>
<source>File System Label</source>
<comment>@title</comment>
<translation>Fájlrendszer Címke</translation>
<translation>Fájlrendszercímke</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="313"/>
<source>Mount Point</source>
<comment>@title</comment>
<translation>Csatolási Pont</translation>
<translation>Csatolási pont</translation>
</message>
<message>
<location filename="../src/modules/partition/core/PartitionModel.cpp" line="315"/>
@ -3226,17 +3226,17 @@ Minden változtatás elvész, ha kilépsz a telepítőből.</translation>
<translation>Rendszerbetöltő &amp;telepítése ide:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Nem hozható létre új partíció</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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(z) %1 lemezen lévő partíciós táblában már %2 elsődleges partíció van, és több nem adható hozzá. Helyette távolítson el egy elsődleges partíciót, és adjon hozzá egy kiterjesztett partíciót.</translation>
</message>

View File

@ -687,8 +687,8 @@ Le installator claudera e tote le cambiamentos sera perdite.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -700,7 +700,7 @@ Le installator claudera e tote le cambiamentos sera perdite.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ Le installator claudera e tote le cambiamentos sera perdite.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Un partition de systema EFI non pote esser trovate ubique sur iste systema. Retorna e usa le partitionamento manual pro configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Rader disco&lt;/strong&gt;&lt;br/&gt;Iste &lt;font color="red"&gt;delera&lt;/font&gt; tote le datos actualmente presente sur le dispositivo de immagazinage seligite.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Necun intercambio</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Reusar intercambio</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Intercambio (necun hibernation)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Intercambio (con hibernation)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Intercambio in file</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Partitionamento manual&lt;/strong&gt;&lt;br/&gt;Tu pote crear o redimensionar partitiones per te mesme.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Localisation del cargator de initio:</translation>
@ -906,12 +906,12 @@ Le installator claudera e tote le cambiamentos sera perdite.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3218,17 +3218,17 @@ Le installator claudera e tote le cambiamentos sera perdite.</translation>
<translation>I&amp;nstallar cargator de initio sur:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Es tu secur que tu vole crear un nove tabula de partitiones sur %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Non pote crear nove partition</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Le tabula de partitiones sur %1 ja ha %2 partitiones primari, e non pote esser addite alteres. Remove un partition primari e adde un partition extendite, in vice.</translation>
</message>

View File

@ -684,8 +684,8 @@ Instalasi akan ditutup dan semua perubahan akan hilang.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Saat ini:</translation>
@ -697,7 +697,7 @@ Instalasi akan ditutup dan semua perubahan akan hilang.</translation>
<translation>Sesudah:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -714,127 +714,127 @@ Instalasi akan ditutup dan semua perubahan akan hilang.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Pilih sebuah partisi untuk memasang&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Sebuah partisi sistem EFI tidak ditemukan pada sistem ini. Silakan kembali dan gunakan pemartisian manual untuk mengeset %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Partisi sistem EFI di %1 akan digunakan untuk memulai %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partisi sistem EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Tampaknya media penyimpanan ini tidak mengandung sistem operasi. Apa yang hendak Anda lakukan?&lt;br/&gt;Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Hapus disk&lt;/strong&gt;&lt;br/&gt;Aksi ini akan &lt;font color="red"&gt;menghapus&lt;/font&gt; semua berkas yang ada pada media penyimpanan terpilih.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instal berdampingan dengan&lt;/strong&gt;&lt;br/&gt;Installer akan mengiris sebuah partisi untuk memberi ruang bagi %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Ganti sebuah partisi&lt;/strong&gt;&lt;br/&gt; Ganti partisi dengan %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Media penyimpanan ini mengandung %1. Apa yang hendak Anda lakukan?&lt;br/&gt;Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Media penyimpanan ini telah mengandung sistem operasi. Apa yang hendak Anda lakukan?&lt;br/&gt;Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Media penyimpanan ini telah mengandung beberapa sistem operasi. Apa yang hendak Anda lakukan?&lt;br/&gt;Anda dapat menelaah dan mengkonfirmasi pilihan Anda sebelum dilakukan perubahan pada media penyimpanan.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Perngkat penyimpanan ini sudah terdapat sistem operasi, tetapi tabel partisi &lt;strong&gt;%1&lt;/strong&gt;berbeda dari yang dibutuhkan &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Perangkat penyimpanan ini terdapat partisi yang &lt;strong&gt;terpasang&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Perangkat penyimpanan ini merupakan bagian dari sebuah &lt;strong&gt;perangkat RAID yang tidak aktif&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (tanpa hibernasi)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (dengan hibernasi)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap ke file</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Pemartisian manual&lt;/strong&gt;&lt;br/&gt;Anda bisa membuat atau mengubah ukuran partisi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -903,12 +903,12 @@ Instalasi akan ditutup dan semua perubahan akan hilang.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Tidak dapat menjalankan perintah</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3207,17 +3207,17 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
<translation>I&amp;nstal boot loader di:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Tidak bisa menciptakan partisi baru.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Partisi tabel pada %1 sudah memiliki %2 partisi primer, dan tidak ada lagi yang bisa ditambahkan. Silakan hapus salah satu partisi primer dan tambahkan sebuah partisi extended, sebagai gantinya.</translation>
</message>

File diff suppressed because it is too large Load Diff

View File

@ -691,8 +691,8 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Fyrirliggjandi:</translation>
@ -704,7 +704,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>Á eftir:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Endurnýta %1 sem home-disksneið fyrir %2</translation>
@ -721,127 +721,127 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>%1 verður minnkuð í %2MiB og %3MiB disksneið verður útbúin fyrir %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Veldu disksneið til setja upp á &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI-kerfisdisksneið er hvergi finna á þessu kerfi. Farðu til baka og notaðu handvirka disksneiðingu til setja upp %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI-kerfisdisksneið á %1 mun verða notuð til ræsa %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI-kerfisdisksneið:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Þetta geymslutæki virðist ekki vera með neitt stýrikerfi. Hvað viltu gera?&lt;br/&gt;Þú munt geta yfirfarið og staðfest val þitt áður en nokkrar breytingar verða gerðar á geymslutækinu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Hreinsa disk&lt;/strong&gt;&lt;br/&gt;Þetta mun &lt;font color="red"&gt;eyða&lt;/font&gt; öllum gögnum á völdu geymslutæki.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Setja upp samhliða&lt;/strong&gt;&lt;br/&gt;Uppsetningarforritið mun minnka disksneið til búa til pláss fyrir %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Skipta út disksneið&lt;/strong&gt;&lt;br/&gt;Skiptir disksneið út með %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Þetta geymslutæki er með %1 uppsett. Hvað viltu gera?&lt;br/&gt;Þú munt geta yfirfarið og staðfest val þitt áður en nokkrar breytingar verða gerðar á geymslutækinu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Þetta geymslutæki er þegar með uppsett stýrikerfi. Hvað viltu gera?&lt;br/&gt;Þú munt geta yfirfarið og staðfest val þitt áður en nokkrar breytingar verða gerðar á geymslutækinu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Þetta geymslutæki er með mörg stýrikerfi. Hvað viltu gera?&lt;br/&gt;Þú munt geta yfirfarið og staðfest val þitt áður en nokkrar breytingar verða gerðar á geymslutækinu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Þetta geymslutæki er þegar með uppsett stýrikerfi, en disksneiðataflan &lt;strong&gt;%1&lt;/strong&gt; er frábrugðin þeirri &lt;strong&gt;%2&lt;/strong&gt; sem þyrfti.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Þetta geymslutæki er með eina af disksneiðunum sínum &lt;strong&gt;tengda í skráakerfi&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Þetta geymslutæki er hluti af &lt;strong&gt;óvirku RAID-tæki&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Ekkert swap-diskminni</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Endurnýta diskminni</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Diskminni (ekki hægt leggja í dvala)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Diskminni (hægt leggja í dvala)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Diskminni í skrá</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Handvirk disksneiðing&lt;/strong&gt;&lt;br/&gt;Þú getur búið til eða breytt stærð disksneiða sjálf/ur.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Staðsetning ræsistjóra:</translation>
@ -910,12 +910,12 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Gat ekki keyrt skipun.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3226,17 +3226,17 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
<translation>Setja ræsistjóra&amp;nn upp á:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Ertu viss um þú viljir búa til nýja disksneið á %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Mistókst búa til nýja disksneið</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Disksneiðataflan á %1 er þegar með %2 aðaldisksneiðar og er ekki hægt bæta við fleirum. Fjarlægðu eina aðaldisksneið og bættu við einni viðaukinni disksneið í staðinn.</translation>
</message>

File diff suppressed because it is too large Load Diff

View File

@ -683,8 +683,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -696,7 +696,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -713,127 +713,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -902,12 +902,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3205,17 +3205,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -689,8 +689,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -702,7 +702,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>%1 %2 </translation>
@ -719,127 +719,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB %4 %3MiB </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFIシステムパーティションが存在しません%1 使</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI %2 使</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; &lt;font color="red"&gt;&lt;/font&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br /&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>1&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>&lt;strong&gt;RAID&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>()</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>()</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>:</translation>
@ -908,12 +908,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>使: %1</translation>
</message>
@ -3218,17 +3218,17 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 1</translation>
</message>

View File

@ -691,8 +691,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -704,7 +704,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI- :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>-</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation> .</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI жүйелік бөлімі:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -689,8 +689,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -702,7 +702,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -719,127 +719,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB로 %4 %3MiB .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; .&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> EFI . %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI %2 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; &lt;font color="red"&gt;&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> %1 . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; .&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation> &lt;strong&gt;&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation> &lt;strong&gt; RAID&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -908,12 +908,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation> .</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation> . : %1.</translation>
</message>
@ -3215,17 +3215,17 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;l) :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -683,8 +683,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -696,7 +696,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -713,127 +713,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -902,12 +902,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3205,17 +3205,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -695,8 +695,8 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Dabartinis:</translation>
@ -708,7 +708,7 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>Po:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Pakartotinai naudoti %1 kaip namų skaidinį, skirtą %2</translation>
@ -725,127 +725,127 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>%1 bus sumažintas iki %2MiB ir naujas %3MiB skaidinys bus sukurtas sistemai %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Pasirinkite kuriame skaidinyje įdiegti&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Šioje sistemoje niekur nepavyko rasti EFI skaidinio. Prašome grįžti ir naudoti rankinį skaidymą, kad nustatytumėte %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%2 paleidimui bus naudojamas EFI sistemos skaidinys, esantis ties %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI sistemos skaidinys:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Atrodo, kad šiame įrenginyje nėra operacinės sistemos. norėtumėte daryti?&lt;br/&gt;Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Ištrinti diską&lt;/strong&gt;&lt;br/&gt;Tai &lt;font color="red"&gt;ištrins&lt;/font&gt; visus, pasirinktame atminties įrenginyje, esančius duomenis.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Įdiegti šalia&lt;/strong&gt;&lt;br/&gt;Diegimo programa sumažins skaidinį, kad atlaisvintų vietą sistemai %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Pakeisti skaidinį&lt;/strong&gt;&lt;br/&gt;Pakeičia skaidinį ir įrašo %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Šiame atminties įrenginyje jau yra %1. norėtumėte daryti?&lt;br/&gt;Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Šiame atminties įrenginyje jau yra operacinė sistema. norėtumėte daryti?&lt;br/&gt;Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Šiame atminties įrenginyje jau yra kelios operacinės sistemos. norėtumėte daryti?&lt;br/&gt;Prieš atliekant bet kokius pakeitimus atminties įrenginyje, jūs galėsite apžvelgti ir patvirtinti savo pasirinkimus.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Šiame atminties įrenginyje jau yra operacinė sistema, bet skaidinių lentelė &lt;strong&gt;%1&lt;/strong&gt; yra kitokia nei reikiama &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Vienas šio atminties įrenginio skaidinių yra &lt;strong&gt;prijungtas&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Šis atminties įrenginys yra &lt;strong&gt;neaktyvaus RAID&lt;/strong&gt; įrenginio dalis.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Be sukeitimų skaidinio</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation> naujo naudoti sukeitimų skaidinį</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Sukeitimų skaidinys (be užmigdymo)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Sukeitimų skaidinys (su užmigdymu)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Sukeitimų failas</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Rankinis skaidymas&lt;/strong&gt;&lt;br/&gt;Galite patys kurti ar keisti skaidinių dydžius.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Paleidyklės vieta:</translation>
@ -914,12 +914,12 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nepavyko paleisti komandos.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Komandos naudoja kintamuosius, kurie nėra apibrėžti. Trūkstami kintamieji yra: %1.</translation>
</message>
@ -3248,17 +3248,17 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
<translation>Į&amp;diegti paleidyklę skaidinyje:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Nepavyksta sukurti naują skaidinį</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Šobrīd:</translation>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Pēc iestatīšanas:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Atlasiet nodalījumu, kurā instalēt&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nevarēja palaist komandu.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3227,17 +3227,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>ിി:</translation>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB ി %4 ി %3MiB ി .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; ി ി&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> ിി ി .. ി ി. %1 ിി ി ിി ി ി ി.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 ി %2 ിി ി.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation> ി </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ി ി ി ി. ി ി?&lt;br/&gt; ി ി ി ി ി ിി ി. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;ി &lt;/strong&gt;&lt;br/&gt; ി ി &lt;font color="red"&gt;&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;ി &lt;/strong&gt;&lt;br/&gt;%1 ി .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt; ി&lt;/strong&gt;&lt;br/&gt; %1 ി ി.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ി %1 .ി ി?&lt;br/&gt; ി ി ി ി ിി ി ി.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ി ി ി ി . ി ി?&lt;br/&gt; ി ി ി ി ി ിി ി. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ി ിി ി ി. ി ി?&lt;br/&gt; ി ി ി ി ി ിി ി. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation> ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation> ( ി)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>ി </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt; ി&lt;/strong&gt;&lt;br/&gt;ി ി ി.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation> ിിി.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3218,17 +3218,17 @@ The installer will quit and all changes will be lost.</source>
<translation> ി (&amp;n):</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>ി ിിി</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation> :</translation>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation> :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -686,8 +686,8 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -699,7 +699,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -716,127 +716,127 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manuell partisjonering&lt;/strong&gt;&lt;br/&gt;Du kan opprette eller endre størrelse partisjoner selv.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -905,12 +905,12 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3217,17 +3217,17 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Huidig:</translation>
@ -704,7 +704,7 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>Na:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>%1 zal verkleind worden tot %2MiB en een nieuwe %3MiB partitie zal worden aangemaakt voor %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Selecteer een partitie om op te installeren&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Er werd geen EFI systeempartitie gevonden op dit systeem. Gelieve terug te gaan en manueel te partitioneren om %1 in te stellen.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>De EFI systeempartitie op %1 zal gebruikt worden om %2 te starten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI systeempartitie:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Dit opslagmedium lijkt geen besturingssysteem te bevatten. Wat wil je doen?&lt;br/&gt;Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Wis schijf&lt;/strong&gt;&lt;br/&gt;Dit zal alle huidige gegevens op de geselecteerd opslagmedium &lt;font color="red"&gt;verwijderen&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Installeer ernaast&lt;/strong&gt;&lt;br/&gt;Het installatieprogramma zal een partitie verkleinen om plaats te maken voor %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Vervang een partitie&lt;/strong&gt;&lt;br/&gt;Vervangt een partitie met %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Dit opslagmedium bevat %1. Wat wil je doen?&lt;br/&gt;Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Dit opslagmedium bevat reeds een besturingssysteem. Wat wil je doen?&lt;br/&gt;Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Dit opslagmedium bevat meerdere besturingssystemen. Wat wil je doen?&lt;br/&gt;Je zal jouw keuzes kunnen nazien en bevestigen voordat er iets aan het opslagmedium wordt veranderd.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Dit opslagmedium bevat al een besturingssysteem, maar de partitietabel &lt;strong&gt;%1&lt;/strong&gt; is anders dan het benodigde &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Dit opslagmedium heeft een van de partities &lt;strong&gt;gemount&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Dit opslagmedium maakt deel uit van een &lt;strong&gt;inactieve RAID&lt;/strong&gt; apparaat.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Wisselgeheugen (geen Sluimerstand)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Wisselgeheugen ( met Sluimerstand)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Wisselgeheugen naar bestand</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Handmatig partitioneren&lt;/strong&gt;&lt;br/&gt;Je maakt of wijzigt zelf de partities.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Kon de opdracht niet uitvoeren.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
<translation>I&amp;nstalleer bootloader op:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Kan de nieuwe partitie niet aanmaken</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>De partitietabel op %1 bevat al %2 primaire partities en er kunnen geen nieuwe worden aangemaakt. In plaats hiervan kan één primaire partitie verwijderen en een uitgebreide partitie toevoegen.</translation>
</message>

View File

@ -689,8 +689,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -702,7 +702,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Aprèp:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -719,127 +719,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Seleccionar una particion ont installar&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Particion sistèma EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -908,12 +908,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Execucion impossibla de la comanda.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3220,17 +3220,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -695,8 +695,8 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Bieżący:</translation>
@ -708,7 +708,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>Po:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Użyj ponownie %1 jako partycję główną dla %2</translation>
@ -725,127 +725,127 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>%1 zostanie zmniejszony do %2MiB, a dla %4 zostanie utworzona nowa partycja %3MiB.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Wybierz partycję, na której przeprowadzona będzie instalacja&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Nigdzie w tym systemie nie można odnaleźć partycji systemowej EFI. Prosimy się cofnąć i użyć ręcznego partycjonowania dysku do ustawienia %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Partycja systemowa EFI na %1 będzie użyta do uruchamiania %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partycja systemowa EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>To urządzenie pamięci masowej prawdopodobnie nie posiada żadnego systemu operacyjnego. Co chcesz zrobić?&lt;br/&gt;Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Wyczyść dysk&lt;/strong&gt;&lt;br/&gt;Ta operacja &lt;font color="red"&gt;usunie&lt;/font&gt; wszystkie dane obecnie znajdujące się na wybranym urządzeniu przechowywania.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Zainstaluj obok siebie&lt;/strong&gt;&lt;br/&gt;Instalator zmniejszy partycję, aby zrobić miejsce dla %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Zastąp partycję&lt;/strong&gt;&lt;br/&gt;Zastępowanie partycji poprzez %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>To urządzenie pamięci masowej posiada %1. Co chcesz zrobić?&lt;br/&gt;Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>To urządzenie pamięci masowej posiada już system operacyjny. Co chcesz zrobić?&lt;br/&gt;Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>To urządzenie pamięci masowej posiada kilka systemów operacyjnych. Co chcesz zrobić?&lt;br/&gt;Będziesz miał możliwość przejrzenia oraz zatwierdzenia swoich ustawień przed wykonaniem jakichkolwiek zmian na tym urządzeniu.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>To urządzenie pamięci masowej ma już system operacyjny, ale tabela partycji &lt;strong&gt;%1 &lt;/strong&gt;różni się od wymaganego &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>To urządzenie pamięci masowej ma &lt;strong&gt;zamontowaną&lt;/strong&gt; jedną z partycji.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>To urządzenie pamięci masowej jest częścią &lt;strong&gt;nieaktywnego urządzenia RAID&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Brak przestrzeni wymiany</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Użyj ponownie przestrzeni wymiany</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Przestrzeń wymiany (bez hibernacji)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Przestrzeń wymiany (z hibernacją)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Przestrzeń wymiany do pliku</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Ręczne partycjonowanie&lt;/strong&gt;&lt;br/&gt;Możesz samodzielnie utworzyć lub zmienić rozmiar istniejących partycji.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Położenie programu rozruchowego:</translation>
@ -914,12 +914,12 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nie można wykonać polecenia.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Polecenia używają zmiennych, które nie zdefiniowane. Brakujące zmienne to: %1.</translation>
</message>
@ -3248,17 +3248,17 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
<translation>Zainstaluj program rozruchowy </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<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="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -693,8 +693,8 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Atual:</translation>
@ -706,7 +706,7 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<translation>Depois:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Reutilizar %1 como partição home para %2</translation>
@ -723,127 +723,127 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<translation>%1 será reduzida para %2MiB e uma nova partição de %3MiB será criada para %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Selecione uma partição para instalação em&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Não foi possível encontrar uma partição EFI no sistema. Por favor, volte e use o particionamento manual para configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>A partição de sistema EFI em %1 será utilizada para iniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partição de sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Parece que não um sistema operacional neste dispositivo de armazenamento. O que você gostaria de fazer?&lt;br/&gt;Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Formatar o disco&lt;/strong&gt;&lt;br/&gt;isso vai &lt;font color="red"&gt;excluir&lt;/font&gt; todos os dados presentes atualmente no dispositivo de armazenamento selecionado.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalar lado a lado&lt;/strong&gt;&lt;br/&gt;O instalador reduzirá uma partição para liberar espaço para %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Substituir uma partição&lt;/strong&gt;&lt;br/&gt;Substitui uma partição com %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de armazenamento possui %1 nele. O que você gostaria de fazer?&lt;br/&gt;Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> um sistema operacional neste dispositivo de armazenamento. O que você gostaria de fazer?&lt;br/&gt;Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> diversos sistemas operacionais neste dispositivo de armazenamento. O que você gostaria de fazer?&lt;br/&gt;Você poderá revisar e confirmar suas opções antes que as alterações sejam feitas no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>O dispositivo de armazenamento possui um sistema operacional, mas a tabela de partições &lt;strong&gt;%1&lt;/strong&gt; é diferente da necessária &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>O dispositivo de armazenamento tem uma de suas partições &lt;strong&gt;montada&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>O dispositivo de armazenamento é parte de um dispositivo &lt;strong&gt;RAID inativo&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Sem swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Reutilizar swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (sem hibernação)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (com hibernação)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap em arquivo</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particionamento manual&lt;/strong&gt;&lt;br/&gt;Você mesmo pode criar e redimensionar elas</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Local do gerenciador de inicialização:</translation>
@ -912,12 +912,12 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<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="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Os comandos usam variáveis que não foram definidas. As variáveis faltantes são: %1.</translation>
</message>
@ -3237,17 +3237,17 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
<translation>I&amp;nstalar gerenciador de inicialização em:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<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="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>A tabela de partições %1 tem %2 partições primárias, e nenhuma a mais pode ser adicionada. Por favor, remova uma partição primária e adicione uma partição estendida no lugar.</translation>
</message>

View File

@ -693,8 +693,8 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Atual:</translation>
@ -706,7 +706,7 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>Depois:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -723,127 +723,127 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>%1 será encolhida para %2MiB e uma nova %3MiB partição será criada para %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Selecione uma partição para instalar&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Nenhuma partição de sistema EFI foi encontrada neste sistema. Volte atrás e use o particionamento manual para configurar %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>A partição de sistema EFI em %1 será usada para iniciar %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partição de sistema EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de armazenamento aparenta não ter um sistema operativo. O que quer fazer?&lt;br/&gt;Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Apagar disco&lt;/strong&gt;&lt;br/&gt;Isto irá &lt;font color="red"&gt;apagar&lt;/font&gt; todos os dados atualmente apresentados no dispositivo de armazenamento selecionado.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalar paralelamente&lt;/strong&gt;&lt;br/&gt;O instalador irá encolher a partição para arranjar espaço para %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Substituir a partição&lt;/strong&gt;&lt;br/&gt;Substitui a partição com %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de armazenamento tem %1 nele. O que quer fazer?&lt;br/&gt;Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de armazenamento tem um sistema operativo nele. O que quer fazer?&lt;br/&gt;Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Este dispositivo de armazenamento tem múltiplos sistemas operativos nele, O que quer fazer?&lt;br/&gt;Poderá rever e confirmar as suas escolhas antes de qualquer alteração ser feita no dispositivo de armazenamento.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>O dispositivo de armazenamento possui um sistema operativo, mas a tabela de partições &lt;strong&gt;%1&lt;/strong&gt; é diferente da necessária &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>O dispositivo de armazenamento tem uma das suas partições &lt;strong&gt;montada&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>O dispositivo de armazenamento é parte de um dispositivo &lt;strong&gt;RAID inativo&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (sem Hibernação)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (com Hibernação)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap para ficheiro</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Particionamento manual&lt;/strong&gt;&lt;br/&gt;Pode criar ou redimensionar partições manualmente.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -912,12 +912,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<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="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Os comandos usam variáveis que não estão definidas. As variáveis em falta são: %1.</translation>
</message>
@ -3237,17 +3237,17 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
<translation>I&amp;nstalar carregador de arranque em:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<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="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<source>The partition table on %1 already has %2 primary partitions, and no more can be added. Please remove one primary partition and add an extended partition, instead.</source>
<translation>A tabela de partições em %1 tem %2 partições primárias, e não podem ser adicionadas mais. Em vez disso, remova uma partição primária e adicione uma partição estendida.</translation>
</message>

View File

@ -693,8 +693,8 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Actual:</translation>
@ -706,7 +706,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>După:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Refolosiți %1 ca partiție home pentru %2</translation>
@ -723,127 +723,127 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation>%1 va fi micșorat la %2MiB si noua partiție de %3MiB va fi creată pentru %4</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Selectați o partiție pe care se instaleze&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>O partiție de sistem EFI nu poate fi găsită nicăieri în acest sistem. rugăm reveniți și partiționați manual pentru a configura %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Partiția de sistem EFI de la %1 va fi folosită pentru a porni %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Partiție de sistem EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Acest dispozitiv de stocare nu pare aibă un sistem de operare instalat. Ce doriți faceți?&lt;br/&gt;Veți putea revedea și confirma alegerile făcute înainte fie realizate schimbări pe dispozitivul de stocare.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Șterge discul&lt;/strong&gt;&lt;br/&gt;Aceasta va &lt;font color="red"&gt;șterge&lt;/font&gt; toate datele prezente pe dispozitivul de stocare selectat.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instalează laolaltă&lt;/strong&gt;&lt;br/&gt;Instalatorul va micșora o partiție pentru a face loc pentru %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Înlocuiește o partiție&lt;/strong&gt;&lt;br/&gt;Înlocuiește o partiție cu %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Acest dispozitiv de stocare are %1. Ce doriți faceți?&lt;br/&gt;Veți putea revedea și confirma alegerile făcute înainte fie realizate schimbări pe dispozitivul de stocare.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Acest dispozitiv de stocare are deja un sistem de operare instalat. Ce doriți faceți?&lt;br/&gt;Veți putea revedea și confirma alegerile făcute înainte de se realiza schimbări pe dispozitivul de stocare.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Acest dispozitiv de stocare are mai multe sisteme de operare instalate. Ce doriți faceți?&lt;br/&gt;Veți putea revedea și confirma alegerile făcute înainte de a se realiza schimbări pe dispozitivul de stocare.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Acest device de stocare are deja un sistem de operare, dar tabelul de partiție &lt;strong&gt;%1&lt;/strong&gt; este diferită față de necesarul &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Acest dispozitiv de stocare are deja una dintre partiții &lt;strong&gt;montate&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Acest dispozitiv de stocare face parte dintr-un dispozitiv &lt;strong&gt;RAID inactiv&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Fără swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Reutilizare swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (fară hibernare)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (cu hibernare)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap către fișier</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Partiționare manuală&lt;/strong&gt;&lt;br/&gt;Puteți crea sau redimensiona partițiile.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Locația bootloader-ului:</translation>
@ -912,12 +912,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nu s-a putut executa comanda.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3236,17 +3236,17 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Sigur doriți creați o nouă tabelă de partiție pe %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3227,17 +3227,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

File diff suppressed because it is too large Load Diff

View File

@ -691,8 +691,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -704,7 +704,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,127 +721,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB %4 %3MiB .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI . %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%2 %1 EFI .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> . ? &lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; &lt;strong&gt;&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt; &lt;/strong&gt;&lt;br/&gt; %1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> %1 . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> . ?&lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation> , %1 %2 .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation> , &lt;strong&gt; &lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation> &lt;strong&gt; RAID&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap ( )</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt; &lt;/strong&gt; &lt;br/&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -910,12 +910,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation> .</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3226,17 +3226,17 @@ The installer will quit and all changes will be lost.</source>
<translation> (&amp;n):</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Teraz:</translation>
@ -704,7 +704,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Potom:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -721,128 +721,128 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Oddiel %1 bude zmenšený na %2MiB a nový %3MiB oddiel bude vytvorený pre distribúciu %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Vyberte oddiel, na ktorý sa inštalovať&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Oddiel systému EFI sa nedá v tomto počítači nájsť. Prosím, prejdite späť a použite ručné rozdelenie oddielov na inštaláciu distribúcie %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Oddiel systému EFI na %1 bude použitý pre spustenie distribúcie %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Oddiel systému EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Zdá sa, že toto úložné zariadenie neobsahuje operačný systém. Čo by ste chceli urobiť?&lt;br/&gt;Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Vymazanie disku&lt;/strong&gt;&lt;br/&gt;Týmto sa &lt;font color="red"&gt;odstránia&lt;/font&gt; všetky údaje momentálne sa nachádzajúce na vybranom úložnom zariadení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Inštalácia popri súčasnom systéme&lt;/strong&gt;&lt;br/&gt;Inštalátor zmenší oddiel a uvoľní miesto pre distribúciu %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Nahradenie oddielu&lt;/strong&gt;&lt;br/&gt;Nahradí oddiel distribúciou %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Toto úložné zariadenie obsahuje operačný systém %1. Čo by ste chceli urobiť?&lt;br/&gt;Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Toto úložné zariadenie obsahuje operačný systém. Čo by ste chceli urobiť?&lt;br/&gt;Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Toto úložné zariadenie obsahuje viacero operačných systémov. Čo by ste chceli urobiť?&lt;br/&gt;Budete môcť skontrolovať a potvrdiť vaše voľby pred uplatnením akejkoľvek zmeny na úložnom zariadení.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Toto úložné zariadenie obsahuje operačný systém, ale tabuľka oddielov &lt;strong&gt;%1&lt;/strong&gt; sa líši od požadovanej &lt;strong&gt;%2&lt;/strong&gt;.
&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Toto úložné zariadenie jeden zo svojich oddielov &lt;strong&gt;pripojený&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Toto úložné zariadenie je súčasťou zariadenia s &lt;strong&gt;neaktívnym RAIDom&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Odkladací priestor (bez hibernácie)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Odkladací priestor (s hibernáciou)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Odkladací priestor v súbore</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Ručné rozdelenie oddielov&lt;/strong&gt;&lt;br/&gt;Môžete vytvoriť alebo zmeniť veľkosť oddielov podľa seba.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -911,12 +911,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Nepodarilo sa spustiť príkaz.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3243,17 +3243,17 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<translation>Nai&amp;nštalovať zavádzač na:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Nedá sa vytvoriť nový oddiel</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Tabuľka oddielov na %1 obsahuje primárne oddiely %2 a nie je možné pridávať žiadne ďalšie. Odstráňte jeden primárny oddiel a namiesto toho pridajte rozšírenú oblasť.</translation>
</message>

View File

@ -690,8 +690,8 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -703,7 +703,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation>Potem:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -720,127 +720,127 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -909,12 +909,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3239,17 +3239,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>I tanishmi:</translation>
@ -704,7 +704,7 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation> Pas:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Ripërdore %1 si pjesën shtëpi për %2</translation>
@ -721,127 +721,127 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation>%1 do tkurret %2MiB dhe për %4 do krijohet një pjesë e re %3MiB.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Përzgjidhni një pjesë ku instalohet&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> këtë sistem sgjendet gjëkundi një pjesë EFI sistemi. Ju lutemi, kthehuni mbrapsht dhe përdorni pjesëtimin dorazi ujdisni %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Për nisjen e %2 do përdoret pjesa EFI e sistemit te %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Pjesë EFI sistemi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kjo pajisje depozitimi nuk përmban një sistem operativ . Çdo donit bënit?&lt;br/&gt;Do jeni gjendje rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se bëhet çfarëdo ndryshimi te pajisja e depozitimit.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Fshije diskun&lt;/strong&gt;&lt;br/&gt;Kështu do &lt;font color=\"red\"&gt;fshihen&lt;/font&gt; krejt të dhënat të pranishme tani në pajisjen e përzgjedhur.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Instaloje krah tij&lt;/strong&gt;&lt;br/&gt;Instaluesi do zvogëlojë një pjesë për bërë vend për %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Zëvendëso një pjesë&lt;/strong&gt;&lt;br/&gt;Zëvendëson një pjesë me %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kjo pajisje depozitimi përmban %1 . Çdo donit bënit?&lt;br/&gt;Do jeni gjendje rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se bëhet çfarëdo ndryshimi te pajisja e depozitimit.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kjo pajisje depozitimi ka tashmë një sistem operativ . Çdo donit bënit?&lt;br/&gt;Do jeni gjendje rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se bëhet çfarëdo ndryshimi te pajisja e depozitimit.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Kjo pajisje depozitimi ka disa sisteme operativë . Çdo donit bënit?&lt;br/&gt;Do jeni gjendje rishqyrtoni dhe ripohoni zgjedhjet tuaja, para se bëhet çfarëdo ndryshimi te pajisja e depozitimit.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Kjo pajisje depozitimi ka tashmë një sistem operativ , por tabela e saj e pjesëve &lt;strong&gt;%1&lt;/strong&gt; është e ndryshme nga ajo e duhura &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Kjo pajisje depozitimi ka një nga pjesët e saj &lt;strong&gt; montuar&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Kjo pajisje depozitimi është pjesë e një pajisje &lt;strong&gt;RAID jo aktive&lt;/strong&gt; device.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Pa swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Ripërdor swap-in</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (pa Plogështim)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (me Plogështim)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap kartelë</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Pjesëtim dorazi&lt;/strong&gt;&lt;br/&gt;Pjesët mund ti krijoni dhe ripërmasoni ju vetë.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Vendndodhje ngarkuesi nisësi:</translation>
@ -910,12 +910,12 @@ 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="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Su xhirua dot urdhri.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Urdhrat përdorin ndryshore sjanë përkufizuar. Ndryshoret mungojnë janë: %1.</translation>
</message>
@ -3228,17 +3228,17 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
<translation>&amp;Instalo ngarkues nisjesh :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Jeni i sigurt se doni krijoni një tabelë re pjesësh %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Skrijohet dot pjesë e re</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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ëtimit te %1 ka tashmë %2 pjesë parësore dhe smund shtohen tjera. Ju lutemi, vend kësaj, hiqni një pjesë parësore dhe shtoni një pjesë zgjeruar.</translation>
</message>

View File

@ -688,8 +688,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Тренутно:</translation>
@ -701,7 +701,7 @@ The installer will quit and all changes will be lost.</source>
<translation>После:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -718,127 +718,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Ручно партиционисање&lt;/strong&gt;&lt;br/&gt;Сами можете креирати или мењати партције.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -907,12 +907,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3228,17 +3228,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -688,8 +688,8 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -701,7 +701,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation>Poslije:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -718,127 +718,127 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -907,12 +907,12 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3228,17 +3228,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -690,8 +690,8 @@ Alla ändringar kommer att gå förlorade.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Nuvarande:</translation>
@ -703,7 +703,7 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>Efter:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Återanvänd %1 som hempartition för %2.</translation>
@ -720,127 +720,127 @@ Alla ändringar kommer att gå förlorade.</translation>
<translation>%1 kommer att förminskas till %2MiB och en ny %3MiB partition kommer att skapas för %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Välj en partition att installera &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Ingen EFI-partition kunde inte hittas systemet. tillbaka och partitionera din lagringsenhet manuellt för att ställa in %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>EFI-partitionen %1 kommer att användas för att starta %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI-partition:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Denna lagringsenhet ser inte ut att ha ett operativsystem installerat. Vad vill du göra?&lt;br/&gt;Du kommer kunna granska och bekräfta dina val innan någon ändring görs lagringseneheten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Rensa lagringsenhet&lt;/strong&gt;&lt;br/&gt;Detta kommer &lt;font color="red"&gt;radera&lt;/font&gt; all existerande data på den valda lagringsenheten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Installera sidan av&lt;/strong&gt;&lt;br/&gt;Installationshanteraren kommer krympa en partition för att göra utrymme för %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Ersätt en partition&lt;/strong&gt;&lt;br/&gt;Ersätter en partition med %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Denna lagringsenhet har %1 sig. Vad vill du göra?&lt;br/&gt;Du kommer kunna granska och bekräfta dina val innan någon ändring görs lagringsenheten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Denna lagringsenhet har redan ett operativsystem sig. Vad vill du göra?&lt;br/&gt;Du kommer kunna granska och bekräfta dina val innan någon ändring sker lagringsenheten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Denna lagringsenhet har flera operativsystem sig. Vad vill du göra?&lt;br/&gt;Du kommer kunna granska och bekräfta dina val innan någon ändring sker lagringsenheten.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Denna lagringsenhet har redan ett operativsystem installerat sig, men partitionstabellen &lt;strong&gt;%1&lt;/strong&gt; skiljer sig från den som behövs &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Denna lagringsenhet har en av dess partitioner &lt;strong&gt;monterad&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Denna lagringsenhet är en del av en &lt;strong&gt;inaktiv RAID&lt;/strong&gt;enhet. </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Ingen swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Återanvänd swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (utan viloläge)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (med viloläge)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Använd en fil som växlingsenhet</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Manuell partitionering&lt;/strong&gt;&lt;br/&gt;Du kan själv skapa och ändra storlek partitionerna.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Plats för starthanterare:</translation>
@ -909,12 +909,12 @@ Alla ändringar kommer att gå förlorade.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Kunde inte köra kommandot.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Kommandona använder variabler som inte är definierade. Saknade variabler är: %1.</translation>
</message>
@ -3227,17 +3227,17 @@ Sök på kartan genom att dra
<translation>Installera uppstartshanterare :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Är du säker att du vill skapa en ny partitionstabell %1?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Kan inte skapa ny partition</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Partitionstabellen %1 har redan %2 primära partitioner och inga fler kan läggas till. Var god ta bort en primär partition och lägg till en utökad partition istället.</translation>
</message>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3218,17 +3218,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -687,8 +687,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Танзимоти ҷорӣ:</translation>
@ -700,7 +700,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Баъд аз тағйир:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -717,127 +717,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 то андозаи %2MiB хурдтар мешавад ва қисми диски нав бо андозаи %3MiB барои %4 эҷод карда мешавад.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Қисми дискеро барои насб интихоб намоед&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Қисми диски низомии EFI дар дохили низоми ҷорӣ ёфт нашуд. Лутфан, ба қафо гузаред ва барои танзим кардани %1 аз имкони қисмбандии диск ба таври дастӣ истифода баред.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Қисми диски низомии EFI дар %1 барои оғоз кардани %2 истифода бурда мешавад.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Қисми диски низомии:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Чунин менамояд, ки ин захирагоҳ низоми амалкунандаро дар бар намегирад. Шумо чӣ кор кардан мехоҳед?&lt;br/&gt;Шумо метавонед пеш аз татбиқ кардани тағйирот ба дастгоҳи захирагоҳ интихоби худро аз назар гузаронед ва тасдиқ кунед.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Пок кардани диск&lt;/strong&gt;&lt;br/&gt;Ин амал ҳамаи иттилооти ҷориро дар дастгоҳи захирагоҳи интихобшуда &lt;font color="red"&gt;нест мекунад&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Насбкунии паҳлуӣ&lt;/strong&gt;&lt;br/&gt;Насбкунанда барои %1 фазоро омода карда, қисми дискеро хурдтар мекунад.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Ивазкунии қисми диск&lt;/strong&gt;&lt;br/&gt;Қисми дисекро бо %1 иваз мекунад.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ин захирагоҳ %1-ро дар бар мегирад. Шумо чӣ кор кардан мехоҳед?&lt;br/&gt;Шумо метавонед пеш аз татбиқ кардани тағйирот ба дастгоҳи захирагоҳ интихоби худро аз назар гузаронед ва тасдиқ кунед.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ин захирагоҳ аллакай низоми амалкунандаро дар бар мегирад. Шумо чӣ кор кардан мехоҳед?&lt;br/&gt;Шумо метавонед пеш аз татбиқ кардани тағйирот ба дастгоҳи захирагоҳ интихоби худро аз назар гузаронед ва тасдиқ кунед.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ин захирагоҳ якчанд низоми амалкунандаро дар бар мегирад. Шумо чӣ кор кардан мехоҳед?&lt;br/&gt;Шумо метавонед пеш аз татбиқ кардани тағйирот ба дастгоҳи захирагоҳ интихоби худро аз назар гузаронед ва тасдиқ кунед.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Ин дастгоҳи захирагоҳ аллакай дорои низоми амалкунанда мебошад, аммо ҷадвали қисми диски &lt;strong&gt;%1&lt;/strong&gt; аз диски лозимии &lt;strong&gt;%2&lt;/strong&gt; фарқ мекунад.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Яке аз қисмҳои диски ин дастгоҳи захирагоҳ &lt;strong&gt;васлшуда&lt;/strong&gt; мебошад.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Ин дастгоҳи захирагоҳ қисми дасгоҳи &lt;strong&gt;RAID-и ғайрифаъол&lt;/strong&gt; мебошад.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Мубодила (бе реҷаи Нигаҳдорӣ)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Мубодила (бо реҷаи Нигаҳдорӣ)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Мубодила ба файл</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Қисмбандии диск ба таври дастӣ&lt;/strong&gt;&lt;br/&gt;Шумо худатон метавонед қисмҳои дискро эҷод кунед ё андозаи онҳоро иваз намоед.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -906,12 +906,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Фармон иҷро карда нашуд.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3222,17 +3222,17 @@ The installer will quit and all changes will be lost.</source>
<translation>&amp;Насб кардани боркунандаи роҳандозӣ дар:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Қисми диски нав эҷод карда намешавад</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -684,8 +684,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>:</translation>
@ -697,7 +697,7 @@ The installer will quit and all changes will be lost.</source>
<translation>:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -714,127 +714,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> EFI %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation> EFI %1 %2</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation> EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ?&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;&lt;font color="red"&gt;&lt;/font&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> %1 ?&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ?&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> ?&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -903,12 +903,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3206,17 +3206,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -691,8 +691,8 @@ Kurulum programından çıkılacak ve tüm değişiklikler kaybedilecek.</transl
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Şu anki durum:</translation>
@ -704,7 +704,7 @@ Kurulum programından çıkılacak ve tüm değişiklikler kaybedilecek.</transl
<translation>Sonrası:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>%1 bölümünü %2 için ev bölümü olarak yeniden kullanın</translation>
@ -721,127 +721,127 @@ Kurulum programından çıkılacak ve tüm değişiklikler kaybedilecek.</transl
<translation>%1, %2 MB olarak küçültülecek ve %4 için yeni bir %3 MB bölüm oluşturulacak.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Üzerine kurulum yapılacak bölümü seçin&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Bu sistemde bir EFI sistem bölümü bulunamadı. Lütfen geri gidin ve %1 kurulumu için elle bölümleme gerçekleştirin.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 konumundaki EFI sistem bölümü, %2 yazılımını başlatmak için kullanılacak.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI sistem bölümü:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu depolama aygıtında bir işletim sistemi yok gibi görünüyor. Ne yapmak istersiniz?&lt;br/&gt;Depolama aygıtına yapacağınız herhangi bir değişiklik uygulanmadan önce değişikliklerinizi gözden geçirme ve onaylama şansına sahip olacaksınız.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Diski sil&lt;/strong&gt;&lt;br/&gt;Seçili depolama aygıtında şu anda bulunan tüm veri &lt;font color="red"&gt;silinecektir&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Yanına kur&lt;/strong&gt;&lt;br/&gt;Kurulum programı, %1 için yer açmak üzere bir bölümü küçültecektir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Bölümü başkasıyla değiştir&lt;/strong&gt;&lt;br/&gt;Bir bölümü %1 ile değiştirir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu depolama aygıtında %1 var. Ne yapmak istersiniz?&lt;br/&gt;Depolama aygıtına yapacağınız herhangi bir değişiklik uygulanmadan önce değişikliklerinizi gözden geçirme ve onaylama şansına sahip olacaksınız.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu depolama aygıtında halihazırda bir işletim sistemi var. Ne yapmak istersiniz?&lt;br/&gt;Depolama aygıtına yapacağınız herhangi bir değişiklik uygulanmadan önce değişikliklerinizi gözden geçirme ve onaylama şansına sahip olacaksınız.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu depolama aygıtı üzerinde birden çok işletim sistemi var. Ne yapmak istersiniz?&lt;br/&gt;Depolama aygıtına yapacağınız herhangi bir değişiklik uygulanmadan önce değişikliklerinizi gözden geçirme ve onaylama şansına sahip olacaksınız.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Bu depolama aygıtında halihazırda bir işletim sistemi var; ancak &lt;strong&gt;%1&lt;/strong&gt; bölümleme tablosu, gereken &lt;strong&gt;%2&lt;/strong&gt; tablosundan farklı.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Bu depolama aygıtının bölümlerinden biri &lt;strong&gt;bağlı&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Bu depolama aygıtı, &lt;strong&gt;etkin olmayan bir RAID&lt;/strong&gt; aygıtının parçasıdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Takas alanı yok</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Takas alanını yeniden kullan</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Takas Alanı (Hazırda Bekletme Kullanılamaz)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Takas Alanı (Hazırda Beklet ile)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Dosyaya Takas Yaz</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Elle bölümlendirme&lt;/strong&gt;&lt;br/&gt;Kendiniz bölümler oluşturabilir ve boyutlandırabilirsiniz.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Önyükleyici konumu:</translation>
@ -910,12 +910,12 @@ Kurulum programından çıkılacak ve tüm değişiklikler kaybedilecek.</transl
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Komut çalıştırılamadı.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Komutlar tanımlanmamış değişkenleri kullanıyor. Eksik değişkenler: %1.</translation>
</message>
@ -3227,17 +3227,17 @@ Kurulum sürdürülebilir; ancak bazı özellikler devre dışı bırakılabilir
<translation>Önyükleyiciyi şuraya &amp;kur:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>%1 üzerinde yeni bir bölüm tablosu oluşturmak istiyor musunuz?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Yeni bölüm oluşturulamıyor</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 üzerindeki bölüm tablosu halihazırda %2 birincil bölüme sahip ve artık eklenemiyor. Lütfen bir birincil bölümü kaldırın ve bunun yerine genişletilmiş bir bölüm ekleyin.</translation>
</message>

View File

@ -695,8 +695,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Зараз:</translation>
@ -708,7 +708,7 @@ The installer will quit and all changes will be lost.</source>
<translation>Після:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>Повторно використати %1 як домашній розділ (home) для %2</translation>
@ -725,127 +725,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 буде стиснуто до %2 МіБ. Натомість буде створено розділ розміром %3 МіБ для %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Оберіть розділ, на який встановити&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>В цій системі не знайдено жодного системного розділу EFI. Щоб встановити %1, будь ласка, поверніться та оберіть розподілення вручну.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Системний розділ EFI на %1 буде використано для запуску %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Системний розділ EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Цей пристрій зберігання, схоже, не має жодної операційної системи. Що ви бажаєте зробити?&lt;br/&gt;У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Очистити диск&lt;/strong&gt;&lt;br/&gt;Це &lt;font color="red"&gt;знищить&lt;/font&gt; всі данні, присутні на обраному пристрої зберігання.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Встановити поруч&lt;/strong&gt;&lt;br/&gt;Засіб встановлення зменшить розмір розділу, щоб вивільнити простір для %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Замінити розділ&lt;/strong&gt;&lt;br/&gt;Замінити розділу на %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>На цьому пристрої зберігання є %1. Що ви бажаєте зробити?&lt;br/&gt;У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>На цьому пристрої зберігання вже є операційна система. Що ви бажаєте зробити?&lt;br/&gt;У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>На цьому пристрої зберігання вже є декілька операційних систем. Що ви бажаєте зробити?&lt;br/&gt;У вас буде можливість переглянути та підтвердити все, що ви обрали перед тим, як будуть зроблені будь-які зміни на пристрої зберігання.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>На пристрої для зберігання даних може бути інша операційна система, але його таблиця розділів &lt;strong&gt;%1&lt;/strong&gt; не є потрібною &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>На цьому пристрої для зберігання даних &lt;strong&gt;змонтовано&lt;/strong&gt; один із його розділів.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Цей пристрій для зберігання даних є частиною пристрою &lt;strong&gt;неактивного RAID&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Без резервної пам'яті</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Повторно використати резервну пам'ять</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Резервна пам'ять (без присипляння)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Резервна пам'ять (із присиплянням)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Резервна пам'ять у файлі</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Розподілення вручну&lt;/strong&gt;&lt;br/&gt;Ви можете створити або змінити розмір розділів власноруч.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Розташування завантажувача:</translation>
@ -914,12 +914,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Не вдалося виконати команду.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>У командах використано змінні, які не визначено. Ось пропущені змінні: %1.</translation>
</message>
@ -3249,17 +3249,17 @@ The installer will quit and all changes will be lost.</source>
<translation>Місце вст&amp;ановлення завантажувача:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Не вдалося створити новий розділ</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -685,8 +685,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -698,7 +698,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3216,17 +3216,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -689,8 +689,8 @@ Ornatuvchi tugaydi va barcha ozgarishlar yoqoladi.</translation>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Joriy:</translation>
@ -702,7 +702,7 @@ Ornatuvchi tugaydi va barcha ozgarishlar yoqoladi.</translation>
<translation>Keyin:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>%1 ni %2 uchun uy bolimi sifatida qayta ishlatish</translation>
@ -719,127 +719,127 @@ Ornatuvchi tugaydi va barcha ozgarishlar yoqoladi.</translation>
<translation>%1 %2 MiB ga qisqartiriladi va %4 uchun yangi %3 MiB bolimi yaratiladi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;Ornatish uchun bolimni tanlash&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>EFI tizim bolimini ushbu tizimning biron bir joyida topib bolmadi. Orqaga qayting va %1 ni sozlash uchun qolda bolishdan foydalaning.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 dagi EFI tizim bolimi %2 ni ishga tushirish uchun ishlatiladi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI tizim bolimi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ushbu saqlash qurilmasida operatsion tizim mavjud emasga oxshaydi. Nima qilishni xohlaysiz?&lt;br/&gt;Xotira qurilmasiga har qanday ozgartirish kiritilishidan oldin tanlovlaringizni korib chiqishingiz va tasdiqlashingiz mumkin boladi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;Diskni ochirish&lt;/strong&gt;&lt;br/&gt;Bu tanlangan xotira qurilmasida mavjud bolgan barcha ma'lumotlarni &lt;font color="red"&gt;ochirib tashlaydi&lt;/font&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;Yonida ornating&lt;/strong&gt;&lt;br/&gt;Ornatuvchi %1 uchun joy ochish uchun bolimni qisqartiradi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;Bolimni almashtirish&lt;/strong&gt;&lt;br/&gt;Bolimni %1 bilan almashtiradi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Bu saqlash qurilmasida %1 mavjud. Nima qilishni xohlaysiz?&lt;br/&gt;Saqlash qurilmasiga har qanday ozgartirish kiritilishidan oldin tanlovlaringizni korib chiqishingiz va tasdiqlashingiz mumkin boladi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ushbu saqlash qurilmasida allaqachon operatsion tizim mavjud. Nima qilishni xohlaysiz?&lt;br/&gt;Saqlash qurilmasiga har qanday ozgartirish kiritilishidan oldin tanlovlaringizni korib chiqishingiz va tasdiqlashingiz mumkin boladi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Ushbu saqlash qurilmasida bir nechta operatsion tizim mavjud. Nima qilishni xohlaysiz?&lt;br/&gt;Saqlash qurilmasiga har qanday ozgartirish kiritilishidan oldin tanlovlaringizni korib chiqishingiz va tasdiqlashingiz mumkin boladi.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Bu saqlash qurilmasi allaqachon operatsion tizimga ega, ammo &lt;strong&gt;%1&lt;/strong&gt; bolim jadvali kerakli &lt;strong&gt;%2&lt;/strong&gt;dan farq qiladi.&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Ushbu saqlash qurilmasi ozining bolimlaridan biri &lt;strong&gt;ulangan&lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Ushbu saqlash qurilmasi &lt;strong&gt;faol bolmagan RAID&lt;/strong&gt; qurilmasining bir qismidir.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation>Swap yoq</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>Swap-ni qayta ishlatish</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap (gibernatsiya rejimi yoq)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap (gibernatsiya rejimi bilan)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Faylga swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;Qolda bo'lish&lt;/strong&gt;&lt;br/&gt;Bolimlarni ozingiz yaratishingiz yoki hajmini ozgartirishingiz mumkin.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Yuklovchining joylashuvi:</translation>
@ -908,12 +908,12 @@ Ornatuvchi tugaydi va barcha ozgarishlar yoqoladi.</translation>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Buyruqni ishga tushirib bolmadi.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>Buyruqlar aniqlanmagan ozgaruvchilardan foydalanadi. Yetishmayotgan ozgaruvchilar: %1.</translation>
</message>
@ -3217,17 +3217,17 @@ Ornatuvchi tugaydi va barcha ozgarishlar yoqoladi.</translation>
<translation>Yuklovchi o'rnatish joyi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Haqiqatan ham %1 da yangi bolim jadvali yaratmoqchimisiz?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Yangi bolim yaratib bolmadi</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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 bolim jadvalida allaqachon %2 birlamchi bolim mavjud va boshqasini qoshib bolmaydi. Bitta birlamchi bolimni olib tashlang va orniga kengaytirilgan bolim qoshing.</translation>
</message>

View File

@ -685,8 +685,8 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation>Hiện tại:</translation>
@ -698,7 +698,7 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<translation>Sau:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -715,127 +715,127 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<translation>%1 sẽ đưc thu nhỏ thành %2MiB phân vùng %3MiB mới sẽ đưc tạo cho %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt; Chọn phân vùng đ cài đt &lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation>Không thể tìm thấy phân vùng hệ thống EFI bất kỳ đâu trên hệ thống này. Vui lòng quay lại sử dụng phân vùng thủ công đ thiết lập %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>Phân vùng hệ thống EFI tại %1 sẽ đưc sử dụng đ bắt đu %2.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>Phân vùng hệ thống EFI:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Thiết bị lưu trữ này dường như không hệ điều hành trên đó. Bạn muốn làm ? &lt;br/&gt; Bạn sẽ thể xem xét xác nhận lựa chọn của mình trước khi thực hiện bất kỳ thay đi nào đi với thiết bị lưu trữ.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt; Xóa đĩa &lt;/strong&gt; &lt;br/&gt; Thao tác này sẽ &lt;font color = "red"&gt; xóa &lt;/font&gt; tt c d liu hin có trên thiết b lưu tr đã chn.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt; Cài đt cùng với &lt;/strong&gt; &lt;br/&gt; Trình cài đt sẽ thu nhỏ phân vùng đ nhường chỗ cho %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt; Thay thế phân vùng &lt;/strong&gt; &lt;br/&gt; Thay thế phân vùng bằng %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Thiết bị lưu trữ này %1 trên đó. Bạn muốn làm ? &lt;br/&gt; Bạn sẽ thể xem lại xác nhận lựa chọn của mình trước khi thực hiện bất kỳ thay đi nào đi với thiết bị lưu trữ.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Thiết bị lưu trữ này đã hệ điều hành trên đó. Bạn muốn làm ? &lt;br/&gt; Bạn sẽ thể xem lại xác nhận lựa chọn của mình trước khi thực hiện bất kỳ thay đi nào đi với thiết bị lưu trữ.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>Thiết bị lưu trữ này nhiều hệ điều hành trên đó. Bạn muốn làm ? &lt;br/&gt; Bạn sẽ thể xem lại xác nhận lựa chọn của mình trước khi thực hiện bất kỳ thay đi nào đi với thiết bị lưu trữ.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation>Thiết bị lưu trữ này đã sẵn hệ điều hành, nhưng bảng phân vùng &lt;strong&gt; %1 &lt;/strong&gt; khác vi bng &lt;strong&gt; %2 &lt;/strong&gt; cn thiết. &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>Thiết bị lưu trữ này một trong các phân vùng đưc &lt;strong&gt; gắn kết &lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>Thiết bị lưu trữ này một phần của thiết bị &lt;strong&gt; RAID không hoạt đng &lt;/strong&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Hoán đi (không ngủ đông)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Hoán đi (ngủ đông)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Hoán đi sang tệp</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt; Phân vùng thủ công &lt;/strong&gt; &lt;br/&gt; Bạn thể tự tạo hoặc thay đi kích thước phân vùng.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -904,12 +904,12 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation>Không thể chạy lệnh.</translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3211,17 +3211,17 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
<translation>&amp;Cài đt bộ tải khởi đng trên:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<source>Are you sure you want to create a new partition table on %1?</source>
<translation>Bạn chắc chắn muốn tạo một bảng phân vùng mới trên %1 không?</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation>Không thể tạo phân vùng mới</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>Bảng phân vùng trên %1 đã %2 phân vùng chính không thể thêm đưc nữa. Vui lòng xóa một phân vùng chính thêm một phân vùng mở rộng, thay vào đó.</translation>
</message>

View File

@ -683,8 +683,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -696,7 +696,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -713,127 +713,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -902,12 +902,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3205,17 +3205,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -690,8 +690,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation></translation>
@ -703,7 +703,7 @@ The installer will quit and all changes will be lost.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>使 %1 %2 home </translation>
@ -720,127 +720,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB %4 %3MiB </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> EFI 退使 %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation>%1 EFI %2</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;&lt;font color="red"&gt;&lt;/font&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1 &lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation> &lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation> &lt;strong&gt;RAID&lt;/strong&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation> Swap </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>使 Swap </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>()</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>()</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation>Bootloader</translation>
@ -909,12 +909,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>使: %1</translation>
</message>
@ -3217,17 +3217,17 @@ The installer will quit and all changes will be lost.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>12</translation>
</message>

View File

@ -683,8 +683,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -696,7 +696,7 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -713,127 +713,127 @@ The installer will quit and all changes will be lost.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation type="unfinished"/>
@ -902,12 +902,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation type="unfinished"/>
</message>
@ -3205,17 +3205,17 @@ 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="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -689,8 +689,8 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="138"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1039"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1091"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1144"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1098"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1151"/>
<source>Current:</source>
<comment>@label</comment>
<translation></translation>
@ -702,7 +702,7 @@ The installer will quit and all changes will be lost.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="901"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="897"/>
<source>Reuse %1 as home partition for %2</source>
<comment>@label</comment>
<translation>使 %1 %2 </translation>
@ -719,127 +719,127 @@ The installer will quit and all changes will be lost.</source>
<translation>%1 %2MiB %4 %3MiB </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1135"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1142"/>
<source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
<comment>@label</comment>
<translation>&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1195"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1202"/>
<source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
<comment>@info, %1 is product name</comment>
<translation> EFI 使 %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1204"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1211"/>
<source>The EFI system partition at %1 will be used for starting %2.</source>
<comment>@info, %1 is partition path, %2 is product name</comment>
<translation> %1 EFI %2 使</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1213"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1220"/>
<source>EFI system partition:</source>
<comment>@label</comment>
<translation>EFI </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1342"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1710"/>
<source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1347"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1384"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1405"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1430"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1715"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1742"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1762"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1784"/>
<source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color="red"&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;&lt;font color="red"&gt;&lt;/font&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1351"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1380"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1401"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1426"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1719"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1738"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1758"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1780"/>
<source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1355"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1388"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1409"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1434"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1723"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1746"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1766"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1788"/>
<source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt; %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1374"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1732"/>
<source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation> %1 &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1396"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1753"/>
<source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1775"/>
<source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
<translation>&lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1493"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1421"/>
<source>This storage device already has an operating system on it, but the partition table &lt;strong&gt;%1&lt;/strong&gt; is different from the needed &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; &lt;br/&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1517"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1445"/>
<source>This storage device has one of its partitions &lt;strong&gt;mounted&lt;/strong&gt;.</source>
<comment>@info</comment>
<translation>&lt;strong&gt;&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1522"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1450"/>
<source>This storage device is a part of an &lt;strong&gt;inactive RAID&lt;/strong&gt; device.</source>
<comment>@info</comment>
<translation>&lt;strong&gt; RAID&lt;/strong&gt; </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1640"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1568"/>
<source>No swap</source>
<comment>@label</comment>
<translation> swap </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1649"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1577"/>
<source>Reuse swap</source>
<comment>@label</comment>
<translation>使 swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1652"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1580"/>
<source>Swap (no Hibernate)</source>
<comment>@label</comment>
<translation>Swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1655"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1583"/>
<source>Swap (with Hibernate)</source>
<comment>@label</comment>
<translation>Swap</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1658"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1586"/>
<source>Swap to file</source>
<comment>@label</comment>
<translation>Swap </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1671"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1599"/>
<source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
<translation>&lt;strong&gt;&lt;/strong&gt;&lt;br/&gt;調</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1699"/>
<location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1627"/>
<source>Bootloader location:</source>
<comment>@label</comment>
<translation></translation>
@ -908,12 +908,12 @@ The installer will quit and all changes will be lost.</source>
<context>
<name>CommandList</name>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="184"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="235"/>
<source>Could not run command.</source>
<translation></translation>
</message>
<message>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="185"/>
<location filename="../src/libcalamares/utils/CommandList.cpp" line="236"/>
<source>The commands use variables that are not defined. Missing variables are: %1.</source>
<translation>使%1</translation>
</message>
@ -3215,17 +3215,17 @@ The installer will quit and all changes will be lost.</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="224"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="227"/>
<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="259"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="262"/>
<source>Can not create new partition</source>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="260"/>
<location filename="../src/modules/partition/gui/PartitionPage.cpp" line="263"/>
<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>

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: aboodilankaboot, 2019\n"
"Language-Team: Arabic (https://app.transifex.com/calamares/teams/20061/ar/)\n"
@ -40,49 +40,49 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "فشلت كتابة ملف ضبط LXDM."
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "ملف ضبط LXDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "فشلت كتابة ملف ضبط LightDM."
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "ملف ضبط LightDM {!s} غير موجود"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "فشل ضبط LightDM"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "لم يتم تصيب LightDM"
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "فشلت كتابة ملف ضبط SLIM."
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "ملف ضبط SLIM {!s} غير موجود"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "إعداد مدير العرض لم يكتمل"
@ -113,18 +113,18 @@ msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "خطأ في الضبط"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
@ -150,11 +150,11 @@ msgstr "جاري إعداد ساعة الهاردوير"
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -198,7 +198,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Deep Jyoti Choudhury <deep.choudhury@libresoft.in>, 2020\n"
"Language-Team: Assamese (https://app.transifex.com/calamares/teams/20061/as/)\n"
@ -39,49 +39,49 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "LXDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "LightDM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "LightDM কনফিগাৰ কৰিব নোৱাৰি"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "কোনো LightDM স্ৱাগতকৰ্তা ইন্স্তল নাই।"
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "SLIM কনফিগাৰেচন ফাইলত লিখিব নোৱাৰি"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM কনফিগ্ ফাইল {!s} উপস্থিত নাই"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager মডিউলৰ বাবে কোনো ডিস্প্লে প্ৰবন্ধক নাই।"
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "ডিস্প্লে প্ৰবন্ধক কন্ফিগাৰেচন অসমাপ্ত"
@ -112,18 +112,18 @@ msgid "Writing fstab."
msgstr "fstab লিখি আছে।"
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "কনফিগাৰেচন ত্ৰুটি"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre>ৰ ব্যৱহাৰৰ বাবে কোনো বিভাজনৰ বৰ্ণনা দিয়া হোৱা নাই।"
@ -149,11 +149,11 @@ msgstr "হাৰ্ডৱেৰৰ ঘড়ী চেত্ কৰি আছ
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio কনফিগাৰ কৰি আছে।"
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -197,7 +197,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: enolp <enolp@softastur.org>, 2020\n"
"Language-Team: Asturian (https://app.transifex.com/calamares/teams/20061/ast/)\n"
@ -39,49 +39,49 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de LXDM"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de LXDM {!s}"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de LightDM"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de LightDM {!s}"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "Nun pue configurase LightDM"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "Nun s'instaló nengún saludador de LightDM."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "Nun pue escribise'l ficheru de configuración de SLIM"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "Nun esiste'l ficheru de configuración de SLIM {!s}"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr "Nun s'esbillaron xestores de pantalles pal módulu displaymanager."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "La configuración del xestor de pantalles nun se completó"
@ -112,18 +112,18 @@ msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr ""
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
@ -149,11 +149,11 @@ msgstr "Configurando'l reló de hardware."
msgid "Configuring mkinitcpio."
msgstr "Configurando mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -197,7 +197,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2023\n"
"Language-Team: Azerbaijani (https://app.transifex.com/calamares/teams/20061/az/)\n"
@ -41,43 +41,43 @@ msgstr ""
"Önyükləyici quraşdırıla bilmədi. Quraşdırma əmri <pre>{!s}</pre>, xəta kodu "
"{!s} ilə cavab verdi."
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "LXDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "LightDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "LightDM tənzimlənə bilmir"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "LightDM qarşılama quraşdırılmayıb."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "SLİM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "SLİM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager modulu üçün ekran menecerləri seçilməyib."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -85,7 +85,7 @@ msgstr ""
"Ekran menecerləri siyahısı həm qlobal yaddaşda, həm də displaymanager.conf-"
"da boşdur və ya təyin olunmamışdır."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "Ekran meneceri tənzimləmələri başa çatmadı"
@ -118,18 +118,18 @@ msgid "Writing fstab."
msgstr "fstab yazılır."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Tənzimləmə xətası"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre> istifadə etmək üçün bölmələr təyin edilməyib"
@ -158,11 +158,11 @@ msgstr "Aparat saatını ayarlamaq."
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio tənzimlənir."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr "<pre>initcpiocfg</pre> üçün bölmə müəyyən edilən bölmə yoxdur."
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr "<pre>initcpiocfg</pre> üçün kök (root) qoşulma nöqtəsi yoxdur."
@ -206,7 +206,7 @@ msgstr "Zpool kiliddən çıxarıla bilmədi"
msgid "Failed to set zfs mountpoint"
msgstr "Zfs qoşulma nöqtəsi təyin olunmadı"
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr "zfs qoşulmasında xəta"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2023\n"
"Language-Team: Azerbaijani (Azerbaijan) (https://app.transifex.com/calamares/teams/20061/az_AZ/)\n"
@ -41,43 +41,43 @@ msgstr ""
"Önyükləyici quraşdırıla bilmədi. Quraşdırma əmri <pre>{!s}</pre>, xəta kodu "
"{!s} ilə cavab verdi."
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "LXDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "LightDM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "LightDM tənzimlənə bilmir"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "LightDM qarşılama quraşdırılmayıb."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "SLİM tənzimləmə faylı yazıla bilmir"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "SLİM tənzimləmə faylı {!s} mövcud deyil"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr "displaymanager modulu üçün ekran menecerləri seçilməyib."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -85,7 +85,7 @@ msgstr ""
"Ekran menecerləri siyahısı həm qlobal yaddaşda, həm də displaymanager.conf-"
"da boşdur və ya təyin olunmamışdır."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "Ekran meneceri tənzimləmələri başa çatmadı"
@ -118,18 +118,18 @@ msgid "Writing fstab."
msgstr "fstab yazılır."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Tənzimləmə xətası"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "<pre>{!s}</pre> istifadə etmək üçün bölmələr təyin edilməyib"
@ -158,11 +158,11 @@ msgstr "Aparat saatını ayarlamaq."
msgid "Configuring mkinitcpio."
msgstr "mkinitcpio tənzimlənir."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr "<pre>initcpiocfg</pre> üçün bölmə müəyyən edilən bölmə yoxdur."
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr "<pre>initcpiocfg</pre> üçün kök (root) qoşulma nöqtəsi yoxdur."
@ -206,7 +206,7 @@ msgstr "Zpool kiliddən çıxarıla bilmədi"
msgid "Failed to set zfs mountpoint"
msgstr "Zfs qoşulma nöqtəsi təyin olunmadı"
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr "zfs qoşulmasında xəta"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Źmicier Turok <nashtlumach@gmail.com>, 2022\n"
"Language-Team: Belarusian (https://app.transifex.com/calamares/teams/20061/be/)\n"
@ -42,43 +42,43 @@ msgstr ""
"Не ўдалося ўсталяваць загрузчык. Загад усталявання <pre>{!s}</pre> вярнуў "
"код памылкі {!s}."
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі LXDM"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "Файл канфігурацыі LXDM {!s} не існуе"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі LightDM"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "Файл канфігурацыі LightDM {!s} не існуе"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "Немагчыма наладзіць LightDM"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "LightDM greeter не ўсталяваны."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "Немагчыма запісаць файл канфігурацыі SLIM"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "Файл канфігурацыі SLIM {!s} не існуе"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr "У модулі кіраўнікоў дысплэяў нічога не абрана."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -86,7 +86,7 @@ msgstr ""
"Спіс кіраўнікоў дысплэяў пусты альбо не вызначаны ў both globalstorage і "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "Наладжванне кіраўніка дысплэяў не завершана"
@ -117,18 +117,18 @@ msgid "Writing fstab."
msgstr "Запіс fstab."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Памылка канфігурацыі"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Раздзелы для <pre>{!s}</pre> не вызначаныя."
@ -155,11 +155,11 @@ msgstr "Наладжванне апаратнага гадзінніка."
msgid "Configuring mkinitcpio."
msgstr "Наладжванне mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -203,7 +203,7 @@ msgstr "Не ўдалося разблакаваць zpool"
msgid "Failed to set zfs mountpoint"
msgstr "Не ўдалося вызначыць пункт мантавання zfs"
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr "памылка мантавання zfs"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: mkkDr2010, 2022\n"
"Language-Team: Bulgarian (https://app.transifex.com/calamares/teams/20061/bg/)\n"
@ -42,49 +42,49 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "Конфигурационният файл на LXDM не може да бъде записан"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "Конфигурационният файл на LXDM {!s} не съществува"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "Конфигурационният файл на LightDM не може да бъде записан"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "Конфигурационният файл на LightDM {!s} не съществува"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "Конфигурационният файл на SLIM не може да бъде записан"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "Конфигурационният файл на SLIM {!s} не съществува"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr ""
@ -115,18 +115,18 @@ msgid "Writing fstab."
msgstr "Записване на fstab."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Грешка в конфигурацията"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
@ -152,11 +152,11 @@ msgstr ""
msgid "Configuring mkinitcpio."
msgstr "Конфигуриране на mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -200,7 +200,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: 508a8b0ef95404aa3dc5178f0ccada5e_017b8a4 <d0ef5d977ab7abf012ef53891f8ca2b5_900530>, 2020\n"
"Language-Team: Bengali (https://app.transifex.com/calamares/teams/20061/bn/)\n"
@ -39,49 +39,49 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr ""
@ -112,18 +112,18 @@ msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "কনফিগারেশন ত্রুটি"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "কোন পার্টিশন নির্দিষ্ট করা হয়নি<pre>{!এস}</pre> ব্যবহার করার জন্য।"
@ -149,11 +149,11 @@ msgstr ""
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -197,7 +197,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Language-Team: Luri (Bakhtiari) (https://app.transifex.com/calamares/teams/20061/bqi/)\n"
"MIME-Version: 1.0\n"
@ -35,49 +35,49 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr ""
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr ""
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr ""
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr ""
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
msgstr ""
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr ""
@ -108,18 +108,18 @@ msgid "Writing fstab."
msgstr ""
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr ""
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr ""
@ -145,11 +145,11 @@ msgstr ""
msgid "Configuring mkinitcpio."
msgstr ""
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -193,7 +193,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>, 2023\n"
"Language-Team: Catalan (https://app.transifex.com/calamares/teams/20061/ca/)\n"
@ -43,44 +43,44 @@ msgstr ""
"No s'ha pogut instal·lar el carregador d'arrencada. L'ordre d'instal·lació "
"<pre>{!s}</pre>ha retornat el codi d'error {!s}."
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'LXDM."
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'LXDM {!s} no existeix."
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del LightDM."
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "El fitxer de configuració del LightDM {!s} no existeix."
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "No es pot configurar el LightDM."
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "No hi ha benvinguda instal·lada per al LightDM."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'SLIM."
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'SLIM {!s} no existeix."
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
"No hi ha cap gestor de pantalla seleccionat per al mòdul displaymanager."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -88,7 +88,7 @@ msgstr ""
"La llista de gestors de pantalla és buida o no definida ni a globalstorage "
"ni a displaymanager.conf."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "La configuració del gestor de pantalla no era completa."
@ -121,18 +121,18 @@ msgid "Writing fstab."
msgstr "S'escriu fstab."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Error de configuració"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No s'han definit particions perquè les usi <pre>{!s}</pre>."
@ -160,11 +160,11 @@ msgstr "S'estableix el rellotge del maquinari."
msgid "Configuring mkinitcpio."
msgstr "Es configura mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr "No s'han definit particions per a <pre>initcpiocfg</pre>."
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr "No hi ha punt de muntatge per a <pre>initcpiocfg</pre>."
@ -208,7 +208,7 @@ msgstr "No s'ha pogut desblocar zpool."
msgid "Failed to set zfs mountpoint"
msgstr "No s'ha pogut establir el punt de muntatge de zfs."
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr "error de muntatge de zfs"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Raul <raurodse@gmail.com>, 2021\n"
"Language-Team: Catalan (Valencian) (https://app.transifex.com/calamares/teams/20061/ca@valencia/)\n"
@ -39,44 +39,44 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'LXDM."
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'LXDM {!s} no existeix."
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "No es pot escriure el fitxer de configuració del LightDM."
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "El fitxer de configuració del LightDM {!s} no existeix."
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "No es pot configurar el LightDM."
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "No hi ha benvinguda instal·lada per al LightDM."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "No es pot escriure el fitxer de configuració de l'SLIM."
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "El fitxer de configuració de l'SLIM {!s} no existeix."
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
"No hi ha cap gestor de pantalla seleccionat per al mòdul displaymanager."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -84,7 +84,7 @@ msgstr ""
"La llista de gestors de pantalla està buida o no està definida ni en "
"globalstorage ni en displaymanager.conf."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "La configuració del gestor de pantalla no era completa."
@ -115,18 +115,18 @@ msgid "Writing fstab."
msgstr "Escriptura dfstab."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "S'ha produït un error en la configuració."
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "No s'han definit particions perquè les use <pre>{!s}</pre>."
@ -153,11 +153,11 @@ msgstr "Configuració del rellotge del maquinari."
msgid "Configuring mkinitcpio."
msgstr "S'està configurant mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -201,7 +201,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\n"
"Language-Team: Czech (Czech Republic) (https://app.transifex.com/calamares/teams/20061/cs_CZ/)\n"
@ -45,43 +45,43 @@ msgstr ""
"Zavaděč systému se nepodařilo nainstalovat. Instalační příkaz <pre>{!s} "
"vrátil chybový kód {!s}."
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro LXDM"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro LXDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro LightDM"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro LightDM {!s} neexistuje"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "Nedaří se nastavit LightDM"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "Není nainstalovaný žádný LightDM přivítač"
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "Nedaří se zapsat soubor s nastaveními pro SLIM"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "Soubor s nastaveními pro SLIM {!s} neexistuje"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr "Pro modul správce sezení nejsou vybrány žádní správci sezení."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -89,7 +89,7 @@ msgstr ""
"Seznam správců displejů je prázdný nebo není definován v jak globalstorage, "
"tak v displaymanager.conf."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "Nastavení správce displeje nebylo úplné"
@ -120,18 +120,18 @@ msgid "Writing fstab."
msgstr "Zapisování fstab."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Chyba nastavení"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Pro <pre>{!s}</pre> nejsou zadány žádné oddíly."
@ -159,11 +159,11 @@ msgstr "Nastavování hardwarových hodin."
msgid "Configuring mkinitcpio."
msgstr "Nastavování mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -207,7 +207,7 @@ msgstr "Nepodařilo se odemknout zfs fond"
msgid "Failed to set zfs mountpoint"
msgstr "Nepodařilo se nastavit zfs přípojný bod"
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr "Chyba při připojování zfs"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-01 00:08+0200\n"
"POT-Creation-Date: 2024-07-03 22:44+0200\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: scootergrisen, 2020\n"
"Language-Team: Danish (https://app.transifex.com/calamares/teams/20061/da/)\n"
@ -40,44 +40,44 @@ msgid ""
"<pre>{!s}</pre> returned error code {!s}."
msgstr ""
#: src/modules/displaymanager/main.py:509
#: src/modules/displaymanager/main.py:525
msgid "Cannot write LXDM configuration file"
msgstr "Kan ikke skrive LXDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:510
#: src/modules/displaymanager/main.py:526
msgid "LXDM config file {!s} does not exist"
msgstr "LXDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:598
#: src/modules/displaymanager/main.py:614
msgid "Cannot write LightDM configuration file"
msgstr "Kan ikke skrive LightDM-konfigurationsfil"
#: src/modules/displaymanager/main.py:599
#: src/modules/displaymanager/main.py:615
msgid "LightDM config file {!s} does not exist"
msgstr "LightDM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:684
#: src/modules/displaymanager/main.py:700
msgid "Cannot configure LightDM"
msgstr "Kan ikke konfigurere LightDM"
#: src/modules/displaymanager/main.py:685
#: src/modules/displaymanager/main.py:701
msgid "No LightDM greeter installed."
msgstr "Der er ikke installeret nogen LightDM greeter."
#: src/modules/displaymanager/main.py:716
#: src/modules/displaymanager/main.py:732
msgid "Cannot write SLIM configuration file"
msgstr "Kan ikke skrive SLIM-konfigurationsfil"
#: src/modules/displaymanager/main.py:717
#: src/modules/displaymanager/main.py:733
msgid "SLIM config file {!s} does not exist"
msgstr "SLIM-konfigurationsfil {!s} findes ikke"
#: src/modules/displaymanager/main.py:940
#: src/modules/displaymanager/main.py:956
msgid "No display managers selected for the displaymanager module."
msgstr ""
"Der er ikke valgt nogen displayhåndteringer til displayhåndtering-modulet."
#: src/modules/displaymanager/main.py:941
#: src/modules/displaymanager/main.py:957
msgid ""
"The displaymanagers list is empty or undefined in both globalstorage and "
"displaymanager.conf."
@ -85,7 +85,7 @@ msgstr ""
"Displayhåndteringerlisten er tom eller udefineret i både globalstorage og "
"displaymanager.conf."
#: src/modules/displaymanager/main.py:1028
#: src/modules/displaymanager/main.py:1044
msgid "Display manager configuration was incomplete"
msgstr "Displayhåndtering-konfiguration er ikke komplet"
@ -116,18 +116,18 @@ msgid "Writing fstab."
msgstr "Skriver fstab."
#: src/modules/fstab/main.py:382 src/modules/fstab/main.py:388
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:257
#: src/modules/initcpiocfg/main.py:261 src/modules/initramfscfg/main.py:85
#: src/modules/fstab/main.py:416 src/modules/initcpiocfg/main.py:267
#: src/modules/initcpiocfg/main.py:271 src/modules/initramfscfg/main.py:85
#: src/modules/initramfscfg/main.py:89 src/modules/localecfg/main.py:140
#: src/modules/mount/main.py:344 src/modules/networkcfg/main.py:106
#: src/modules/openrcdmcryptcfg/main.py:72
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:164
#: src/modules/openrcdmcryptcfg/main.py:76 src/modules/rawfs/main.py:165
msgid "Configuration Error"
msgstr "Fejl ved konfiguration"
#: src/modules/fstab/main.py:383 src/modules/initramfscfg/main.py:86
#: src/modules/mount/main.py:345 src/modules/openrcdmcryptcfg/main.py:73
#: src/modules/rawfs/main.py:165
#: src/modules/rawfs/main.py:166
msgid "No partitions are defined for <pre>{!s}</pre> to use."
msgstr "Der er ikke angivet nogle partitioner som <pre>{!s}</pre> kan bruge."
@ -154,11 +154,11 @@ msgstr "Indstiller hardwareur."
msgid "Configuring mkinitcpio."
msgstr "Konfigurerer mkinitcpio."
#: src/modules/initcpiocfg/main.py:258
#: src/modules/initcpiocfg/main.py:268
msgid "No partitions are defined for <pre>initcpiocfg</pre>."
msgstr ""
#: src/modules/initcpiocfg/main.py:262
#: src/modules/initcpiocfg/main.py:272
msgid "No root mount point for <pre>initcpiocfg</pre>."
msgstr ""
@ -202,7 +202,7 @@ msgstr ""
msgid "Failed to set zfs mountpoint"
msgstr ""
#: src/modules/mount/main.py:383
#: src/modules/mount/main.py:386
msgid "zfs mounting error"
msgstr ""

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