Merge branch 'calamares' into work-3.3

This commit is contained in:
Adriaan de Groot 2022-03-21 23:21:54 +01:00
commit 49c56add7d
200 changed files with 1936 additions and 1334 deletions

View File

@ -1,3 +1,4 @@
<!-- SPDX-FileCopyrightText: no
SPDX-License-Identifier: CC0-1.0
-->
@ -7,7 +8,7 @@ contributors are listed. Note that Calamares does not have a historical
changelog -- this log starts with version 3.2.0. The release notes on the
website will have to do for older versions.
# 3.2.52 (unreleased) #
# 3.2.55 (unreleased) #
This release contains contributions from (alphabetically by first name):
- No external contributors yet
@ -19,6 +20,65 @@ This release contains contributions from (alphabetically by first name):
- No module changes yet
# 3.2.54 (2022-03-21) #
This release contains contributions from (alphabetically):
- Bob van der Linden (new contributor! Welcome!)
- El-Wumbus (new contributor! Welcome!)
- Evan James
- Santosh Mahto (new contributor! Welcome!)
## Core ##
- During the installation ("exec") step, while the slideshow is displayed,
there is also a button to show the scrolling installation log as it
is written. (Thanks Bob)
## Modules ##
- *fstab* module correctly handles empty UUID strings. (Thanks Evan)
- *partition* module no longer forgets configured partition-layouts.
It also respects configured partition labels better. (Thanks Santosh)
# 3.2.53 (2022-03-04) #
This release contains contributions from (alphabetically by first name):
- Huang Jia Wen (new contributor! Welcome!)
## Core ##
- Automount-manipulation (to switch off KDE Plasma automounting new devices)
now logs slightly more as it works. Defaults have changed in KDE Plasma
5.24 and it turns out the automount-manipulation does not work well.
Distro's are encouraged to turn off automount in the live ISO (see #1885).
## Modules ##
- *bootloader* now knows about loongarch64 and can install suitable EFI
files for this CPU type. (Thanks Huang Jia Wen)
- Progress reporting for `pacman` from the *packages* module has been switched
off. The progress reporting works under low load, but there are many reports
of it crashing (from XeroLinux and from Evan James, who has been debugging
the issue) during a regular installation with thousands of updates. This
will be revisited in the next release.
- The *umount* module was buggy and did not actually unmount anything.
# 3.2.52 (2022-02-25) #
This release contains contributions from (alphabetically by first name):
- Evan James
## Core ##
- No core changes yet
## Modules ##
- *fstab* recognizes nvme and mmc devices correctly as SSDs now. #1883
- *luksbootkeyfile* handles trailing slashes in mount point
- *partition* can be built with a new `SKIP` option, which skips
the actual formatting steps but does not fail. The old `LAME`
option is renamed `BAIL_OUT`.
- *users* has a new key *sudoersConfigureWithGroup* to allow for
different styles of sudo configuration. #1887
# 3.2.51 (2022-02-01) #
This release contains contributions from (alphabetically by first name):

View File

@ -82,7 +82,7 @@ option(BUILD_KF5Crash "Enable crash reporting with KCrash." ON)
# - DEBUG_FILESYSTEMS does extra logging and checking when looking at
# partition configuration. Lists known KPMCore FS types.
# - DEBUG_PARTITION_UNSAFE (see partition/CMakeLists.txt)
# - DEBUG_PARTITION_LAME (see partition/CMakeLists.txt)
# - DEBUG_PARTITION_BAIL_OUT (see partition/CMakeLists.txt)
### USE_*
#

View File

@ -24,7 +24,7 @@ test -f "$TOPDIR/.clang-format" || { echo "! No .clang-format support files in $
AS=$( which astyle )
# Allow specifying CF_VERSIONS outside already
CF_VERSIONS="$CF_VERSIONS clang-format13 clang-format12 clang-format"
CF_VERSIONS="$CF_VERSIONS clang-format13 clang-format-13 clang-format12 clang-format-12 clang-format"
for _cf in $CF_VERSIONS
do
# Not an error if this particular clang-format isn't found

29
ci/umount.sh Executable file
View File

@ -0,0 +1,29 @@
#! /bin/sh
### LICENSE
# === This file is part of Calamares - <https://calamares.io> ===
#
# SPDX-FileCopyrightText: 2022 Adriaan de Groot <groot@kde.org>
# SPDX-License-Identifier: BSD-2-Clause
#
# This file is Free Software: you can redistribute it and/or modify
# it under the terms of the 2-clause BSD License.
#
### END LICENSE
#
# This is an "unmount" script that tries to unmount whatever
# filesystems Calamares might have left mounted (e.g. because of
# a crash, or ^C'ing the installer, or ..).
#
# Swap may have become enabled on the disks just used; assume
# we're in a live session where we don't want any.
sudo swapoff -a
# In Arch-based systems, there may be a gpg-agent started by
# pacman during installation, which lives in the chroot. Kill
# them all; again assume we're in a live session where it doesn't matter.
sudo pkill gpg-agent
# Unmount the filesystems in *reverse* order, since we need to ditch
# e.g. /run/udev before /run before the root filesystem.
sudo umount $( LC_ALL=C mount | awk '/calamares-root/{print $3}' | LC_ALL=C sort -r )

View File

@ -2938,7 +2938,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3894,12 +3894,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4122,7 +4122,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2896,8 +2896,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation> GPT ি ি | BIOS |&lt;br/&gt;&lt;br/&gt; GPT ি ি ি ( ি ) ি GPTল ি , 8 MBৰ িি | &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation> GPT ি ি | BIOS |&lt;br/&gt;&lt;br/&gt; GPT ি ি ি ( ি ) ি GPTল ি , 8 MBৰ িি | &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3856,12 +3856,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;ি ি ি ি , ি ি &lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;ি ি ি ি , ি ি &lt;/small&gt;</translation>
</message>
@ -4084,7 +4084,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2894,7 +2894,7 @@ L'instalador va colar y van perdese tolos cambeos.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3856,12 +3856,12 @@ Salida:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si va usar l'ordenador más d'una persona, pues crear más cuentes tres la configuración.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si va usar l'ordenador más d'una persona, pues crear más cuentes tres la instalación.&lt;/small&gt;</translation>
</message>
@ -4084,7 +4084,7 @@ Salida:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -1020,7 +1020,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation>&amp;İlkin</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1085,7 +1085,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation>Qoşulma nöqtəsi &lt;tt&gt;/&lt;/tt&gt; ilə başlamalıdır.</translation>
</message>
</context>
<context>
@ -1374,7 +1374,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation>&amp;Tərkibi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1442,7 +1442,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="43"/>
<source>Your system does not seem to support encryption well enough to encrypt the entire system. You may enable encryption, but performance may suffer.</source>
<translation type="unfinished"/>
<translation>Sisteminiz göründüyü kimi bütün sistemin şifrələnməsini lazım olduğu qədər dəstəkləmir. Siz şifrələməni aktiv edə bilərsiniz, lakin bu sistemin işini zəiflədə bilər.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="59"/>
@ -1466,7 +1466,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>Təfərrüatlar:</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1812,17 +1812,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Hədəf sistemi əlçatan deyil.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="101"/>
<source>No configFilePath is set.</source>
<translation type="unfinished"/>
<translation>Tənzimləmə faylı yolu (configFilePath) təyin olunmayıb.</translation>
</message>
</context>
<context>
@ -2901,8 +2901,8 @@ Lütfən bir birinci disk bölümünü çıxarın və əvəzinə genişləndiril
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT bölmə cədvəli bütün sistemlər üçün yaxşıdır. Bu quraşdırıcı BIOS sistemləri üçün belə bir quruluşu dəstəkləyir.&lt;br/&gt;&lt;br/&gt;BİOS-da GPT bölmələr cədvəlini ayarlamaq üçün (əgər bu edilməyibsə) geriyə qayıdın bölmələr cədvəlini GPT- qurun, sonra isə &lt;strong&gt;bios_grub&lt;/strong&gt; bayrağı seçilmiş 8 MB-lıq formatlanmamış bölmə yaradın.&lt;br/&gt;&lt;br/&gt;8 MB-lıq formatlanmamış bölmə GPT ilə BİOS sistemində %1 başlatmaq üçün lazımdır.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT bölmə cədvəli bütün sistemlər üçün yaxşıdır. Bu quraşdırıcı BIOS sistemləri üçün belə bir quruluşu dəstəkləyir.&lt;br/&gt;&lt;br/&gt;BİOS-da GPT bölmələr cədvəlini ayarlamaq üçün (əgər bu edilməyibsə) geriyə qayıdın bölmələr cədvəlini GPT- qurun, sonra isə &lt;strong&gt;%2&lt;/strong&gt; bayrağı seçilmiş 8 MB-lıq formatlanmamış bölmə yaradın.&lt;br/&gt;&lt;br/&gt;8 MB-lıq formatlanmamış bölmə GPT ilə BİOS sistemində %1 başlatmaq üçün lazımdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3852,23 +3852,23 @@ Output:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Hədəf sistemi əlçatan deyil.</translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation>
</message>
</context>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Əgər bu kompyuteri sizdən başqa şəxs istifadə edəcəkdirsə o zaman ayarlandıqdan sonra bir neçə istifadəçi hesabı yarada bilərsiniz.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Əgər bu kompyuteri sizdən başqa şəxs istifadə edəcəkdirsə o zaman quraşdırıldıqdan sonra bir neçə istifadəçi hesabı yarada bilərsiniz.&lt;/small&gt;</translation>
</message>
@ -4077,12 +4077,12 @@ Output:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation>ZFS mənbələri - zpool verilənlər dəsti yaratmaq</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation type="unfinished"/>
<translation>Zpool yaradıla bilmədi</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4091,29 +4091,29 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation type="unfinished"/>
<source>No partitions are available for ZFS.</source>
<translation>ZFS üçün əlçatan bölmələr yoxdur.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation>Daxili məlumatlar çatışmır</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation type="unfinished"/>
<translation>Zpool yaradıla bilmədi</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>
<source>Failed to create dataset</source>
<translation type="unfinished"/>
<translation>Verilənlər dəsti yaradıla bilmədi</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation>Çıxışda:</translation>
</message>
</context>
<context>
@ -4200,17 +4200,18 @@ Output:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation>%1 kompyuterinizə quraşdırıldı.&lt;br/&gt;
Cihazınızı indi yenidən başlada bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
<source>Close</source>
<translation type="unfinished"/>
<translation>Bağlayın</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="71"/>
<source>Restart</source>
<translation type="unfinished"/>
<translation>Yenidən başladın</translation>
</message>
</context>
<context>

View File

@ -1020,7 +1020,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation>&amp;İlkin</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1085,7 +1085,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation>Qoşulma nöqtəsi &lt;tt&gt;/&lt;/tt&gt; ilə başlamalıdır.</translation>
</message>
</context>
<context>
@ -1374,7 +1374,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation>&amp;Tərkibi:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1442,7 +1442,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="43"/>
<source>Your system does not seem to support encryption well enough to encrypt the entire system. You may enable encryption, but performance may suffer.</source>
<translation type="unfinished"/>
<translation>Sisteminiz göründüyü kimi bütün sistemin şifrələnməsini lazım olduğu qədər dəstəkləmir. Siz şifrələməni aktiv edə bilərsiniz, lakin bu sistemin işini zəiflədə bilər.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="59"/>
@ -1466,7 +1466,7 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>Təfərrüatlar:</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1812,17 +1812,17 @@ Bu proqramdan çıxılacaq və bütün dəyişikliklər itiriləcəkdir.</transl
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Hədəf sistemi əlçatan deyil.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="101"/>
<source>No configFilePath is set.</source>
<translation type="unfinished"/>
<translation>Tənzimləmə faylı yolu (configFilePath) təyin olunmayıb.</translation>
</message>
</context>
<context>
@ -2901,8 +2901,8 @@ Lütfən bir birinci disk bölümünü çıxarın və əvəzinə genişləndiril
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT bölmə cədvəli bütün sistemlər üçün yaxşıdır. Bu quraşdırıcı BIOS sistemləri üçün belə bir quruluşu dəstəkləyir.&lt;br/&gt;&lt;br/&gt;BİOS-da GPT bölmələr cədvəlini ayarlamaq üçün (əgər bu edilməyibsə) geriyə qayıdın bölmələr cədvəlini GPT- qurun, sonra isə &lt;strong&gt;bios_grub&lt;/strong&gt; bayrağı seçilmiş 8 MB-lıq formatlanmamış bölmə yaradın.&lt;br/&gt;&lt;br/&gt;8 MB-lıq formatlanmamış bölmə GPT ilə BİOS sistemində %1 başlatmaq üçün lazımdır.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT bölmə cədvəli bütün sistemlər üçün yaxşıdır. Bu quraşdırıcı BIOS sistemləri üçün belə bir quruluşu dəstəkləyir.&lt;br/&gt;&lt;br/&gt;BİOS-da GPT bölmələr cədvəlini ayarlamaq üçün (əgər bu edilməyibsə) geriyə qayıdın bölmələr cədvəlini GPT- qurun, sonra isə &lt;strong&gt;%2&lt;/strong&gt; bayrağı seçilmiş 8 MB-lıq formatlanmamış bölmə yaradın.&lt;br/&gt;&lt;br/&gt;8 MB-lıq formatlanmamış bölmə GPT ilə BİOS sistemində %1 başlatmaq üçün lazımdır.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3852,23 +3852,23 @@ Output:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Hədəf sistemi əlçatan deyil.</translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>Kök qoşulma nöztəsi (rootMountPoint) təyin olunmayıb.</translation>
</message>
</context>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Əgər bu kompyuteri sizdən başqa şəxs istifadə edəcəkdirsə o zaman ayarlandıqdan sonra bir neçə istifadəçi hesabı yarada bilərsiniz.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Əgər bu kompyuteri sizdən başqa şəxs istifadə edəcəkdirsə o zaman quraşdırıldıqdan sonra bir neçə istifadəçi hesabı yarada bilərsiniz.&lt;/small&gt;</translation>
</message>
@ -4077,12 +4077,12 @@ Output:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation>ZFS mənbələri - zpool verilənlər dəsti yaratmaq</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation type="unfinished"/>
<translation>Zpool yaradıla bilmədi</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4091,29 +4091,29 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation type="unfinished"/>
<source>No partitions are available for ZFS.</source>
<translation>ZFS üçün əlçatan bölmələr yoxdur.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation>Daxili məlumatlar çatışmır</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation type="unfinished"/>
<translation>Zpool yaradıla bilmədi</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>
<source>Failed to create dataset</source>
<translation type="unfinished"/>
<translation>Verilənlər dəsti yaradıla bilmədi</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation>Çıxışda:</translation>
</message>
</context>
<context>
@ -4200,17 +4200,18 @@ Output:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation>%1 kompyuterinizə quraşdırıldı.&lt;br/&gt;
Cihazınızı indi yenidən başlada bilərsiniz.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
<source>Close</source>
<translation type="unfinished"/>
<translation>Bağlayın</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="71"/>
<source>Restart</source>
<translation type="unfinished"/>
<translation>Yenidən başladın</translation>
</message>
</context>
<context>

View File

@ -2916,8 +2916,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Табліца раздзелаў GPT - найлепшы варыянт для ўсіх сістэм. Гэтая праграма ўсталёўкі таксама падтрымлівае гэты варыянт і для BIOS.&lt;br/&gt;&lt;br/&gt;Каб наладзіць GPT для BIOS (калі гэта яшчэ не зроблена), вярніцеся назад і абярыце табліцу раздзелаў GPT, пасля стварыце нефарматаваны раздзел памерам 8 МБ са сцягам &lt;strong&gt;bios_grub&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Гэты раздзел патрэбны для запуску %1 у BIOS з GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Табліца раздзелаў GPT - найлепшы варыянт для ўсіх сістэм. Гэтая праграма ўсталёўкі таксама падтрымлівае гэты варыянт і для BIOS.&lt;br/&gt;&lt;br/&gt;Каб наладзіць GPT для BIOS (калі гэта яшчэ не зроблена), вярніцеся назад і абярыце табліцу раздзелаў GPT, пасля стварыце нефарматаваны раздзел памерам 8 МБ са сцягам &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Гэты раздзел патрэбны для запуску %1 у BIOS з GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3878,12 +3878,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Калі кампютарам карыстаецца некалькі чалавек, то вы можаце стварыць для іх акаўнты пасля завяршэння ўсталёўкі.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Калі кампютарам карыстаецца некалькі чалавек, то вы можаце стварыць для іх акаўнты пасля завяршэння ўсталёўкі.&lt;/small&gt;</translation>
</message>
@ -4106,7 +4106,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2894,7 +2894,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3852,12 +3852,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4080,7 +4080,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2893,7 +2893,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3849,12 +3849,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4077,7 +4077,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2900,8 +2900,8 @@ per desplaçar-s'hi i useu els botons +/- per fer ampliar-lo o reduir-lo, o bé
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>La millor opció per a tots els sistemes és una taula de particions GPT. Aquest instal·lador també admet aquesta configuració per a sistemes BIOS.&lt;br/&gt;&lt;br/&gt;Per configurar una taula de particions GPT en un sistema BIOS, (si no s'ha fet ja) torneu enrere i establiu la taula de particions a GPT, després creeu una partició sense formatar de 8 MB amb la bandera &lt;strong&gt;bios_grub&lt;/strong&gt; habilitada.&lt;br/&gt;&lt;br/&gt;Cal una partició sense format de 8 MB per iniciar %1 en un sistema BIOS amb GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>La millor opció per a tots els sistemes és una taula de particions GPT. Aquest instal·lador també admet aquesta configuració per a sistemes BIOS.&lt;br/&gt;&lt;br/&gt;Per configurar una taula de particions GPT en un sistema BIOS, (si no s'ha fet ja) torneu enrere i establiu la taula de particions a GPT, després creeu una partició sense formatar de 8 MB amb la bandera &lt;strong&gt;%2&lt;/strong&gt; habilitada.&lt;br/&gt;&lt;br/&gt;Cal una partició sense format de 8 MB per iniciar %1 en un sistema BIOS amb GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3862,12 +3862,12 @@ La configuració pot continuar, però algunes característiques podrien estar in
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si més d'una persona usarà aquest ordinador, podeu crear diversos comptes després de la configuració.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si més d'una persona usarà aquest ordinador, podeu crear diversos comptes després de la instal·lació.&lt;/small&gt;</translation>
</message>
@ -4081,7 +4081,7 @@ La configuració pot continuar, però algunes característiques podrien estar in
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation>No s'ha pogut crear zpool a</translation>
<translation>No s'ha pogut crear la zpool a</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4090,8 +4090,8 @@ La configuració pot continuar, però algunes característiques podrien estar in
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>No hi ha particions disponibles per a Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>No hi ha particions disponibles per a ZFS.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
@ -4102,7 +4102,7 @@ La configuració pot continuar, però algunes característiques podrien estar in
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation>No s'ha pogut crear zpool.</translation>
<translation>No s'ha pogut crear la zpool.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>

View File

@ -2896,8 +2896,8 @@ per a desplaçar-s'hi i useu els botons +/- per a ampliar-lo o reduir-lo, o bé
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>La millor opció per a tots els sistemes és una taula de particions GPT. Aquest instal·lador també admet aquesta configuració per a sistemes BIOS.&lt;br/&gt;&lt;br/&gt;Per a configurar una taula de particions GPT en un sistema BIOS, (si no s'ha fet ja) torneu arrere i establiu la taula de particions a GPT, després creeu una partició sense formatar de 8 MB amb el marcador &lt;strong&gt;bios_grub&lt;/strong&gt; habilitada.&lt;br/&gt;&lt;br/&gt;Cal una partició sense format de 8 MB per a iniciar %1 en un sistema BIOS amb GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>La millor opció per a tots els sistemes és una taula de particions GPT. Aquest instal·lador també admet aquesta configuració per a sistemes BIOS.&lt;br/&gt;&lt;br/&gt;Per a configurar una taula de particions GPT en un sistema BIOS, (si no s'ha fet ja) torneu arrere i establiu la taula de particions a GPT, després creeu una partició sense formatar de 8 MB amb el marcador &lt;strong&gt;%2&lt;/strong&gt; habilitada.&lt;br/&gt;&lt;br/&gt;Cal una partició sense format de 8 MB per a iniciar %1 en un sistema BIOS amb GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3858,12 +3858,12 @@ La configuració pot continuar, però és possible que algunes característiques
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si hi ha més d'una persona que ha d'usar aquest ordinador, podeu crear diversos comptes després de la configuració.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si hi ha més d'una persona que ha d'usar aquest ordinador, podeu crear diversos comptes després de la instal·lació.&lt;/small&gt;</translation>
</message>
@ -4086,7 +4086,7 @@ La configuració pot continuar, però és possible que algunes característiques
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2922,8 +2922,8 @@ Instalační program bude ukončen a všechny změny ztraceny.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT tabulka oddílů je nejlepší volbou pro všechny systémy. Tento instalátor podporuje takové uspořádání i pro zavádění v režimu BIOS firmware.&lt;br/&gt;&lt;br/&gt;Pro nastavení GPT tabulky oddílů v případě BIOS, (pokud není provedeno) jděte zpět a nastavte tabulku oddílů na, dále vytvořte 8 MB oddíl (bez souborového systému s příznakem &lt;strong&gt;bios_grub&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Tento oddíl je zapotřebí pro spuštění %1 na systému s BIOS firmware/režimem a GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT tabulka oddílů je nejlepší volbou pro všechny systémy. Tento instalátor podporuje takové uspořádání i pro zavádění v režimu BIOS firmware.&lt;br/&gt;&lt;br/&gt;Pro nastavení GPT tabulky oddílů v případě BIOS, (pokud není provedeno) jděte zpět a nastavte tabulku oddílů na, dále vytvořte 8 MB oddíl (bez souborového systému s příznakem &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Tento oddíl je zapotřebí pro spuštění %1 na systému s BIOS firmware/režimem a GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3884,12 +3884,12 @@ Výstup:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Pokud bude tento počítač používat více lidí, můžete přidat uživatelské účty po dokončení instalace.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Pokud bude tento počítač používat více lidí, můžete přidat uživatelské účty po dokončení instalace.&lt;/small&gt;</translation>
</message>
@ -4112,8 +4112,8 @@ Výstup:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Nejsou k dispozici žádné oddíly pro zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>Pro ZFS nejsou k dispozici žádné oddíly.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2896,8 +2896,8 @@ Installationsprogrammet vil stoppe og alle ændringer vil gå tabt.</translation
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>En GPT-partitionstabel er den bedste valgmulighed til alle systemer. Installationsprogrammet understøtter også sådan en opsætning for BIOS-systemer.&lt;br/&gt;&lt;br/&gt;Konfigurer en GPT-partitionstabel BIOS, (hvis det ikke allerede er gjort) ved at tilbage og indstil partitionstabellen til GPT, opret herefter en 8 MB uformateret partition med &lt;strong&gt;bios_grub&lt;/strong&gt;-flaget aktiveret.&lt;br/&gt;&lt;br/&gt;En uformateret 8 MB partition er nødvendig for at starte %1 et BIOS-system med GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>En GPT-partitionstabel er den bedste valgmulighed til alle systemer. Installationsprogrammet understøtter også sådan en opsætning for BIOS-systemer.&lt;br/&gt;&lt;br/&gt;Konfigurer en GPT-partitionstabel BIOS, (hvis det ikke allerede er gjort) ved at tilbage og indstil partitionstabellen til GPT, opret herefter en 8 MB uformateret partition med &lt;strong&gt;%2&lt;/strong&gt;-flaget aktiveret.&lt;br/&gt;&lt;br/&gt;En uformateret 8 MB partition er nødvendig for at starte %1 et BIOS-system med GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3859,12 +3859,12 @@ setting
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Hvis mere end én person bruger computeren, kan du oprette flere konti efter opsætningen.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Hvis mere end én person bruger computeren, kan du oprette flere konti efter installationen.&lt;/small&gt;</translation>
</message>
@ -4087,7 +4087,7 @@ setting
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -1021,7 +1021,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation>Primä&amp;r</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1086,7 +1086,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation>Einhängepunkt muss mit einem &lt;tt&gt;/&lt;/tt&gt;beginnen.</translation>
</message>
</context>
<context>
@ -1375,7 +1375,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation>Inhal&amp;t:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1443,7 +1443,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="43"/>
<source>Your system does not seem to support encryption well enough to encrypt the entire system. You may enable encryption, but performance may suffer.</source>
<translation type="unfinished"/>
<translation>Ihr System scheint Verschlüsselung nicht ausreichend zu unterstützen, um das gesamte System zu verschlüsseln. Sie können diese zwar aktivieren, aber die Leistung des Systems könnte darunter leiden.</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="59"/>
@ -1467,7 +1467,7 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>Details:</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1813,17 +1813,17 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Kein Zielsystem verfügbar.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>Kein rootMountPoint gesetzt.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="101"/>
<source>No configFilePath is set.</source>
<translation type="unfinished"/>
<translation>Kein configFilePath gesetzt.</translation>
</message>
</context>
<context>
@ -2901,8 +2901,8 @@ Dies wird das Installationsprogramm beenden und alle Änderungen gehen verloren.
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Eine GPT-Partitionstabelle ist die beste Option für alle Systeme. Dieses Installationsprogramm unterstützt ein solches Setup auch für BIOS-Systeme.&lt;br/&gt;&lt;br/&gt;Um eine GPT-Partitionstabelle mit BIOS zu konfigurieren, gehen Sie (falls noch nicht geschehen) zurück und setzen Sie die Partitionstabelle auf GPT, als nächstes erstellen Sie eine 8 MB große, unformatierte Partition mit der Markierung &lt;strong&gt;bios_grub&lt;/strong&gt; aktiviert.&lt;br/&gt;&lt;br/&gt;Eine unformatierte 8 MB große Partition ist erforderlich, um %1 auf einem BIOS-System mit GPT zu starten.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Eine GPT-Partitionstabelle ist die beste Option für alle Systeme. Dieses Installationsprogramm unterstützt ein solches Setup auch für BIOS-Systeme.&lt;br/&gt;&lt;br/&gt;Um eine GPT-Partitionstabelle mit BIOS zu konfigurieren, gehen Sie (falls noch nicht geschehen) zurück und setzen Sie die Partitionstabelle auf GPT, als nächstes erstellen Sie eine 8 MB große, unformatierte Partition mit der Markierung &lt;strong&gt;%2&lt;/strong&gt; aktiviert.&lt;br/&gt;&lt;br/&gt;Eine unformatierte 8 MB große Partition ist erforderlich, um %1 auf einem BIOS-System mit GPT zu starten.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3852,23 +3852,23 @@ Ausgabe:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Kein Zielsystem verfügbar.</translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>Kein rootMountPoint gesetzt.</translation>
</message>
</context>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Falls dieser Computer von mehr als einer Person benutzt werden soll, können weitere Benutzerkonten nach der Installation eingerichtet werden.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Falls dieser Computer von mehr als einer Person benutzt werden soll, können weitere Benutzerkonten nach der Installation eingerichtet werden.&lt;/small&gt;</translation>
</message>
@ -4077,12 +4077,12 @@ Ausgabe:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation>ZFS Pools und Datensets erstellen</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation type="unfinished"/>
<translation>Zpool konnte nicht erstellt werden auf</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4091,29 +4091,29 @@ Ausgabe:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation type="unfinished"/>
<source>No partitions are available for ZFS.</source>
<translation>Keine Partitionen für ZFS verfügbar.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation>Interne Daten fehlen</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation type="unfinished"/>
<translation>Zpool konnte nicht erstellt werden</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>
<source>Failed to create dataset</source>
<translation type="unfinished"/>
<translation>Datenset konnte nicht erstellt werden</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation>Die Ausgabe war: </translation>
</message>
</context>
<context>
@ -4202,17 +4202,18 @@ Ausgabe:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation>%1 wurde auf Ihrem Computer installiert.&lt;br/&gt;
Sie können Ihr Gerät nun neu starten.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
<source>Close</source>
<translation type="unfinished"/>
<translation>Schließen</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="71"/>
<source>Restart</source>
<translation type="unfinished"/>
<translation>Neustart</translation>
</message>
</context>
<context>
@ -4289,7 +4290,7 @@ Ausgabe:
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="45"/>
<source>LibreOffice is a powerful and free office suite, used by millions of people around the world. It includes several applications that make it the most versatile Free and Open Source office suite on the market.&lt;br/&gt;
Default option.</source>
<translation>LibreOffice ist eine mächtige und freie Office-Lösung, verwendet von Millionen von Menschen rund um den Globus. Sie enthäIt verschiedene Anwendungen, die LibreOffice zur vielseitigsten Open-Source-Lösung für Office-Anwendungen auf dem Mark machen.&lt;br/&gt;
<translation>LibreOffice ist eine mächtige und freie Office-Lösung, verwendet von Millionen von Menschen rund um den Globus. Sie enthäIt verschiedene Anwendungen, die LibreOffice zur vielseitigsten Open-Source-Lösung für Office-Anwendungen auf dem Markt machen.&lt;br/&gt;
Standard-Option.</translation>
</message>
<message>
@ -4300,7 +4301,7 @@ Ausgabe:
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="108"/>
<source>If you don't want to install an office suite, just select No Office Suite. You can always add one (or more) later on your installed system as the need arrives.</source>
<translation>Wenn Sie keine Office-Suite installieren wollen, wählen Sie einfach Keine Office Suite. Sie können jederzeit eine oder mehrere zu Ihrem installiertem System hinzufügen wenn nötig.</translation>
<translation>Wenn Sie keine Office-Suite installieren wollen, wählen Sie einfach Keine Office Suite. Sie können jederzeit eine oder mehrere zu Ihrem installierten System hinzufügen wenn nötig.</translation>
</message>
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="121"/>

View File

@ -2893,7 +2893,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3849,12 +3849,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4077,7 +4077,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2900,8 +2900,8 @@ The installer will quit and all changes will be lost.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3862,12 +3862,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</translation>
</message>
@ -4090,8 +4090,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>No partitions are available for Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>No partitions are available for ZFS.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2893,7 +2893,7 @@ The installer will quit and all changes will be lost.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3852,12 +3852,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4080,7 +4080,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2861,7 +2861,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2861,7 +2861,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2897,7 +2897,7 @@ La instalilo forlasos kaj ĉiuj ŝanĝoj perdos.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3853,12 +3853,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4081,7 +4081,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

File diff suppressed because it is too large Load Diff

View File

@ -2895,7 +2895,7 @@ El instalador terminará y se perderán todos los cambios.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3855,12 +3855,12 @@ Salida
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si más de una persona usará esta computadora, puede crear múltiples cuentas después de la configuración&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Si más de una persona usará esta computadora, puede crear varias cuentas después de la instalación.&lt;/small&gt;</translation>
</message>
@ -4083,7 +4083,7 @@ Salida
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2861,7 +2861,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2893,7 +2893,7 @@ Paigaldaja sulgub ning kõik muutused kaovad.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3852,12 +3852,12 @@ Väljund:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4080,7 +4080,7 @@ Väljund:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2893,7 +2893,7 @@ Instalatzailea irten egingo da eta aldaketa guztiak galduko dira.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3851,12 +3851,12 @@ Irteera:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4079,7 +4079,7 @@ Irteera:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2898,8 +2898,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>جدول پارتیشن GPT بهترین گزینه برای همه سیستم ها است. این نصب از چنین تنظیماتی برای سیستم های BIOS نیز پشتیبانی می کند. برای پیکربندی جدول پارتیشن GPT در BIOS ، (اگر قبلاً این کار انجام نشده است) برگردید و جدول پارتیشن را روی GPT تنظیم کنید ، سپس یک پارتیشن 8 مگابایتی بدون فرمت با پرچم bios_grub ایجاد کنید. برای راه اندازی٪ 1 سیستم BIOS با GPT ، یک پارتیشن 8 مگابایتی بدون قالب لازم است.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>جدول پارتیشن GPT بهترین گزینه برای همه سیستم ها است. این نصب از چنین تنظیماتی برای سیستم های BIOS نیز پشتیبانی می کند. برای پیکربندی جدول پارتیشن GPT در BIOS ، (اگر قبلاً این کار انجام نشده است) برگردید و جدول پارتیشن را روی GPT تنظیم کنید ، سپس یک پارتیشن 8 مگابایتی بدون فرمت با پرچم %2 ایجاد کنید. برای راه اندازی٪ 1 سیستم BIOS با GPT ، یک پارتیشن 8 مگابایتی بدون قالب لازم است.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3857,12 +3857,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;اگر بیش از یک نفر از این کامپیوتر استفاده می کنند، میتوانید حساب های دیگری بعد نصب ایجاد کنید.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;اگر بیش از یک نفر از این کامپیوتر استفاده می کنند، میتوانید حساب های دیگری بعد نصب ایجاد کنید.&lt;/small&gt;</translation>
</message>
@ -4085,7 +4085,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

File diff suppressed because it is too large Load Diff

View File

@ -2900,8 +2900,8 @@ L'installateur se fermera et les changements seront perdus.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Une table de partition GPT est la meilleure option pour tous les systèmes. Ce programme d'installation prend également en charge une telle configuration pour les systèmes BIOS.&lt;br/&gt;&lt;br/&gt;Pour configurer une table de partition GPT sur le BIOS, (si ce n'est déjà fait) revenez en arrière et définissez la table de partition sur GPT, puis créez une partition non formatée de 8 Mo avec l'indicateur &lt;strong&gt;bios_grub&lt;/strong&gt; activé.&lt;br/&gt;&lt;br/&gt;Une partition de 8 Mo non formatée est nécessaire pour démarrer %1 sur un système BIOS avec GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Une table de partition GPT est la meilleure option pour tous les systèmes. Ce programme d'installation prend également en charge une telle configuration pour les systèmes BIOS.&lt;br/&gt;&lt;br/&gt;Pour configurer une table de partition GPT sur le BIOS, (si ce n'est déjà fait) revenez en arrière et définissez la table de partition sur GPT, puis créez une partition non formatée de 8 Mo avec l'indicateur &lt;strong&gt;%2&lt;/strong&gt; activé.&lt;br/&gt;&lt;br/&gt;Une partition de 8 Mo non formatée est nécessaire pour démarrer %1 sur un système BIOS avec GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3863,12 +3863,12 @@ Sortie
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;si plusieurs personnes utilisent cet ordinateur, vous pourrez créer plusieurs comptes après la configuration.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;si plusieurs personnes utilisent cet ordinateur, vous pourrez créer plusieurs comptes après l'installation.&lt;/small&gt;</translation>
</message>
@ -4091,7 +4091,7 @@ Sortie
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2861,7 +2861,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2896,7 +2896,7 @@ Il program di instalazion al jessarà e dutis lis modifichis a laran pierdudis.<
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>La miôr opzion par ducj i sistemis e je une tabele des partizions GPT. Il program di instalazion al supuarte ancje chest gjenar di configurazion pai sistemis BIOS.&lt;br/&gt;&lt;br/&gt;Par configurâ une tabele des partizions GPT su BIOS, (se nol è za stât fat) torne indaûr e met a GPT la tabele des partizions, dopo cree une partizion no formatade di 8MB cu la opzion &lt;strong&gt;bios_grup&lt;/strong&gt; abilitade. &lt;br/&gt;&lt;br/&gt;Une partizion no formatade di 8MB e je necessarie par inviâ %1 su sistemsi BIOS cun GPT.</translation>
</message>
<message>
@ -3858,12 +3858,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se chest computer al vignarà doprât di plui di une persone, si pues creâ plui accounts dopo completade la configurazion.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se chest computer al vignarà doprât di plui di une persone, si pues creâ plui accounts dopo completade la instalazion.&lt;/small&gt;</translation>
</message>
@ -4086,7 +4086,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2894,7 +2894,7 @@ O instalador pecharase e perderanse todos os cambios.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3853,12 +3853,12 @@ Saída:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4081,7 +4081,7 @@ Saída:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2922,8 +2922,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>טבלת מחיצות מסוג GPT היא האפשרות הטובה ביותר בכל המערכות. תכנית התקנה זו תומכת גם במערכות מסוג BIOS.&lt;br/&gt;&lt;br/&gt;כדי להגדיר טבלת מחיצות מסוג GPT על גבי BIOS, (אם זה טרם בוצע) יש לחזור ולהגדיר את טבלת המחיצות ל־GPT, לאחר מכן יש ליצור מחיצה של 8 מ״ב ללא פירמוט עם הדגלון &lt;strong&gt;bios_grub&lt;/strong&gt; פעיל.&lt;br/&gt;&lt;br/&gt;מחיצה בלתי מפורמטת בגודל 8 מ״ב נחוצה לטובת הפעלת %1 על מערכת מסוג BIOS עם GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>טבלת מחיצות מסוג GPT היא האפשרות הטובה ביותר בכל המערכות. תכנית התקנה זו תומכת גם במערכות מסוג BIOS.&lt;br/&gt;&lt;br/&gt;כדי להגדיר טבלת מחיצות מסוג GPT על גבי BIOS, (אם זה טרם בוצע) יש לחזור ולהגדיר את טבלת המחיצות ל־GPT, לאחר מכן יש ליצור מחיצה של 8 מ״ב ללא פירמוט עם הדגלון &lt;strong&gt;%2&lt;/strong&gt; פעיל.&lt;br/&gt;&lt;br/&gt;מחיצה בלתי מפורמטת בגודל 8 מ״ב נחוצה לטובת הפעלת %1 על מערכת מסוג BIOS עם GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3884,12 +3884,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;אם מחשב זה מיועד לשימוש לטובת למעלה ממשתמש אחד, ניתן ליצור מגוון חשבונות לאחר ההתקנה.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;אם מחשב זה מיועד לשימוש לטובת למעלה ממשתמש אחד, ניתן ליצור מגוון חשבונות לאחר ההתקנה.&lt;/small&gt;</translation>
</message>
@ -4112,8 +4112,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>אין מחיצות זמינות ל־Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>אין מחיצות זמינות ל־ZFS.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -1020,7 +1020,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation> (&amp;y)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1085,7 +1085,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation> &lt;tt&gt;/&lt;/tt&gt; </translation>
</message>
</context>
<context>
@ -1374,7 +1374,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation> (&amp;t):</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1442,7 +1442,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="43"/>
<source>Your system does not seem to support encryption well enough to encrypt the entire system. You may enable encryption, but performance may suffer.</source>
<translation type="unfinished"/>
<translation> ि ि ि ि ि ि ि ि </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="59"/>
@ -1466,7 +1466,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>ि :</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1807,22 +1807,22 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="36"/>
<source>Configuring encrypted swap.</source>
<translation>ि ि </translation>
<translation>ि ि </translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>ि ि </translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>rootMountPoint िि </translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="101"/>
<source>No configFilePath is set.</source>
<translation type="unfinished"/>
<translation>configFilePath िि </translation>
</message>
</context>
<context>
@ -2900,8 +2900,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT ि ि ि ि BIOS ि &lt;br/&gt;&lt;br/&gt;BIOS GPT ि ि ि , ( ) ि ि GPT , ि 8 MB ि ि ि &lt;strong&gt;bios_grub&lt;/strong&gt; का flag हो।&lt;br/&gt;&lt;br/&gt; ि 8 MB ि %1 BIOS ि GPT ि </translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT ि ि ि ि BIOS ि &lt;br/&gt;&lt;br/&gt;BIOS GPT ि ि ि , ( ) ि ि GPT , ि 8 MB ि ि ि &lt;strong&gt;%2&lt;/strong&gt; का flag हो।&lt;br/&gt;&lt;br/&gt; ि 8 MB ि %1 BIOS ि GPT ि </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3851,23 +3851,23 @@ Output:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>ि ि </translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation>rootMountPoint िि </translation>
</message>
</context>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;ि ि ि , ि &lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;ि ि ि , ि &lt;/small&gt;</translation>
</message>
@ -4076,12 +4076,12 @@ Output:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation>ZFS </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation type="unfinished"/>
<translation> zpool ि</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4090,29 +4090,29 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation>ि </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation type="unfinished"/>
<translation>zpool ि</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>
<source>Failed to create dataset</source>
<translation type="unfinished"/>
<translation> ि</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation> :</translation>
</message>
</context>
<context>
@ -4201,17 +4201,18 @@ Output:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation> %1 &lt;br/&gt;
</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
<source>Close</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="71"/>
<source>Restart</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
</context>
<context>

View File

@ -2861,7 +2861,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2911,8 +2911,8 @@ te korištenjem tipki +/- ili skrolanjem miša za zumiranje.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT tablica particija je najbolja opcija za sve sustave. Ovaj instalacijski program podržava takvo postavljanje i za BIOS sustave. &lt;br/&gt;&lt;br/&gt;Da biste konfigurirali GPT particijsku tablicu za BIOS sustave, (ako to već nije učinjeno) vratite se natrag i postavite particijsku tablicu na GPT, a zatim stvorite neformatiranu particiju od 8 MB s omogućenom oznakom &lt;strong&gt;bios_grub&lt;/strong&gt;. &lt;br/&gt;&lt;br/&gt;Neformirana particija od 8 MB potrebna je za pokretanje %1 na BIOS sustavu s GPT-om.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT tablica particija je najbolja opcija za sve sustave. Ovaj instalacijski program podržava takvo postavljanje i za BIOS sustave. &lt;br/&gt;&lt;br/&gt;Da biste konfigurirali GPT particijsku tablicu za BIOS sustave, (ako to već nije učinjeno) vratite se natrag i postavite particijsku tablicu na GPT, a zatim stvorite neformatiranu particiju od 8 MB s omogućenom oznakom &lt;strong&gt;%2&lt;/strong&gt;. &lt;br/&gt;&lt;br/&gt;Neformirana particija od 8 MB potrebna je za pokretanje %1 na BIOS sustavu s GPT-om.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3873,12 +3873,12 @@ Postavljanje se može nastaviti, ali neke će značajke možda biti onemogućene
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Ako će više osoba koristiti ovo računalo, možete postaviti više korisničkih računa poslije instalacije.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Ako će više osoba koristiti ovo računalo, možete postaviti više korisničkih računa poslije instalacije.&lt;/small&gt;</translation>
</message>
@ -4101,7 +4101,7 @@ Postavljanje se može nastaviti, ali neke će značajke možda biti onemogućene
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation>Nisu dostupne particije za ZFS.</translation>
</message>
<message>

View File

@ -2895,7 +2895,7 @@ Telepítés nem folytatható. &lt;a href="#details"&gt;Részletek...&lt;/a&gt;</
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3855,12 +3855,12 @@ Calamares hiba %1.</translation>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Ha egynél több személy használja a számítógépet akkor létrehozhat több felhasználói fiókot telepítés után.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Ha egynél több személy használja a számítógépet akkor létrehozhat több felhasználói fiókot telepítés után.&lt;/small&gt;</translation>
</message>
@ -4083,7 +4083,7 @@ Calamares hiba %1.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2883,7 +2883,7 @@ Instalasi dapat dilanjutkan, namun beberapa fitur akan dinonfungsikan.</translat
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3842,12 +3842,12 @@ Keluaran:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4070,7 +4070,7 @@ Keluaran:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2850,7 +2850,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2893,7 +2893,7 @@ Uppsetningarforritið mun hætta og allar breytingar tapast.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3849,12 +3849,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4077,7 +4077,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -6,7 +6,7 @@
<message>
<location filename="../src/modules/partition/jobs/AutoMountManagementJob.cpp" line="22"/>
<source>Manage auto-mount settings</source>
<translation type="unfinished"/>
<translation>Gestisci le impostazioni di mount automatico</translation>
</message>
</context>
<context>
@ -109,17 +109,17 @@
<message>
<location filename="../src/calamares/DebugWindow.ui" line="115"/>
<source>Reloads the stylesheet from the branding directory.</source>
<translation type="unfinished"/>
<translation>Ricarica il foglio di stile dalla cartella del marchio.</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="141"/>
<source>Uploads the session log to the configured pastebin.</source>
<translation type="unfinished"/>
<translation>Carica i registri di sessione nel pastebin configurato.</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="144"/>
<source>Send Session Log</source>
<translation type="unfinished"/>
<translation>Invia registro di sessione</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="118"/>
@ -498,7 +498,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="32"/>
<source>Set filesystem label on %1.</source>
<translation type="unfinished"/>
<translation>Imposta l'etichetta del filesystem a %1.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
@ -679,12 +679,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="272"/>
<source>Successfully unmounted %1.</source>
<translation type="unfinished"/>
<translation>%1 smontata correttamente.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="279"/>
<source>Successfully disabled swap %1.</source>
<translation type="unfinished"/>
<translation>Swap %1 disabilitata correttamente.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="305"/>
@ -769,7 +769,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/locale/Config.cpp" line="353"/>
<source>Set timezone to %1/%2.</source>
<translation type="unfinished"/>
<translation>Imposta fuso orario a %1/%2.</translation>
</message>
<message>
<location filename="../src/modules/locale/Config.cpp" line="391"/>
@ -794,12 +794,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="57"/>
<source>Network Installation. (Disabled: Internal error)</source>
<translation type="unfinished"/>
<translation>Installazione di rete (disabilitata: errore interno)</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="61"/>
<source>Network Installation. (Disabled: No package list)</source>
<translation type="unfinished"/>
<translation>Installazione di rete (disabilitata: nessun elenco di pacchetti)</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="77"/>
@ -864,7 +864,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/users/Config.cpp" line="223"/>
<source>'%1' is not allowed as username.</source>
<translation type="unfinished"/>
<translation>'%1' non è consentito come nome utente.</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="230"/>
@ -889,7 +889,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/users/Config.cpp" line="289"/>
<source>'%1' is not allowed as hostname.</source>
<translation type="unfinished"/>
<translation>'%1' non è consentito come nome host.</translation>
</message>
<message>
<location filename="../src/modules/users/Config.cpp" line="295"/>
@ -904,7 +904,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/users/Config.cpp" line="548"/>
<source>OK!</source>
<translation type="unfinished"/>
<translation>OK!</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -919,12 +919,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/finished/Config.cpp" line="147"/>
<source>The setup of %1 did not complete successfully.</source>
<translation type="unfinished"/>
<translation>La configurazione di %1 non è stata completata correttamente.</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="148"/>
<source>The installation of %1 did not complete successfully.</source>
<translation type="unfinished"/>
<translation>L'installazione di %1 non è stata completata correttamente.</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="152"/>
@ -959,12 +959,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="243"/>
<source>Install option: &lt;strong&gt;%1&lt;/strong&gt;</source>
<translation type="unfinished"/>
<translation>Opzione di installazione: &lt;strong&gt;%1&lt;/strong&gt;</translation>
</message>
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="243"/>
<source>None</source>
<translation type="unfinished"/>
<translation>Nessuno</translation>
</message>
<message>
<location filename="../src/modules/summary/Config.cpp" line="94"/>
@ -1015,7 +1015,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation>Primar&amp;ia</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1045,12 +1045,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="224"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Etichetta per il filesystem</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="234"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>Etichetta FS:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="66"/>
@ -1080,7 +1080,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation>Il punto di mount deve iniziare con un &lt;tt&gt;/&lt;/tt&gt;.</translation>
</message>
</context>
<context>
@ -1088,12 +1088,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="187"/>
<source>Create new %1MiB partition on %3 (%2) with entries %4.</source>
<translation type="unfinished"/>
<translation>Crea nuova partizione di %1MiB su %3 (%2) con voci %4.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="195"/>
<source>Create new %1MiB partition on %3 (%2).</source>
<translation type="unfinished"/>
<translation>Crea nuova partizione di %1MiB su %3 (%2).</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="202"/>
@ -1103,12 +1103,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="219"/>
<source>Create new &lt;strong&gt;%1MiB&lt;/strong&gt; partition on &lt;strong&gt;%3&lt;/strong&gt; (%2) with entries &lt;em&gt;%4&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>Crea nuova partizione di &lt;strong&gt;%1MiB&lt;/strong&gt; su &lt;strong&gt;%3&lt;/strong&gt; (%2) con voci &lt;em&gt;%4&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="228"/>
<source>Create new &lt;strong&gt;%1MiB&lt;/strong&gt; partition on &lt;strong&gt;%3&lt;/strong&gt; (%2).</source>
<translation type="unfinished"/>
<translation>Creare nuova partizione di &lt;strong&gt;%1MiB&lt;/strong&gt; su &lt;strong&gt;%3&lt;/strong&gt; (%2).</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="235"/>
@ -1199,17 +1199,17 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<location filename="../src/modules/users/CreateUserJob.cpp" line="49"/>
<location filename="../src/modules/users/CreateUserJob.cpp" line="142"/>
<source>Creating user %1</source>
<translation type="unfinished"/>
<translation>Creazione utente %1.</translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="150"/>
<source>Configuring user %1</source>
<translation type="unfinished"/>
<translation>Configurazione utente %1</translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="158"/>
<source>Setting file permissions</source>
<translation type="unfinished"/>
<translation>Impostazione permessi file</translation>
</message>
</context>
<context>
@ -1369,7 +1369,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation>Con&amp;tenuto:</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1414,12 +1414,12 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="179"/>
<source>Label for the filesystem</source>
<translation type="unfinished"/>
<translation>Etichetta per il filesystem</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="189"/>
<source>FS Label:</source>
<translation type="unfinished"/>
<translation>Etichetta FS:</translation>
</message>
</context>
<context>
@ -1461,7 +1461,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>Dettagli:</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1963,7 +1963,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/libcalamares/locale/Tests.cpp" line="273"/>
<source>Quit</source>
<translation type="unfinished"/>
<translation>Esci</translation>
</message>
</context>
<context>
@ -2202,7 +2202,7 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
<message>
<location filename="../src/modules/localeq/Offline.qml" line="186"/>
<source>Zones</source>
<translation type="unfinished"/>
<translation>Zone</translation>
</message>
<message>
<location filename="../src/modules/localeq/Offline.qml" line="233"/>
@ -2893,8 +2893,8 @@ Il programma d'installazione sarà terminato e tutte le modifiche andranno perse
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Una tabella partizioni GPT è la migliore opzione per tutti i sistemi. Comunque il programma d'installazione supporta anche la tabella di tipo BIOS. &lt;br/&gt;&lt;br/&gt;Per configurare una tabella partizioni GPT su BIOS (se non già configurata) tornare indietro e impostare la tabella partizioni a GPT e creare una partizione non formattata di 8 MB con opzione &lt;strong&gt;bios_grub&lt;/strong&gt; abilitata.&lt;br/&gt;&lt;br/&gt;Una partizione non formattata di 8 MB è necessaria per avviare %1 su un sistema BIOS con GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Una tabella partizioni GPT è la migliore opzione per tutti i sistemi. Comunque il programma d'installazione supporta anche la tabella di tipo BIOS. &lt;br/&gt;&lt;br/&gt;Per configurare una tabella partizioni GPT su BIOS (se non già configurata) tornare indietro e impostare la tabella partizioni a GPT e creare una partizione non formattata di 8 MB con opzione &lt;strong&gt;%2&lt;/strong&gt; abilitata.&lt;br/&gt;&lt;br/&gt;Una partizione non formattata di 8 MB è necessaria per avviare %1 su un sistema BIOS con GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3852,12 +3852,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se più di una persona utilizzerà questo computer, puoi creare ulteriori account dopo la configurazione.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se più di una persona utilizzerà questo computer, puoi creare ulteriori account dopo l'installazione.&lt;/small&gt;</translation>
</message>
@ -4080,7 +4080,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2881,7 +2881,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3837,12 +3837,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4065,7 +4065,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2891,8 +2891,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT BIOS &lt;br/&gt;&lt;br/&gt;BIOS GPT GPT &lt;strong&gt;bios_grub&lt;/strong&gt; 8 MB GPT BIOS %1 8 MB </translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT BIOS &lt;br/&gt;&lt;br/&gt;BIOS GPT GPT &lt;strong&gt;%2&lt;/strong&gt; 8 MB GPT BIOS %1 8 MB </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3853,12 +3853,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;使&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;使&lt;/small&gt;</translation>
</message>
@ -4081,8 +4081,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Zfs 使</translation>
<source>No partitions are available for ZFS.</source>
<translation>ZFS 使</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -104,7 +104,7 @@
<message>
<location filename="../src/calamares/DebugWindow.ui" line="102"/>
<source>Crashes Calamares, so that Dr. Konqui can look at it.</source>
<translation>Dr. Konqui , Calamares를 .</translation>
<translation>Dr. Konqui Calamares를 .</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="115"/>
@ -129,7 +129,7 @@
<message>
<location filename="../src/calamares/DebugWindow.ui" line="128"/>
<source>Displays the tree of widget names in the log (for stylesheet debugging).</source>
<translation> ( ).</translation>
<translation> ( ).</translation>
</message>
<message>
<location filename="../src/calamares/DebugWindow.ui" line="131"/>
@ -329,7 +329,7 @@
%1
Link copied to clipboard</source>
<translation> .
<translation> .
%1
@ -506,12 +506,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="39"/>
<source>Set filesystem label &lt;strong&gt;%1&lt;/strong&gt; to partition &lt;strong&gt;%2&lt;/strong&gt;.</source>
<translation>&lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; .</translation>
<translation>&lt;strong&gt;%1&lt;/strong&gt; &lt;strong&gt;%2&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ChangeFilesystemLabelJob.cpp" line="70"/>
<source>The installer failed to update partition table on disk '%1'.</source>
<translation> '%1' .</translation>
<translation> '%1' .</translation>
</message>
</context>
<context>
@ -682,27 +682,27 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="272"/>
<source>Successfully unmounted %1.</source>
<translation>%1() .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="279"/>
<source>Successfully disabled swap %1.</source>
<translation>% 1() .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="305"/>
<source>Successfully cleared swap %1.</source>
<translation> %1() .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="319"/>
<source>Successfully closed mapper device %1.</source>
<translation> %1() .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="332"/>
<source>Successfully disabled volume group %1.</source>
<translation> %1() .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="371"/>
@ -797,12 +797,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="57"/>
<source>Network Installation. (Disabled: Internal error)</source>
<translation> . (사용안함: 내부 )</translation>
<translation> . (비활성화됨: 내부 )</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="61"/>
<source>Network Installation. (Disabled: No package list)</source>
<translation> . (사용안함: 패키지 )</translation>
<translation> . (비활성화됨: 패키지 )</translation>
</message>
<message>
<location filename="../src/modules/netinstall/Config.cpp" line="77"/>
@ -912,7 +912,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
<source>Setup Failed</source>
<translation> </translation>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="145"/>
@ -932,7 +932,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/Config.cpp" line="152"/>
<source>Setup Complete</source>
<translation> </translation>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="153"/>
@ -942,12 +942,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/finished/Config.cpp" line="154"/>
<source>The setup of %1 is complete.</source>
<translation>%1 .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/finished/Config.cpp" line="155"/>
<source>The installation of %1 is complete.</source>
<translation>%1 .</translation>
<translation>%1 .</translation>
</message>
<message>
<location filename="../src/modules/packagechooser/Config.cpp" line="111"/>
@ -977,7 +977,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/summary/Config.cpp" line="98"/>
<source>This is an overview of what will happen once you start the setup procedure.</source>
<translation> .</translation>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/summary/Config.cpp" line="103"/>
@ -1018,7 +1018,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation>(&amp;Y)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1048,12 +1048,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="224"/>
<source>Label for the filesystem</source>
<translation> </translation>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="234"/>
<source>FS Label:</source>
<translation>FS :</translation>
<translation> :</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="66"/>
@ -1083,7 +1083,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation> &lt;tt&gt;/&lt;/tt&gt; .</translation>
</message>
</context>
<context>
@ -1091,12 +1091,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="187"/>
<source>Create new %1MiB partition on %3 (%2) with entries %4.</source>
<translation>%4 %3(%2) %1MiB .</translation>
<translation>%4 %3(%2) %1MiB .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="195"/>
<source>Create new %1MiB partition on %3 (%2).</source>
<translation>%3(%2) %1MiB .</translation>
<translation>%3(%2) %1MiB .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="202"/>
@ -1106,12 +1106,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="219"/>
<source>Create new &lt;strong&gt;%1MiB&lt;/strong&gt; partition on &lt;strong&gt;%3&lt;/strong&gt; (%2) with entries &lt;em&gt;%4&lt;/em&gt;.</source>
<translation>&lt;em&gt;%4&lt;/em&gt; &lt;strong&gt;%3&lt;/strong&gt;(%2) &lt;strong&gt;%1MiB&lt;/strong&gt; .</translation>
<translation>&lt;em&gt;%4&lt;/em&gt; &lt;strong&gt;%3&lt;/strong&gt;(%2) &lt;strong&gt;%1MiB&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="228"/>
<source>Create new &lt;strong&gt;%1MiB&lt;/strong&gt; partition on &lt;strong&gt;%3&lt;/strong&gt; (%2).</source>
<translation>&lt;strong&gt;%3&lt;/strong&gt;(%2) &lt;strong&gt;%1MiB&lt;/strong&gt; .</translation>
<translation>&lt;strong&gt;%3&lt;/strong&gt;(%2) &lt;strong&gt;%1MiB&lt;/strong&gt; .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="235"/>
@ -1202,12 +1202,12 @@ The installer will quit and all changes will be lost.</source>
<location filename="../src/modules/users/CreateUserJob.cpp" line="49"/>
<location filename="../src/modules/users/CreateUserJob.cpp" line="142"/>
<source>Creating user %1</source>
<translation>%1. </translation>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="150"/>
<source>Configuring user %1</source>
<translation>%1 </translation>
<translation>%1 </translation>
</message>
<message>
<location filename="../src/modules/users/CreateUserJob.cpp" line="158"/>
@ -1372,7 +1372,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation>(&amp;t):</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1417,12 +1417,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="179"/>
<source>Label for the filesystem</source>
<translation> </translation>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="189"/>
<source>FS Label:</source>
<translation>FS :</translation>
<translation> :</translation>
</message>
</context>
<context>
@ -1440,7 +1440,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="43"/>
<source>Your system does not seem to support encryption well enough to encrypt the entire system. You may enable encryption, but performance may suffer.</source>
<translation type="unfinished"/>
<translation> . .</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="59"/>
@ -1464,7 +1464,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>:</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1492,12 +1492,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="218"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt; and features &lt;em&gt;%3&lt;/em&gt;.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;em&gt;%3&lt;/em&gt;() &lt;strong&gt;&lt;/strong&gt; %2 .</translation>
<translation> &lt;strong&gt;%1&lt;/strong&gt; &lt;em&gt;%3&lt;/em&gt;() &lt;strong&gt;&lt;/strong&gt; %2 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="226"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;%3.</source>
<translation> &lt;strong&gt;%1&lt;/strong&gt;%3() &lt;strong&gt;&lt;/strong&gt; %2 .</translation>
<translation> &lt;strong&gt;%1&lt;/strong&gt;%3() &lt;strong&gt;&lt;/strong&gt; %2 .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="240"/>
@ -1507,12 +1507,12 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="259"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt; and features &lt;em&gt;%4&lt;/em&gt;.</source>
<translation> &lt;strong&gt;%2&lt;/strong&gt; &lt;em&gt;%4&lt;/em&gt;() %3 &lt;strong&gt;%1&lt;/strong&gt;() .</translation>
<translation> &lt;strong&gt;%2&lt;/strong&gt; &lt;em&gt;%4&lt;/em&gt;() %3 &lt;strong&gt;%1&lt;/strong&gt;() .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="268"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;%4.</source>
<translation> &lt;strong&gt;%2&lt;/strong&gt;%4 %3 &lt;strong&gt;%1&lt;/strong&gt;() .</translation>
<translation> &lt;strong&gt;%2&lt;/strong&gt;%4 %3 &lt;strong&gt;%1&lt;/strong&gt;() .</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="249"/>
@ -1810,17 +1810,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="101"/>
<source>No configFilePath is set.</source>
<translation type="unfinished"/>
<translation> .</translation>
</message>
</context>
<context>
@ -2889,8 +2889,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT . BIOS .&lt;br/&gt;&lt;br/&gt;BIOS에서 GPT ( ) GPT로 , &lt;strong&gt;bios_grub&lt;/strong&gt; 플래그가 사용하도록 설정된 8MB의 포맷되지 않은 파티션을 생성합니다.&lt;br/&gt;&lt;br/&gt;GPT가 BIOS %1 8MB .</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT . BIOS .&lt;br/&gt;&lt;br/&gt;BIOS에서 GPT ( ) GPT로 , &lt;strong&gt;%2&lt;/strong&gt; 플래그가 사용하도록 설정된 8MB의 포맷되지 않은 파티션을 생성합니다.&lt;br/&gt;&lt;br/&gt;GPT가 BIOS %1 8MB .</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3650,7 +3650,7 @@ Output:
<message>
<location filename="../src/modules/users/MiscJobs.cpp" line="60"/>
<source>Cannot create sudoers file for writing.</source>
<translation>sudoers .</translation>
<translation>sudoers .</translation>
</message>
</context>
<context>
@ -3675,7 +3675,7 @@ Output:
<message>
<location filename="../src/libcalamaresui/widgets/TranslationFix.cpp" line="23"/>
<source>&amp;OK</source>
<translation> (&amp;O)</translation>
<translation>(&amp;O)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/TranslationFix.cpp" line="24"/>
@ -3690,7 +3690,7 @@ Output:
<message>
<location filename="../src/libcalamaresui/widgets/TranslationFix.cpp" line="26"/>
<source>&amp;Cancel</source>
<translation> (&amp;C)</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/TranslationFix.cpp" line="27"/>
@ -3814,12 +3814,12 @@ Output:
<message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="94"/>
<source>By selecting this you will periodically send information about your &lt;b&gt;machine&lt;/b&gt; installation, hardware and applications, to %1.</source>
<translation> &lt;b&gt;&lt;/b&gt; , %1() .</translation>
<translation> &lt;b&gt;&lt;/b&gt; , %1 .</translation>
</message>
<message>
<location filename="../src/modules/tracking/TrackingPage.cpp" line="98"/>
<source>By selecting this you will regularly send information about your &lt;b&gt;user&lt;/b&gt; installation, hardware, applications and application usage patterns, to %1.</source>
<translation> &lt;b&gt;&lt;/b&gt; , , %1() .</translation>
<translation> &lt;b&gt;&lt;/b&gt; , , %1 .</translation>
</message>
</context>
<context>
@ -3835,28 +3835,28 @@ Output:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="39"/>
<source>Unmount file systems.</source>
<translation> .</translation>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation> .</translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation> .</translation>
</message>
</context>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt; , .&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt; .&lt;/small&gt;</translation>
</message>
@ -4065,12 +4065,12 @@ Output:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation>ZFS pool </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation type="unfinished"/>
<translation>zpool :</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4079,29 +4079,29 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation type="unfinished"/>
<source>No partitions are available for ZFS.</source>
<translation>ZFS에 .</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation type="unfinished"/>
<translation>zpool을 </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>
<source>Failed to create dataset</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation> :</translation>
</message>
</context>
<context>
@ -4190,17 +4190,18 @@ Output:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation>%1() .&lt;br/&gt;
.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
<source>Close</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="71"/>
<source>Restart</source>
<translation type="unfinished"/>
<translation> </translation>
</message>
</context>
<context>
@ -4277,13 +4278,13 @@ Output:
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="45"/>
<source>LibreOffice is a powerful and free office suite, used by millions of people around the world. It includes several applications that make it the most versatile Free and Open Source office suite on the market.&lt;br/&gt;
Default option.</source>
<translation>LibreOffice . .&lt;br/&gt;
<translation> . .&lt;br/&gt;
.</translation>
</message>
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="59"/>
<source>LibreOffice</source>
<translation>LibreOffice</translation>
<translation></translation>
</message>
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="108"/>
@ -4298,7 +4299,7 @@ Output:
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="172"/>
<source>Create a minimal Desktop install, remove all extra applications and decide later on what you would like to add to your system. Examples of what won't be on such an install, there will be no Office Suite, no media players, no image viewer or print support. It will be just a desktop, file browser, package manager, text editor and simple web-browser.</source>
<translation> . Office , , . , , , .</translation>
<translation> . , , , , Office , , </translation>
</message>
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="185"/>
@ -4308,7 +4309,7 @@ Output:
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="233"/>
<source>Please select an option for your install, or use the default: LibreOffice included.</source>
<translation> LibreOffice .</translation>
<translation> .</translation>
</message>
</context>
<context>
@ -4404,7 +4405,7 @@ Output:
<message>
<location filename="../src/modules/usersq/usersq.qml" line="136"/>
<source>root is not allowed as username.</source>
<translation> .</translation>
<translation>root .</translation>
</message>
<message>
<location filename="../src/modules/usersq/usersq.qml" line="145"/>

View File

@ -2850,7 +2850,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2881,7 +2881,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3837,12 +3837,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4065,7 +4065,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2922,8 +2922,8 @@ Diegimo programa užbaigs darbą ir visi pakeitimai bus prarasti.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT skaidinių lentelė yra geriausias variantas visoms sistemoms. Ši diegimo programa palaiko tokią sąranką taip pat ir BIOS sistemoms.&lt;br/&gt;&lt;br/&gt;Norėdami konfigūruoti GPT skaidinių lentelę BIOS sistemoje, (jei dar nesate to padarę) grįžkite atgal ir nustatykite skaidinių lentelę į GPT, toliau, sukurkite 8 MB neformatuotą skaidinį su įjungta &lt;strong&gt;bios_grub&lt;/strong&gt; vėliavėle.&lt;br/&gt;&lt;br/&gt;Neformatuotas 8 MB skaidinys yra būtinas, norint paleisti %1 BIOS sistemoje su GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT skaidinių lentelė yra geriausias variantas visoms sistemoms. Ši diegimo programa palaiko tokią sąranką taip pat ir BIOS sistemoms.&lt;br/&gt;&lt;br/&gt;Norėdami konfigūruoti GPT skaidinių lentelę BIOS sistemoje, (jei dar nesate to padarę) grįžkite atgal ir nustatykite skaidinių lentelę į GPT, toliau, sukurkite 8 MB neformatuotą skaidinį su įjungta &lt;strong&gt;%2&lt;/strong&gt; vėliavėle.&lt;br/&gt;&lt;br/&gt;Neformatuotas 8 MB skaidinys yra būtinas, norint paleisti %1 BIOS sistemoje su GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3884,12 +3884,12 @@ Išvestis:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Jei šiuo kompiuteriu naudosis keli žmonės, po sąrankos galite sukurti papildomas paskyras.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Jei šiuo kompiuteriu naudosis keli žmonės, po diegimo galite sukurti papildomas paskyras.&lt;/small&gt;</translation>
</message>
@ -4112,8 +4112,8 @@ Išvestis:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Nėra jokių skaidinių, prieinamų Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>Nėra jokių skaidinių, prieinamų ZFS.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2903,7 +2903,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3859,12 +3859,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4087,7 +4087,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2894,7 +2894,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3853,12 +3853,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;ിി ിി, ി ിി ി.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;ിി ിി, ിി ി.&lt;/small&gt;</translation>
</message>
@ -4081,7 +4081,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2893,7 +2893,7 @@ Installasjonsprogrammet vil avsluttes og alle endringer vil gå tapt.</translati
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3849,12 +3849,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4077,7 +4077,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2898,8 +2898,8 @@ Het installatieprogramma zal afsluiten en alle wijzigingen zullen verloren gaan.
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Een GPT-partitie is de beste optie voor alle systemen. Dit installatieprogramma ondersteund ook zulke installatie voor BIOS systemen.&lt;br/&gt;&lt;br/&gt;Om een GPT-partitie te configureren, (als dit nog niet gedaan is) ga terug en stel de partitietavel in als GPT en maak daarna een 8 MB ongeformateerde partitie aan met de &lt;strong&gt;bios_grub&lt;/strong&gt;-vlag ingesteld.&lt;br/&gt;&lt;br/&gt;Een ongeformateerde 8 MB partitie is nodig om %1 te starten op BIOS-systemen met GPT. </translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Een GPT-partitie is de beste optie voor alle systemen. Dit installatieprogramma ondersteund ook zulke installatie voor BIOS systemen.&lt;br/&gt;&lt;br/&gt;Om een GPT-partitie te configureren, (als dit nog niet gedaan is) ga terug en stel de partitietavel in als GPT en maak daarna een 8 MB ongeformateerde partitie aan met de &lt;strong&gt;%2&lt;/strong&gt;-vlag ingesteld.&lt;br/&gt;&lt;br/&gt;Een ongeformateerde 8 MB partitie is nodig om %1 te starten op BIOS-systemen met GPT. </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3858,12 +3858,12 @@ De installatie kan niet doorgaan.</translation>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Als meer dan één persoon deze computer zal gebruiken, kan je meerdere accounts aanmaken na installatie.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Als meer dan één persoon deze computer zal gebruiken, kan je meerdere accounts aanmaken na installatie.&lt;/small&gt;</translation>
</message>
@ -4086,7 +4086,7 @@ De installatie kan niet doorgaan.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2915,7 +2915,7 @@ Instalator zostanie zamknięty i wszystkie zmiany zostaną utracone.</translatio
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3875,12 +3875,12 @@ i nie uruchomi się</translation>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4103,7 +4103,7 @@ i nie uruchomi się</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2900,8 +2900,8 @@ O instalador será fechado e todas as alterações serão perdidas.</translation
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Uma tabela de partições GPT é a melhor opção para todos os sistemas. Este instalador suporta tal configuração para sistemas BIOS também.&lt;br/&gt;&lt;br/&gt;Para configurar uma tabela de partições GPT no BIOS, (caso não tenha sido feito ainda) volte e defina a tabela de partições como GPT, depois crie uma partição sem formatação de 8 MB com o marcador &lt;strong&gt;bios_grub&lt;/strong&gt; ativado.&lt;br/&gt;&lt;br/&gt;Uma partição não formatada de 8 MB é necessária para iniciar %1 num sistema BIOS com o GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Uma tabela de partições GPT é a melhor opção para todos os sistemas. Este instalador suporta tal configuração para sistemas BIOS também.&lt;br/&gt;&lt;br/&gt;Para configurar uma tabela de partições GPT no BIOS, (caso não tenha sido feito ainda) volte e defina a tabela de partições como GPT, depois crie uma partição sem formatação de 8 MB com o marcador &lt;strong&gt;%2&lt;/strong&gt; ativado.&lt;br/&gt;&lt;br/&gt;Uma partição não formatada de 8 MB é necessária para iniciar %1 num sistema BIOS com o GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3862,12 +3862,12 @@ Saída:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se mais de uma pessoa for utilizar este computador, você poderá criar múltiplas contas após terminar a configuração.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se mais de uma pessoa for utilizar este computador, você poderá criar múltiplas contas após terminar de instalar.&lt;/small&gt;</translation>
</message>
@ -4090,8 +4090,8 @@ Saída:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Não partições disponíveis para o Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2900,8 +2900,8 @@ O instalador será encerrado e todas as alterações serão perdidas.</translati
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Uma tabela de partições GPT é a melhor opção para todos os sistemas. Este instalador suporta tal configuração para sistemas BIOS também.&lt;br/&gt;&lt;br/&gt;Para configurar uma tabela de partições GPT no BIOS, (caso não tenha sido feito ainda) volte atrás e defina a tabela de partições como GPT, depois crie uma partição sem formatação de 8 MB com o marcador &lt;strong&gt;bios_grub&lt;/strong&gt; ativado.&lt;br/&gt;&lt;br/&gt;Uma partição não formatada de 8 MB é necessária para iniciar %1 num sistema BIOS com o GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Uma tabela de partições GPT é a melhor opção para todos os sistemas. Este instalador suporta tal configuração para sistemas BIOS também.&lt;br/&gt;&lt;br/&gt;Para configurar uma tabela de partições GPT no BIOS, (caso não tenha sido feito ainda) volte atrás e defina a tabela de partições como GPT, depois crie uma partição sem formatação de 8 MB com o marcador &lt;strong&gt;%2&lt;/strong&gt; ativado.&lt;br/&gt;&lt;br/&gt;Uma partição não formatada de 8 MB é necessária para iniciar %1 num sistema BIOS com o GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3862,12 +3862,12 @@ Saída de Dados:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se mais de uma pessoa usar este computador, você pode criar várias contas após a configuração.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Se mais de uma pessoa usar este computador, você pode criar várias contas após a instalação.&lt;/small&gt;</translation>
</message>
@ -4090,8 +4090,8 @@ Saída de Dados:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Não estão disponíveis partições para Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2907,7 +2907,7 @@ Programul de instalare va ieși, iar toate modificările vor fi pierdute.</trans
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3866,12 +3866,12 @@ Output
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4094,7 +4094,7 @@ Output
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2915,7 +2915,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Таблица разделов GPT - наилучший вариант для всех систем. Этот установщик позволяет использовать таблицу разделов GPT для систем с BIOS. &lt;br/&gt; &lt;br/&gt; Чтобы установить таблицу разделов как GPT (если это еще не сделано) вернитесь назад и создайте таблицу разделов GPT, затем создайте 8 МБ Не форматированный раздел с включенным флагом &lt;strong&gt; bios-grub&lt;/strong&gt; &lt;/ strong&gt;. &lt;br/&gt; &lt;br/&gt; Не форматированный раздел в 8 МБ необходим для запуска %1 на системе с BIOS и таблицей разделов GPT.</translation>
</message>
<message>
@ -3875,12 +3875,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Если этот компьютер будет использоваться несколькими людьми, вы сможете создать учетные записи для них после установки.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Если этот компьютер используется несколькими людьми, Вы сможете создать соответствующие учетные записи сразу после установки.&lt;/small&gt;</translation>
</message>
@ -4103,7 +4103,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2858,7 +2858,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2900,8 +2900,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT . BIOS . &lt;br/&gt;&lt;br/&gt;BIOS GPT , ( ) GPT , &lt;strong&gt;bios_grub&lt;/strong&gt; ධජය සක්‍රීය කර ඇති 8 MB ආකෘතිකරණය නොකළ කොටසක් සාදන්න. &lt;br/&gt;&lt;br/&gt;GPT BIOS %1 8 MB .</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT . BIOS . &lt;br/&gt;&lt;br/&gt;BIOS GPT , ( ) GPT , &lt;strong&gt;%2&lt;/strong&gt; ධජය සක්‍රීය කර ඇති 8 MB ආකෘතිකරණය නොකළ කොටසක් සාදන්න. &lt;br/&gt;&lt;br/&gt;GPT BIOS %1 8 MB .</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3862,12 +3862,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt; , .&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt; , .&lt;/small&gt;</translation>
</message>
@ -4090,8 +4090,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Zfs .</translation>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -1485,7 +1485,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="201"/>
<source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition with features &lt;em&gt;%3&lt;/em&gt;</source>
<translation type="unfinished"/>
<translation>Nainštalovať distribúciu %1 na &lt;strong&gt;nový&lt;/strong&gt; systémový oddiel %2 s funkciami &lt;em&gt;%3&lt;/em&gt;</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="209"/>
@ -1495,27 +1495,27 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="218"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt; and features &lt;em&gt;%3&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>Nastaviť &lt;strong&gt;nový&lt;/strong&gt; oddiel typu %2 s bodom pripojenia &lt;strong&gt;%1&lt;/strong&gt; a funkciami &lt;em&gt;%3&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="226"/>
<source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;%3.</source>
<translation type="unfinished"/>
<translation>Nastaviť &lt;strong&gt;nový&lt;/strong&gt; oddiel typu %2 s bodom pripojenia &lt;strong&gt;%1&lt;/strong&gt;%3.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="240"/>
<source>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt; with features &lt;em&gt;%4&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>Nainštalovať distribúciu %2 na systémový oddiel &lt;strong&gt;%1&lt;/strong&gt; typu %3 s funkciami &lt;em&gt;%4&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="259"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt; and features &lt;em&gt;%4&lt;/em&gt;.</source>
<translation type="unfinished"/>
<translation>Nastaviť oddiel &lt;strong&gt;%1&lt;/strong&gt; typu %3 s bodom pripojenia &lt;strong&gt;%2&lt;/strong&gt; a funkciami &lt;em&gt;%4&lt;/em&gt;.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="268"/>
<source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;%4.</source>
<translation type="unfinished"/>
<translation>Nastaviť oddiel &lt;strong&gt;%1&lt;/strong&gt; typu %3 s bodom pripojenia &lt;strong&gt;%2&lt;/strong&gt;%4.</translation>
</message>
<message>
<location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="249"/>
@ -1813,7 +1813,7 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Nie je dostupný žiadny cieľový systém.</translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
@ -2918,8 +2918,8 @@ Inštalátor sa ukončí a všetky zmeny budú stratené.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Tabuľka oddielov GPT je najlepšou voľbou pre všetky systémy. Inštalátor podporuje taktiež inštaláciu pre systémy s BIOSom.&lt;br/&gt;&lt;br/&gt;Pre nastavenie tabuľky oddielov GPT s BIOSom, (ak ste tak neučinili) prejdite späť a nastavte tabuľku oddielov na GPT, a potom vytvorte nenaformátovaný oddiel o veľkosti 8 MB s povoleným príznakom &lt;strong&gt;bios_grub&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Nenaformátovaný oddiel o veľkosti 8 MB je potrebný na spustenie distribúcie %1 na systéme s BIOSom a tabuľkou GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Tabuľka oddielov GPT je najlepšou voľbou pre všetky systémy. Inštalátor podporuje taktiež inštaláciu pre systémy s BIOSom.&lt;br/&gt;&lt;br/&gt;Pre nastavenie tabuľky oddielov GPT s BIOSom, (ak ste tak neučinili) prejdite späť a nastavte tabuľku oddielov na GPT, a potom vytvorte nenaformátovaný oddiel o veľkosti 8 MB s povoleným príznakom &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Nenaformátovaný oddiel o veľkosti 8 MB je potrebný na spustenie distribúcie %1 na systéme s BIOSom a tabuľkou GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3869,7 +3869,7 @@ Výstup:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation>Nie je dostupný žiadny cieľový systém.</translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
@ -3880,12 +3880,12 @@ Výstup:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Ak bude tento počítač používať viac ako jedna osoba, môžete nastaviť viacero účtov po inštalácii.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Ak bude tento počítač používať viac ako jedna osoba, môžete nastaviť viacero účtov po inštalácii.&lt;/small&gt;</translation>
</message>
@ -4108,13 +4108,13 @@ Výstup:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation>Chýbajú vnútorné údaje</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
@ -4217,7 +4217,8 @@ Výstup:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation>Distribúcia %1 bola nainštalovaná do vášho počítača.&lt;br/&gt;
Teraz môžete reštartovať vaše zariadenie.</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
@ -4304,7 +4305,8 @@ Výstup:
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="45"/>
<source>LibreOffice is a powerful and free office suite, used by millions of people around the world. It includes several applications that make it the most versatile Free and Open Source office suite on the market.&lt;br/&gt;
Default option.</source>
<translation type="unfinished"/>
<translation>LibreOffice je výkonným a bezplatným kancelárskym balíkom, ktorý používajú milióny ľudí po celom svete. Zahŕňa niekoľko aplikácií, ktoré ho robia najuniverzálnejším slobodným kancelárskym balíkom s otvoreným zdrojom na trhu.&lt;br/&gt;
Predvolená voľba.</translation>
</message>
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="59"/>
@ -4314,7 +4316,7 @@ Výstup:
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="108"/>
<source>If you don't want to install an office suite, just select No Office Suite. You can always add one (or more) later on your installed system as the need arrives.</source>
<translation type="unfinished"/>
<translation>Ak nechcete inštalovať kancelársky balík, stačí vybrať voľbu Žiadny kancelársky balík. Vždy môžete podľa potreby nejaký (alebo viacero) pridať neskôr vo vašom nainštalovanom systéme.</translation>
</message>
<message>
<location filename="../src/modules/packagechooserq/packagechooserq.qml" line="121"/>

View File

@ -2915,7 +2915,7 @@ Namestilni program se bo končal in vse spremembe bodo izgubljene.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3871,12 +3871,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4099,7 +4099,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2898,8 +2898,8 @@ Instaluesi do të mbyllet dhe krejt ndryshimet do të hidhen tej.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Një tabelë pjesësh GPT është mundësia e mirë për krejt sistemet. Ky instalues mbulon gjithashtu një ujdisje tillë edhe për sisteme BIOS.&lt;br/&gt;&lt;br/&gt; formësoni një tabelë pjesësh GPT BIOS, (nëse sështë bërë ende) kthehuni dhe ujdiseni tabelën e pjesëve si GPT, pas krijoni një ndarje paformatuar 8 MB me shenjën &lt;strong&gt;bios_grub&lt;/strong&gt; të aktivizuar.&lt;br/&gt;&lt;br/&gt;Një pjesë e paformatuar 8 MB është e nevojshme për nisur %1 një sistem BIOS me GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Një tabelë pjesësh GPT është mundësia e mirë për krejt sistemet. Ky instalues mbulon gjithashtu një ujdisje tillë edhe për sisteme BIOS.&lt;br/&gt;&lt;br/&gt; formësoni një tabelë pjesësh GPT BIOS, (nëse sështë bërë ende) kthehuni dhe ujdiseni tabelën e pjesëve si GPT, pas krijoni një ndarje paformatuar 8 MB me shenjën &lt;strong&gt;%2&lt;/strong&gt; të aktivizuar.&lt;br/&gt;&lt;br/&gt;Një pjesë e paformatuar 8 MB është e nevojshme për nisur %1 një sistem BIOS me GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3860,12 +3860,12 @@ Përfundim:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Nëse këtë kompjuter do ta përdorë shumë se një person, mund krijoni disa llogari, pas rregullimit.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Nëse këtë kompjuter do ta përdorë shumë se një person, mund krijoni disa llogari, pas instalimit.&lt;/small&gt;</translation>
</message>
@ -4088,8 +4088,8 @@ Përfundim:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Ska pjesë gatshme për ZFS.</translation>
<source>No partitions are available for ZFS.</source>
<translation>Ska pjesë passhme për ZFS</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2904,7 +2904,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3860,12 +3860,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4088,7 +4088,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2904,7 +2904,7 @@ Instaler će se zatvoriti i sve promjene će biti izgubljene.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3860,12 +3860,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4088,7 +4088,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2900,8 +2900,8 @@ Sök på kartan genom att dra
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>En GPT-partitionstabell är det bästa alternativet för alla system. Detta installationsprogram stödjer det för system med BIOS också.&lt;br/&gt;&lt;br/&gt;För att konfigurera en GPT-partitionstabell BIOS (om det inte redan är gjort), tillbaka och sätt partitionstabell till GPT, skapa sedan en oformaterad partition 8MB med &lt;strong&gt;bios_grub&lt;/strong&gt;-flaggan satt.&lt;br/&gt;&lt;br/&gt;En oformaterad partition 8MB är nödvändig för att starta %1 ett BIOS-system med GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>En GPT-partitionstabell är det bästa alternativet för alla system. Detta installationsprogram stödjer det för system med BIOS också.&lt;br/&gt;&lt;br/&gt;För att konfigurera en GPT-partitionstabell BIOS (om det inte redan är gjort), tillbaka och sätt partitionstabell till GPT, skapa sedan en oformaterad partition 8MB med &lt;strong&gt;%2&lt;/strong&gt;-flaggan satt.&lt;br/&gt;&lt;br/&gt;En oformaterad partition 8MB är nödvändig för att starta %1 ett BIOS-system med GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3862,12 +3862,12 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Om mer än en person skall använda datorn kan du skapa flera användarkonton när inställningarna är klara.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Om mer än en person skall använda datorn kan du skapa flera användarkonton när installationen är klar.&lt;/small&gt;</translation>
</message>
@ -4076,7 +4076,7 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation>Skapa ZFS pools och datasets</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
@ -4090,8 +4090,8 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Inga partitioner är tillgängliga för Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>Inga partitioner är tillgängliga för ZFS.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
@ -4112,7 +4112,7 @@ Installationen kan inte fortsätta.&lt;/p&gt;</translation>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation>Utdatan var:</translation>
</message>
</context>
<context>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2894,7 +2894,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3850,12 +3850,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4078,7 +4078,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2861,7 +2861,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="594"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2896,8 +2896,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Ҷадвали қисми диски GPT барои ҳамаи низомҳо интихоби беҳтарин мебошад. Насбкунандаи ҷорӣ инчунин барои низомҳои BIOS чунин танзимро дастгирӣ менамояд.&lt;br/&gt;&lt;br/&gt;Барои танзим кардани ҷадвали қисми диски GPT дар BIOS, (агар то ҳол танзим накарда бошед) як қадам ба қафо гузаред ва ҷадвали қисми дискро ба GPT танзим кунед, пас қисми диски шаклбандинашударо бо ҳаҷми 8 МБ бо нишони фаъолшудаи &lt;strong&gt;bios_grub&lt;/strong&gt; эҷод намоед.&lt;br/&gt;&lt;br/&gt;Қисми диски шаклбандинашуда бо ҳаҷми 8 МБ барои оғоз кардани %1 дар низоми BIOS бо GPT лозим аст.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Ҷадвали қисми диски GPT барои ҳамаи низомҳо интихоби беҳтарин мебошад. Насбкунандаи ҷорӣ инчунин барои низомҳои BIOS чунин танзимро дастгирӣ менамояд.&lt;br/&gt;&lt;br/&gt;Барои танзим кардани ҷадвали қисми диски GPT дар BIOS, (агар то ҳол танзим накарда бошед) як қадам ба қафо гузаред ва ҷадвали қисми дискро ба GPT танзим кунед, пас қисми диски шаклбандинашударо бо ҳаҷми 8 МБ бо нишони фаъолшудаи &lt;strong&gt;%2&lt;/strong&gt; эҷод намоед.&lt;br/&gt;&lt;br/&gt;Қисми диски шаклбандинашуда бо ҳаҷми 8 МБ барои оғоз кардани %1 дар низоми BIOS бо GPT лозим аст.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3858,12 +3858,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Агар зиёда аз як корбар ин компютерро истифода барад, шумо метавонед баъд аз танзимкунӣ якчанд ҳисобро эҷод намоед.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Агар зиёда аз як корбар ин компютерро истифода барад, шумо метавонед баъд аз насбкунӣ якчанд ҳисобро эҷод намоед.&lt;/small&gt;</translation>
</message>
@ -4086,7 +4086,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2882,7 +2882,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3838,12 +3838,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4066,7 +4066,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2904,8 +2904,8 @@ Sistem güç kaynağına bağlı değil.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT disk bölümü tablosu tüm sistemler için en iyi seçenektir. Bu yükleyici klasik BIOS sistemler için de böyle bir kurulumu destekler. &lt;br/&gt;&lt;br/&gt;Klasik BIOS sistemlerde disk bölümü tablosu GPT tipinde yapılandırmak için (daha önce yapılmadıysa) geri gidin ve disk bölümü tablosu GPT olarak ayarlayın ve ardından &lt;strong&gt;bios_grub&lt;/strong&gt; bayrağı ile etiketlenmiş 8 MB biçimlendirilmemiş bir disk bölümü oluşturun.&lt;br/&gt; &lt;br/&gt;GPT disk yapısı ile kurulan klasik BIOS sistemi %1 başlatmak için biçimlendirilmemiş 8 MB bir disk bölümü gereklidir.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT disk bölümü tablosu tüm sistemler için en iyi seçenektir. Bu yükleyici klasik BIOS sistemler için de böyle bir kurulumu destekler. &lt;br/&gt;&lt;br/&gt;Klasik BIOS sistemlerde disk bölümü tablosu GPT tipinde yapılandırmak için (daha önce yapılmadıysa) geri gidin ve disk bölümü tablosu GPT olarak ayarlayın ve ardından &lt;strong&gt;%2&lt;/strong&gt; bayrağı ile etiketlenmiş 8 MB biçimlendirilmemiş bir disk bölümü oluşturun.&lt;br/&gt; &lt;br/&gt;GPT disk yapısı ile kurulan klasik BIOS sistemi %1 başlatmak için biçimlendirilmemiş 8 MB bir disk bölümü gereklidir.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3867,12 +3867,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Bu bilgisayarı birden fazla kişi kullanacaksa, kurulumdan sonra birden fazla kullanıcı hesabı oluşturabilirsiniz.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Bu bilgisayarı birden fazla kişi kullanacaksa, kurulum bittikten sonra birden fazla kullanıcı hesabı oluşturabilirsiniz.&lt;/small&gt;</translation>
</message>
@ -4095,8 +4095,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Zfs için bölüm yok.</translation>
<source>No partitions are available for ZFS.</source>
<translation>ZFS için disk bölümü yok.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2923,8 +2923,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Таблиця розділів GPT є найкращим варіантом для усіх систем. У цьому засобі встановлення передбачено підтримку відповідних налаштувань і для систем BIOS.&lt;br/&gt;&lt;br/&gt;Щоб скористатися таблицею розділів GPT у системі з BIOS, (якщо цього ще не було зроблено) поверніться назад і встановіть для таблиці розділів значення GPT, далі створіть неформатований розділ розміром 8 МБ з увімкненим прапорцем &lt;strong&gt;bios_grub&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Неформатований розділ розміром 8 МБ потрібен для запуску %1 на системі з BIOS за допомогою GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Таблиця розділів GPT є найкращим варіантом для усіх систем. У цьому засобі встановлення передбачено підтримку відповідних налаштувань і для систем BIOS.&lt;br/&gt;&lt;br/&gt;Щоб скористатися таблицею розділів GPT у системі з BIOS, (якщо цього ще не було зроблено) поверніться назад і встановіть для таблиці розділів значення GPT, далі створіть неформатований розділ розміром 8 МБ з увімкненим прапорцем &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;Неформатований розділ розміром 8 МБ потрібен для запуску %1 на системі з BIOS за допомогою GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3885,12 +3885,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;Якщо за цим комп'ютером працюватимуть декілька користувачів, ви можете створити декілька облікових записів після налаштовування.&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;Якщо за цим комп'ютером працюватимуть декілька користувачів, ви можете створити декілька облікових записів після встановлення.&lt;/small&gt;</translation>
</message>
@ -4113,8 +4113,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>Немає доступних розділів для Zfs.</translation>
<source>No partitions are available for ZFS.</source>
<translation>Немає доступних розділів для ZFS.</translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -2892,7 +2892,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3848,12 +3848,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4076,7 +4076,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2825,7 +2825,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="593"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2885,8 +2885,8 @@ Trình cài đặt sẽ thoát và tất cả các thay đổi sẽ bị mất.<
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Bảng phân vùng GPT lựa chọn tốt nhất cho tất cả các hệ thống. Trình cài đt này cũng hỗ trợ thiết lập như vậy cho các hệ thống BIOS. &lt;br/&gt; &lt;br/&gt; Đ đnh cấu hình bảng phân vùng GPT trên BIOS, (nếu chưa thực hiện xong) hãy quay lại đt bảng phân vùng thành GPT, tiếp theo tạo 8 MB phân vùng chưa đnh dạng với cờ &lt;strong&gt; bios_grub &lt;/strong&gt; được bật. &lt;br/&gt; &lt;br/&gt; Cần phân vùng 8 MB chưa đưc đnh dạng đ khởi đng %1 trên hệ thống BIOS GPT.</translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>Bảng phân vùng GPT lựa chọn tốt nhất cho tất cả các hệ thống. Trình cài đt này cũng hỗ trợ thiết lập như vậy cho các hệ thống BIOS. &lt;br/&gt; &lt;br/&gt; Đ đnh cấu hình bảng phân vùng GPT trên BIOS, (nếu chưa thực hiện xong) hãy quay lại đt bảng phân vùng thành GPT, tiếp theo tạo 8 MB phân vùng chưa đnh dạng với cờ &lt;strong&gt; %2 &lt;/strong&gt; được bật. &lt;br/&gt; &lt;br/&gt; Cần phân vùng 8 MB chưa đưc đnh dạng đ khởi đng %1 trên hệ thống BIOS GPT.</translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3847,12 +3847,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt; Nếu nhiều người cùng sử dụng máy tính này, bạn thể tạo nhiều tài khoản sau khi thiết lập. &lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt; Nếu nhiều người cùng sử dụng máy tính này, bạn thể tạo nhiều tài khoản sau khi cài đt. &lt;/small&gt;</translation>
</message>
@ -4075,7 +4075,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2881,7 +2881,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3837,12 +3837,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4065,7 +4065,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -6,7 +6,7 @@
<message>
<location filename="../src/modules/partition/jobs/AutoMountManagementJob.cpp" line="22"/>
<source>Manage auto-mount settings</source>
<translation> </translation>
<translation></translation>
</message>
</context>
<context>
@ -1021,7 +1021,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="71"/>
<source>Primar&amp;y</source>
<translation type="unfinished"/>
<translation>(&amp;Y)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="81"/>
@ -1086,7 +1086,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/PartitionDialogHelpers.cpp" line="96"/>
<source>Mountpoint must start with a &lt;tt&gt;/&lt;/tt&gt;.</source>
<translation type="unfinished"/>
<translation>&lt;tt&gt;/&lt;/tt&gt;</translation>
</message>
</context>
<context>
@ -1376,7 +1376,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="54"/>
<source>Con&amp;tent:</source>
<translation type="unfinished"/>
<translation>(&amp;T)</translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="64"/>
@ -1444,7 +1444,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="43"/>
<source>Your system does not seem to support encryption well enough to encrypt the entire system. You may enable encryption, but performance may suffer.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/partition/gui/EncryptWidget.ui" line="59"/>
@ -1468,7 +1468,7 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="36"/>
<source>Details:</source>
<translation type="unfinished"/>
<translation>:</translation>
</message>
<message>
<location filename="../src/libcalamaresui/widgets/ErrorDialog.ui" line="52"/>
@ -1814,17 +1814,17 @@ The installer will quit and all changes will be lost.</source>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="88"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="96"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation> root </translation>
</message>
<message>
<location filename="../src/modules/luksopenswaphookcfg/LOSHJob.cpp" line="101"/>
<source>No configFilePath is set.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -2893,8 +2893,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT BIOS GPT &lt;br/&gt;&lt;br/&gt; BIOS GPT GPT 8MB &lt;strong&gt;bios_grub&lt;/strong&gt; 标记的分区。&lt;br/&gt;&lt;br/&gt; 8MB BIOS 使 GPT %1 </translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT BIOS GPT &lt;br/&gt;&lt;br/&gt; BIOS GPT GPT 8MB &lt;strong&gt;%2&lt;/strong&gt; 标记的分区。&lt;br/&gt;&lt;br/&gt; 8MB BIOS 使 GPT %1 </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3844,23 +3844,23 @@ Output:
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="122"/>
<source>No target system available.</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/umount/UmountJob.cpp" line="130"/>
<source>No rootMountPoint is set.</source>
<translation type="unfinished"/>
<translation> root挂载点</translation>
</message>
</context>
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;使&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;使&lt;/small&gt;</translation>
</message>
@ -4069,12 +4069,12 @@ Output:
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="101"/>
<source>Create ZFS pools and datasets</source>
<translation type="unfinished"/>
<translation> ZFS </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="162"/>
<source>Failed to create zpool on </source>
<translation type="unfinished"/>
<translation> zpool </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="180"/>
@ -4083,29 +4083,29 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation type="unfinished"/>
<source>No partitions are available for ZFS.</source>
<translation> ZFS </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<source>Internal data missing</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="257"/>
<source>Failed to create zpool</source>
<translation type="unfinished"/>
<translation> zpool </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="329"/>
<source>Failed to create dataset</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="330"/>
<source>The output was: </source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>
@ -4194,17 +4194,18 @@ Output:
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="43"/>
<source>%1 has been installed on your computer.&lt;br/&gt;
You may now restart your device.</source>
<translation type="unfinished"/>
<translation>%1 &lt;br/&gt;
</translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="65"/>
<source>Close</source>
<translation type="unfinished"/>
<translation></translation>
</message>
<message>
<location filename="../src/modules/finishedq/finishedq@mobile.qml" line="71"/>
<source>Restart</source>
<translation type="unfinished"/>
<translation></translation>
</message>
</context>
<context>

View File

@ -2881,7 +2881,7 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation type="unfinished"/>
</message>
<message>
@ -3837,12 +3837,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation type="unfinished"/>
</message>
@ -4065,7 +4065,7 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<source>No partitions are available for ZFS.</source>
<translation type="unfinished"/>
</message>
<message>

View File

@ -2889,8 +2889,8 @@ The installer will quit and all changes will be lost.</source>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="588"/>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;bios_grub&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT BIOS &lt;br/&gt;&lt;br/&gt; BIOS GPT GPT 8 MB &lt;strong&gt;bios_grub&lt;/strong&gt; 旗標。&lt;br/&gt; BIOS 使 GPT %1 使 8MB </translation>
<source>A GPT partition table is the best option for all systems. This installer supports such a setup for BIOS systems too.&lt;br/&gt;&lt;br/&gt;To configure a GPT partition table on BIOS, (if not done so already) go back and set the partition table to GPT, next create a 8 MB unformatted partition with the &lt;strong&gt;%2&lt;/strong&gt; flag enabled.&lt;br/&gt;&lt;br/&gt;An unformatted 8 MB partition is necessary to start %1 on a BIOS system with GPT.</source>
<translation>GPT BIOS &lt;br/&gt;&lt;br/&gt; BIOS GPT GPT 8 MB &lt;strong&gt;%2&lt;/strong&gt; 旗標。&lt;br/&gt; BIOS 使 GPT %1 使 8MB </translation>
</message>
<message>
<location filename="../src/modules/partition/PartitionViewStep.cpp" line="620"/>
@ -3851,12 +3851,12 @@ Output:
<context>
<name>UsersPage</name>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="167"/>
<location filename="../src/modules/users/UsersPage.cpp" line="177"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after setup.&lt;/small&gt;</source>
<translation>&lt;small&gt;使&lt;/small&gt;</translation>
</message>
<message>
<location filename="../src/modules/users/UsersPage.cpp" line="173"/>
<location filename="../src/modules/users/UsersPage.cpp" line="183"/>
<source>&lt;small&gt;If more than one person will use this computer, you can create multiple accounts after installation.&lt;/small&gt;</source>
<translation>&lt;small&gt;使&lt;/small&gt;</translation>
</message>
@ -4079,8 +4079,8 @@ Output:
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="181"/>
<source>No partitions are available for Zfs.</source>
<translation>ZFS </translation>
<source>No partitions are available for ZFS.</source>
<translation>ZFS </translation>
</message>
<message>
<location filename="../src/modules/zfs/ZfsJob.cpp" line="192"/>

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: aboodilankaboot, 2019\n"
"Language-Team: Arabic (https://www.transifex.com/calamares/teams/20061/ar/)\n"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\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://www.transifex.com/calamares/teams/20061/as/)\n"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: enolp <enolp@softastur.org>, 2020\n"
"Language-Team: Asturian (https://www.transifex.com/calamares/teams/20061/ast/)\n"

View File

@ -4,16 +4,16 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
# Xəyyam Qocayev <xxmn77@gmail.com>, 2022
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2022\n"
"Language-Team: Azerbaijani (https://www.transifex.com/calamares/teams/20061/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -58,7 +58,7 @@ msgstr "Önyükləyici qurulur."
#: src/modules/bootloader/main.py:612
msgid "Failed to install grub, no partitions defined in global storage"
msgstr ""
msgstr "Grub quraşdırılmadı, ümumi yaddaş üçün bölmələr təyin olunmayıb"
#: src/modules/bootloader/main.py:780
msgid "Bootloader installation error"
@ -278,23 +278,23 @@ msgstr "Disk bölmələri qoşulur."
#: src/modules/mount/main.py:88 src/modules/mount/main.py:124
msgid "Internal error mounting zfs datasets"
msgstr ""
msgstr "Zfs verilənlər dəstinin qoşulmasında daxil xəta"
#: src/modules/mount/main.py:100
msgid "Failed to import zpool"
msgstr ""
msgstr "Zpool idxalı baş tutmadı"
#: src/modules/mount/main.py:116
msgid "Failed to unlock zpool"
msgstr ""
msgstr "Zpool kiliddən çıxarıla bilmədi"
#: src/modules/mount/main.py:133 src/modules/mount/main.py:138
msgid "Failed to set zfs mountpoint"
msgstr ""
msgstr "Zfs qoşulma nöqtəsi təyin olunmadı"
#: src/modules/mount/main.py:253
msgid "zfs mounting error"
msgstr ""
msgstr "zfs qoşulmasında xəta"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
@ -393,7 +393,7 @@ msgstr "Kök bölməsi üçün qoşulma nöqtəsi yoxdur"
#: src/modules/unpackfs/main.py:431
msgid "globalstorage does not contain a \"rootMountPoint\" key."
msgstr ""
msgstr "globalstorage tərkibində bir \"rootMountPoint\" açarı yoxdur."
#: src/modules/unpackfs/main.py:434
msgid "Bad mount point for root partition"
@ -401,17 +401,17 @@ msgstr "Kök bölməsi üçün xətalı qoşulma nöqtəsi"
#: src/modules/unpackfs/main.py:435
msgid "rootMountPoint is \"{}\", which does not exist."
msgstr ""
msgstr "rootMountPoint \"{}\" mövcud deyil."
#: src/modules/unpackfs/main.py:439 src/modules/unpackfs/main.py:455
#: src/modules/unpackfs/main.py:459 src/modules/unpackfs/main.py:465
#: src/modules/unpackfs/main.py:480
msgid "Bad unpackfs configuration"
msgstr ""
msgstr "Xətalı unpackfs tənzimləməsi"
#: src/modules/unpackfs/main.py:440
msgid "There is no configuration information."
msgstr ""
msgstr "Tənzimləmə məlumatı yoxdur"
#: src/modules/unpackfs/main.py:456
msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel"

View File

@ -4,16 +4,16 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
# Xəyyam Qocayev <xxmn77@gmail.com>, 2022
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021\n"
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2022\n"
"Language-Team: Azerbaijani (Azerbaijan) (https://www.transifex.com/calamares/teams/20061/az_AZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -58,7 +58,7 @@ msgstr "Önyükləyici qurulur."
#: src/modules/bootloader/main.py:612
msgid "Failed to install grub, no partitions defined in global storage"
msgstr ""
msgstr "Grub quraşdırılmadı, ümumi yaddaş üçün bölmələr təyin olunmayıb"
#: src/modules/bootloader/main.py:780
msgid "Bootloader installation error"
@ -278,23 +278,23 @@ msgstr "Disk bölmələri qoşulur."
#: src/modules/mount/main.py:88 src/modules/mount/main.py:124
msgid "Internal error mounting zfs datasets"
msgstr ""
msgstr "Zfs verilənlər dəstinin qoşulmasında daxil xəta"
#: src/modules/mount/main.py:100
msgid "Failed to import zpool"
msgstr ""
msgstr "Zpool idxalı baş tutmadı"
#: src/modules/mount/main.py:116
msgid "Failed to unlock zpool"
msgstr ""
msgstr "Zpool kiliddən çıxarıla bilmədi"
#: src/modules/mount/main.py:133 src/modules/mount/main.py:138
msgid "Failed to set zfs mountpoint"
msgstr ""
msgstr "Zfs qoşulma nöqtəsi təyin olunmadı"
#: src/modules/mount/main.py:253
msgid "zfs mounting error"
msgstr ""
msgstr "zfs qoşulmasında xəta"
#: src/modules/rawfs/main.py:26
msgid "Installing data."
@ -393,7 +393,7 @@ msgstr "Kök bölməsi üçün qoşulma nöqtəsi yoxdur"
#: src/modules/unpackfs/main.py:431
msgid "globalstorage does not contain a \"rootMountPoint\" key."
msgstr ""
msgstr "globalstorage tərkibində bir \"rootMountPoint\" açarı yoxdur."
#: src/modules/unpackfs/main.py:434
msgid "Bad mount point for root partition"
@ -401,17 +401,17 @@ msgstr "Kök bölməsi üçün xətalı qoşulma nöqtəsi"
#: src/modules/unpackfs/main.py:435
msgid "rootMountPoint is \"{}\", which does not exist."
msgstr ""
msgstr "rootMountPoint \"{}\" mövcud deyil."
#: src/modules/unpackfs/main.py:439 src/modules/unpackfs/main.py:455
#: src/modules/unpackfs/main.py:459 src/modules/unpackfs/main.py:465
#: src/modules/unpackfs/main.py:480
msgid "Bad unpackfs configuration"
msgstr ""
msgstr "Xətalı unpackfs tənzimləməsi"
#: src/modules/unpackfs/main.py:440
msgid "There is no configuration information."
msgstr ""
msgstr "Tənzimləmə məlumatı yoxdur"
#: src/modules/unpackfs/main.py:456
msgid "The filesystem for \"{}\" ({}) is not supported by your current kernel"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Źmicier Turok <nashtlumach@gmail.com>, 2020\n"
"Language-Team: Belarusian (https://www.transifex.com/calamares/teams/20061/be/)\n"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Georgi Georgiev (Жоро) <g.georgiev.shumen@gmail.com>, 2022\n"
"Language-Team: Bulgarian (https://www.transifex.com/calamares/teams/20061/bg/)\n"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: 508a8b0ef95404aa3dc5178f0ccada5e_017b8a4 <d0ef5d977ab7abf012ef53891f8ca2b5_900530>, 2020\n"
"Language-Team: Bengali (https://www.transifex.com/calamares/teams/20061/bn/)\n"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>, 2022\n"
"Language-Team: Catalan (https://www.transifex.com/calamares/teams/20061/ca/)\n"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 17:27+0100\n"
"POT-Creation-Date: 2022-02-17 15:52+0100\n"
"PO-Revision-Date: 2017-08-09 10:34+0000\n"
"Last-Translator: Raul <raurodse@gmail.com>, 2021\n"
"Language-Team: Catalan (Valencian) (https://www.transifex.com/calamares/teams/20061/ca@valencia/)\n"

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